首先,是的,实现这一点有很多方法。您首先要做的是创建一个子主题或插件。其中一个是添加代码的地方。。。
这可以通过使用wp action来实现pre_get_postshere 要解释有关修改的更多信息(如果仅在存档页面上),请执行以下操作:
从他的例子来看(带有一点mod):
// Load our function when hook is set
add_action( \'pre_get_posts\', \'rc_modify_query_get_design_projects\' );
function rc_modify_query_get_design_projects( $query ) {
// Check if on frontend and main query is modified
if( ! is_admin() && $query->is_main_query() && is_post_type_archive( \'product\' ) ) {
$query->set( \'cat\', \'20\' ); // whatever your category id is here
}
}
类似于上述内容(在您的环境中未经测试),但我认为您可以在这里获得想法。。。