页面模板的高级自定义字段

时间:2015-03-24 05:43:00

标签: php wordpress templates advanced-custom-fields

Wordpress ACF - >查询页面模板而不是帖子。

所以基本上我已经设置了高级自定义字段,我想构建我的网站,以便当我创建一个页面模板,例如' topic-page'我希望ACF将自定义字段添加到页面模板为' topic-page'的所有网页。

过去我会使用$args数组来查询post_type = 'slug';但是,如何查询页面模板?

查询帖子类型的现有代码:

$args = array( 'post_type' = 'the name of the post type' ); $args = new WP_Query( $args );

所以我想修改它以便能够引用页面模板中的字段。

感谢。

1 个答案:

答案 0 :(得分:0)

要查询页面,您可以将post_type设置为“page”:

'post_type' => 'page'