How to order different custom post type in category or tag template page?
someone there help me and solved the problem. It works. Cool. Thks guys. Details : First – I remove this code from function.php function namespace_add_custom_types( $query ) { if( ( is_tag() || is_category() ) && empty( $query->query_vars[‘suppress_filters’] ) ) { $query->set( ‘post_type’, array( ‘post’, ‘projets’, ‘disques’, ‘notices’, ‘main_menu’, ‘top_menu’ )); return $query; } } add_filter( … Read more