我是wordpress编程的新手。
页面A的内容为空,但它使用的是显示HTML内容的模板php代码。
从另一个页面B的模板php代码,我执行apply_filters来显示页面A显示的内容,但它显示空页面!它不显示页面A的模板php显示的内容!
$args = array('name' => $slug, 'post_type' => 'page', 'post_status' => 'publish', 'numberposts' => 1);
$my_post = get_posts($args);
if( $my_post ) {
echo apply_filters('the_content', $my_post[0]->post_content);
}
我想显示PHP显示的模板。
谢谢