可以这样玩。在functions.php里添加
if ( is_category() && 5 == get_queried_object_id() ) //将5替换成求职招聘对应的ID
add_action( 'pre_get_posts', 'wpdit_show_custom_posts');
function wpdit_show_custom_posts( $query ){
$query->set( 'tag__in', 1 ); //将1替换成你要显示的标签ID
return $query;
}
然后你再看看效果是不是就出来了。