我使用以下代码列出特定页面的子页面。
如何将ot更改为按字母顺序排序?
<?php $args=array(
\'post_parent\' => 15901,
\'post_type\' => \'page\',
\'orderby\' => \'the_title\',
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) { ?>
<ul>
<?php
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><h4><a href="<?php the_permalink() ?>">
<?php $brand_name = get_post_meta($post->ID, \'brand_name\', true); ?><?php echo $brand_name; ?>
</a></h4>
</li>
<?php endwhile; } ?>
</ul>
<?php wp_reset_query();?>