我想创建自定义分类条件页。我的帖子类型是“笔记本电脑”。
我当前的代码不起作用。但此代码适用于post\\u类型的“post”部分。
add_filter( \'template_include\', \'mobile_laptop_category_page_template\', 99 ); function mobile_laptop_category_page_template( $template ) { if ( wp_is_mobile() && is_taxonomy() && \'laptops\' == get_post_type()) { $new_template = locate_template( array( \'/mobile/category/taxonomy-routers.php\' ) ); if ( \'\' != $new_template ) { return $new_template ; } } return $template; }