Advertisement
perazite

WP second excerpt length

Dec 22nd, 2011
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. call it with:
  2. ----------------------------
  3.  
  4. <?php echo substr( get_the_excerpt(), 0, strrpos( substr( get_the_excerpt(), 0, 75), ' ' ) ); ?>
  5.  
  6. v2 with link:
  7. ----------------------------
  8.  
  9. <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>">
  10. <strong><?php echo substr( get_the_excerpt(), 0, strrpos( substr( get_the_excerpt(), 0, 175), ' ' ) ); ?></strong>
  11. </a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement