function get_page_func( $atts ){
extract(shortcode_atts( array(
\'title\' => \'\'
), $atts ) );
$page = get_page_by_title($title);
$args = array(
\'include\' => $page->ID,
);
$pages = get_pages($args);
$html = $pages[0]->post_content;
$html = do_shortcode($html);
return $html;
}
add_shortcode( \'get_page\', \'get_page_func\' );
使用上述代码。无论在哪里,只要使用下面这行代码就可以了
echo do\\u短代码(\'get\\u page\');
这将适用于PHP页面,如果您在帖子或使用仪表板创建的页面中使用短代码,也可以使用。