Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * usage [thecontent 'id-1234]
  3. * works fine in elementor
  4. * but not gutenberg
  5. **/
  6.  
  7. add_shortcode( 'thecontent', function ( $atts ) {
  8. $a = shortcode_atts(
  9. array(
  10. 'id' => '1',
  11. ),
  12. $atts );
  13. $post = get_post($a['id']);
  14. $content = apply_filters('the_content', $post->post_content);
  15. echo $content;
  16. } ) ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement