Created
August 8, 2019 16:58
-
-
Save alanef/a3ec1742472e6d7e277ba030d6d0fe21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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