Topic: How to chance category order in single article?
Hi to everyone, I really need to change category order displayer in the single article, under the author of the post.
I've installed this plugin "Tag or Category term_group order" to create a "term_group" camp in the database, so under wp-administration I can modify categories by setting a group to each category.
But it doesn't changed nothing. So I've modified /wp-includes/category-template.php.. exactly this string
function wp_list_categories( $args = '' ) {
$defaults = array(
'show_option_all' => '', 'show_option_none' => __('No categories'),
'orderby' => 'name', 'order' => 'DESC',in this
function wp_list_categories( $args = '' ) {
$defaults = array(
'show_option_all' => '', 'show_option_none' => __('No categories'),
'orderby' => 'term_group', 'order' => 'DESC',but also this has no effect!
Someone can help me? where is the code of category list order for the single article?
edit: excuse me for my bad english if there are mistake.
Last edited by nessunohastonick (2012-01-09 12:38:07)