Guest User

Untitled

a guest
Jan 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_filter( 'the_content', 'add_related_post' );
  2. function add_related_post( $content ) {
  3. $related_posts= "<div class='meta-related'>".do_shortcode('[related_posts]')."</div>";
  4. if ( is_single() ) {
  5. return count_p( $related_posts, 1, $content );
  6. }
  7. return $content;
  8. }
Add Comment
Please, Sign In to add comment