Advertisement
srikat

Shortcode to check whether post body is empty or not

Aug 6th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. add_shortcode( 'wpv-post-getcontent', 'wpv_getcontent');
  4. function wpv_getcontent(){
  5.     if(get_the_content() != ''){
  6.         return('1');
  7.     }else{
  8.         return('0');
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement