这个WP_Query
对象接受post元参数。一般来说,您需要执行以下操作:
$my_query = new WP_Query(
array(
\'post_type\' => \'post\',
\'meta_query\' => array(
array(
\'key\' => \'project_cat\',
\'value\' => \'my-value\',
)
),
// Other query properties
)
);
其中,“我的值”是您的“指定值”。
Example usage:
add_action( \'pre_get_posts\' , \'my_pre_get_posts\' );
function my_pre_get_posts( $query ) {
// Check this is main query and other conditionals as needed
if( $query->is_main_query() ) {
$query->set(
\'meta_query\',
array(
array(
\'key\' => \'project_cat\',
\'value\' => \'my-value\'
)
)
);
}
}
请参见
WP_Query,
pre_get_posts. 您可以使用所有条件。目前,这会在每个主查询上运行—这可能是您不想要的。
或者,您可以使用query_posts
(一种更简单但效率更低的方法)仅为模板中的特定实例更改查询。