Rearrange Course Filter Titles

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #13009
    bfields4
    Member

    How do I rearrange the Courses page filter?

    #13047
    Veena
    Moderator

    Pls go through this link –
    https://codex.wordpress.org/Function_Reference/get_terms#Examples

    You have to modify line no:767 of file framework/functions/post-functions.php , you need to give the code as suggested in the above link.
    eg:

    $terms = get_terms($taxonomy,array(
     	'orderby'    => 'name',
            'order'=>'DESC'
      ));
    

    Kindly vary the code according to your requirement and the possible parameter values are also given in the above link.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Invent Theme Support’ is closed to new topics and replies.