wordpress分类菜单顺序混乱解决方法

2024年11月03日 建站教程

问题描述:wordpress利用代码循环出分类菜单,发现菜单不是根据自己添加的顺序出现的,下面web建站小编告诉大家解决方法!

下载插件

这里给大家推荐这款名为Category Order and Taxonomy Terms Order的插件,可以轻松为WP分离目录进行排序。

分类菜单代码

<?php
$args=array(
'orderby' => 'name',
'hide_empty' => false, //显示所有分类
'order' => 'ASC'
);
$categories=get_categories($args);
foreach($categories as $category) {
echo '<li><a href="' . get_category_link( $category->term_id ) . '">' . $category->name.'</a> </li> ';
}
?>

本文链接:http://so.lmcjl.com/news/16869/

展开阅读全文
相关内容