另一个短代码选项(将以下内容添加到functions.php中)。有了这个,你有两个选择。您可以通过帖子/页面ID(适用于任何帖子类型)或页面名称/slug(仅适用于页面)进行查询。
// Add "Show Content" Shortcode
function wpse_120886_show_content( $atts ) {
// Attributes
$a = shortcode_atts(
array(
\'id\' => null,
\'page_name\' => null,
), $atts )
);
// Get Content & Return
if ( $a[\'id\'] ) {
$the_post = get_post( $a[\'id\'] );
$the_content = $the_post->post_content;
} elseif ( $a[\'page_name\'] ) {
$the_post = get_posts( array( \'name\' => $a[\'page_name\'], \'post_type\' => \'page\', \'post_status\' => \'publish\', \'posts_per_page\' => 1 ) );
$the_content = $the_post[0]->post_content;
}
return $the_content;
}
add_shortcode( \'show_content\', \'wpse_120886_show_content\' );
Usage:
按ID:[show_content id="ID_HERE"]
按名称/段塞:[show_content page_name="contact_text"]