因为你正在使用WP_Query()
, 你应该咨询the Codex entry for WP_QUery()
. 它列出了可以传递给arguments数组的所有参数。
在这种情况下,您要使用post custom meta parameters.
假设您的自定义元密钥为_show_on_front
, 你的价值是true
或false
:
<?php
$custom_query_args = array(
\'post_type\' => \'Event\',
\'posts_per_page\' => 1000
// INSERT POST CUSTOM META PARAMETERS HERE
\'meta_key\' => \'_show_on_front\',
\'meta_value\' => true
);
$custom_query = new WP_Query( $custom_query_args );
?>
有关更复杂的示例,请参阅链接的Codex条目。