Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. add_filter( 'the_content', 'my_the_content_filter', 0 );
  2. function my_the_content_filter( $content ) {
  3. if (is_single()) {
  4. global $post;
  5. $meta=get_post_meta($post->ID, 'meta', true);
  6. ob_start();
  7. ?>
  8. <div class="row">
  9. ... and the rest of the html
  10. ... and field you want to add to content
  11. <?php
  12. $content .= ob_get_clean();
  13. }
  14. return $content;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement