我正在修改Wordpress中的标签模板(tag.php)。我想显示按类别名称分组的帖子列表。
这是允许我按标签对帖子进行分组的代码。是否可以修改以按类别标题分组?
<?php
$posts = get_posts(array(
'post_type' => 'post',
'category' => $cat_id,
'tag' => $tag->slug,
'posts_per_page' => -1,
'meta_key' => 'title',
'orderby' => 'meta_value',
'order' => 'ASC'
));
if ( $posts ): ?>
<?php echo '<h3 style="margin-top: 1em;"> <a style="color: black;" id="' .
$tag->name . '">' . $tag->name . '</a></h3>'; ?>