是否有任何方法可以使用wp\\U查询在标题、内容和分类法中搜索字符串?
我正在使用:
$args = array(
\'post_type\' => \'firma\',
\'post_status\' => \'publish\',
\'order\' => \'DESC\',
\'orderby\' => \'date\',
\'s\' =>$_POST[\'term\'],
\'posts_per_page\' =>5
);
$query = new WP_Query( $args );
但这是使用
AND (((wp_posts.post_title LIKE \'%string%\') OR (wp_posts.post_content LIKE \'%string%\')))
仅在标题和内容中。
SO网友:Syed Fakhar Abbas
[WP_Query][1]
提供选项列表,包括[Taxonomy Parameters][2]
. 您可以使用taxonomy参数搜索帖子,如:
post_type\' => \'firma\',
\'post_status\' => \'publish\',
\'order\' => \'DESC\',
\'orderby\' => \'date\',
\'s\' =>$_POST[\'term\'],
\'posts_per_page\' =>5
\'tax_query\' => array(
array(
\'taxonomy\' => $_POST[\'term\'],
)
);