/*!
Theme Name: Benqu
Theme URI: https://itcroctheme.com/wp/demos/benqu/
Author: itcroc
Author URI:  https://themeforest.net/user/itcroc
Description: Benqu - News & Magazine WordPress Theme
Version: 1.1.7
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: benqu
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/ display posts organized by title in ascending order

<?php $posts = query_posts( $query_string . '&orderby=title&order=asc' ); ?>
<?php if ( $posts ) : ?>

	<div class="post">

		<h1>Ordered by Post Title (Ascending)</h1>

		<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>

			<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

			<p><?php the_content(); ?></p>

		<?php endforeach; ?>

	</div>
 
<?php endif; ?>