<?php $temp_query = $wp_query; ?>
<?php query_posts('tag=sometag,anothertag&posts_per_page=10'); ?>
<?php while (have_posts()) : the_post(); ?>
// print post here
<?php endwhile; ?>
<?php $wp_query = $temp_query; ?>
Using this simple wordpress loop, how do I show ONLY the posts (post titles actually) starting with say letter 'G'. I want to sort posts alphabetically but only those that matches, not all.
Thanks!