Advertisement
rakeshr

important wordpress snippets

Jan 24th, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. THIS WILL BE UPDATED CONTINUOUSLY
  2.  
  3. Limit content
  4. =====================================================================================
  5.  
  6. <?php function content($num) {
  7. $theContent = get_the_content();
  8. $output = strip_tags($theContent);
  9. //$output = preg_replace('/<img[^>]+./','', $theContent);
  10. //$output = preg_replace( '/<blockquote>.*<\/blockquote>/', '', $output );
  11. //$output = preg_replace( '/<h2>.*<\/h2>/', '', $output );
  12. //$output = preg_replace( '|\[(.+?)\](.+?\[/\\1\])?|s', '', $output );
  13. $limit = $num+1;
  14. $content = explode(' ', $output, $limit);
  15. array_pop($content);
  16. $content = implode(" ",$content)."...";
  17. echo $content;
  18. } ?>
  19.  
  20. CHILD THEME DIRECTORY PATH
  21. =====================================================================================
  22.  
  23. <?php echo dirname( get_bloginfo('stylesheet_url')); ?>
  24.  
  25.  
  26. display post thumbnail - particular size
  27. =====================================================================================================
  28. <?php the_post_thumbnail( array(400, 200) ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement