Guest User

Untitled

a guest
Jun 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. if( $excerpt ) {
  3. if ($post->post_excerpt!=NULL){
  4. if(substr($post->post_excerpt, 0, 3) != '<p>' && substr($post->post_excerpt, 0, 3) != '<p '){
  5. echo '<p>';
  6. }
  7. echo $post->post_excerpt;
  8. if(substr($post->post_excerpt, -4) != '</p>'){
  9. echo '</p>';
  10. }
  11. }else
  12. the_excerpt();
  13. } ?>
Add Comment
Please, Sign In to add comment