Last active
December 16, 2015 21:48
-
-
Save wolffe/5501991 to your computer and use it in GitHub Desktop.
[WordPress] Show Page Content Inside Page
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
<?php | |
function my_show_page($atts) { | |
extract(shortcode_atts(array('page_id' => 0), $atts)); | |
$page = get_page($page_id); | |
return apply_filters('the_content', $page->post_content); | |
} | |
add_shortcode('my_show_page', 'my_show_page'); | |
// [my_show_page page_id="999"] | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment