I have several custom type posts.
I need to order (using plugin) in custom type categories and posts.
But if unchecked “Posts” (default post type) ordering in custom taxonomy doesn’t work.
Try.
I found solution, added to functions:
add_action( ‘pre_get_posts’, ‘customise_speakers_taxonomy_archive_display’ );
function customise_speakers_taxonomy_archive_display ( $query ) {
if (($query->is_main_query()) && (is_tax(‘adscategory’)))
$query->set( ‘posts_per_page’, ’12’ );
$query->set( ‘orderby’, ‘menu_order’ );
$query->set( ‘order’, ‘ASC’ );
}
where “adscategory” is custom taxonomy