wordpress按类别显示自定义类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress按类别显示自定义类型相关的知识,希望对你有一定的参考价值。
/** * To show custom types in categories */ add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $query->set('post_type',$post_type); return $query; } }
以上是关于wordpress按类别显示自定义类型的主要内容,如果未能解决你的问题,请参考以下文章