Answers for "wp_query order by taxonomy"

PHP
0

wp_query order by taxonomy

$timeline_taxonomies = get_terms(array(
    'fields' => 'ids',   //get the IDs
    'taxonomy'     => 'taxonomy_name',
    'orderby'      => 'term_order',
    'hide_empty'   => true,
));
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language