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 );
所以我想修改它以便能够引用页面模板中的字段。
感谢。
答案 0 :(得分:0)
要查询页面,您可以将post_type设置为“page”:
'post_type' => 'page'