ThunderThemes.net
  • Home page
  • Portfolio
  • KB
  • Support Forum
  • Demo contents
  • Login
  • Register

Support Forums

Ask for help to our wordpress experts

homepage/Forums/Medicals WordPress Theme/Alphabetical order

Alphabetical order

Support requests are being processed on business days from 10:00 to 18:00 (GMT +1) (excluded, of course, saturday and sunday), within 24h/72h in the order they were received, please include the website URL + detailed information about your problem (with screenshots if possible).

I DO NOT ANSWER on "HOW TO" Requests
First to open a ticket be sure you'v made ALL BACKUPS, i'm not responsabile to data loss

  • 9 years, 1 month ago Xavier
    Participant

    Hi, is there any way to sort the team member list in an alphabetical order ?

    9 years, 1 month ago Marco
    Keymaster

    HI Xavier, yes.. open template-team.php and find the line 48 you can show this:

    $the_query = new WP_Query( 
    						array(
    							'post_type' => 'team',
    							// 'posts_per_page' => -1
    						)
    					);

    This is a normal wp_query, try this code

    $the_query = new WP_Query( 
      array(
        'post_type' => 'team',
        'orderby'=>'title',
        'order'=>'ASC'
    
      )
    );

    official wp_query page: http://codex.wordpress.org/Class_Reference/WP_Query

    Regards
    Marco

    8 years, 11 months ago Xavier
    Participant

    Hi Marco, thanks for the reply. I tried it out but it didn’t work.
    here is my code:

    <?php

    $the_query = new WP_Query( ‘post_type=team’);

    if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>

    Do you have any idea how I could sort this ?
    Thanks !

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.

Login

Log In
Register Lost Password

Search

Recent Topics

  • Broken SIte by Becca800
    2 weeks, 2 days ago
  • Article Headers Disappearing by jessenigro
    2 weeks, 2 days ago
  • Author Bio Pic Switching Randomly by jessenigro
    2 weeks, 2 days ago
  • Core Plugin Critical Error by capj71
    3 months, 3 weeks ago
  • The package could not be installed. The theme is missing the style.css styleshee by emmachike30
    10 months, 1 week ago
  • In can't install plugins by mida
    1 year, 11 months ago
  • Updates and now site is a wreck by Becca800
    2 years, 1 month ago
  • remove the page loading effects by ysugrad2013
    2 years, 2 months ago

Recent Replies

  • coderkube on Broken SIte 2 weeks, 2 days ago
  • coderkube on Article Headers Disappearing 2 weeks, 2 days ago
  • coderkube on Author Bio Pic Switching Randomly 2 weeks, 2 days ago
  • Becca800 on Broken SIte 2 months ago
  • coderkube on Core Plugin Critical Error 3 months, 3 weeks ago
© Copyright Thunderthemes.net - All rights reserved..