ORDER Posts by Title?
-
Hi,
I’m using the following to list Posts in a Page:
<?php if ( $my_query->have_posts() ) : ?> <?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?> <?php //necessary to show the tags global $wp_query; $wp_query->in_the_loop = true; $slug = basename(get_permalink()); ?> <li><a href="<?php the_permalink(); ?>"><span><?php the_title(); ?></span></a></li> <?php endwhile; ?>
Is there a way to change the output order of my results?
Thank you
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘ORDER Posts by Title?’ is closed to new replies.