Skip to content

Instantly share code, notes, and snippets.

@alanef
Created August 8, 2019 16:58
Show Gist options
  • Select an option

  • Save alanef/a3ec1742472e6d7e277ba030d6d0fe21 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/a3ec1742472e6d7e277ba030d6d0fe21 to your computer and use it in GitHub Desktop.
/**
* usage [thecontent 'id-1234]
* works fine in elementor
* but not gutenberg
**/
add_shortcode( 'thecontent', function ( $atts ) {
$a = shortcode_atts(
array(
'id' => '1',
),
$atts );
$post = get_post($a['id']);
$content = apply_filters('the_content', $post->post_content);
echo $content;
} ) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment