如何用模板显示空wordpress页面

时间:2018-03-19 03:12:11

标签: php html wordpress filter

我是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显示的模板。

谢谢

0 个答案:

没有答案