Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function add_custom_meta_to_content($content) {
  2. $queried_object = get_queried_object();
  3.  
  4. if ( $queried_object ) {
  5. $post_id = $queried_object->ID;
  6. }
  7. $text = get_post_meta($post_id, 'textbox_wporg_meta_key', true);
  8. if( is_single() ) {
  9. $content = $text . '' . $content;
  10. }
  11. return $content;
  12. }
  13. add_filter( 'the_content','add_custom_meta_to_content' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement