在wordpress中按字母顺序列出类别

时间:2015-05-08 21:32:46

标签: wordpress wp-list-categories

有没有办法以字典方式列出WordPress中的所有类别:

A

猫。

猫。

猫。

猫。

猫。

猫。

C

猫。

猫。

猫。

......等等

我提前感谢你

2 个答案:

答案 0 :(得分:1)

如果您知道某些php,则可以在主题主目录中修改或创建category.php页面。然后只需添加以下行以使其按字母顺序排列:



<?php
get_header();
?>

<div id="content">
<ul>
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
if (is_category('Glossary')) 
{
$args = array( 'posts_per_page' => -1, 'orderby'=> 'title', 'order' => 'ASC' );
$glossaryposts = get_posts( $args ); 
}
foreach( $glossaryposts as $post ) :	setup_postdata($post); 
 ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

好吧,如果你不知道php并想要一个插件,这里这个简单的应该用于按字母顺序排列类别,帖子和页面: https://wordpress.org/plugins/wp-alphabetical-post-listing/ 虽然我自己没有尝试过,但如果有效,请告诉我。