• I wan to add a new page that will allow me to show all post in alphabetical order by title that only have a specific tag. I know the code I need, to a point:

    <?php
    
    //The Query
    query_posts('tag=review');
    
    //The Loop
    if ( have_posts() ) : while ( have_posts() ) : the_post();
     ..
    endwhile; else:
     ..
    endif;
    
    //Reset Query
    wp_reset_query();
    
    ?>

    But how do I create the page, can it be done through the dashboard and how do I order the results?

    Cheers

    Adz

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

The topic ‘Adding a new page?’ is closed to new replies.