rdusnr

Untitled

Jul 17th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if ( ! function_exists( 'kleo_excerpt' ) ) {
  2. function kleo_excerpt( $limit = '', $words = false ) {
  3. $full_post_content = get_the_content();
  4. $limit = '99999';
  5. $excerpt = wp_strip_all_tags(substr( $full_post_content, 0, $limit ));
  6. return '<p>' . $excerpt . '</p>';
  7. }
  8. }
Add Comment
Please, Sign In to add comment