category order when listing within post
-
Not sure what I’m doing here but I usually use the
<p>This post is in: <?php the_category(', '); ?></p>to list the category’s that the post is in on the single.php template. What code do I need to use in order to display the custom category order. I’ve tried
<?php $argv = array( 'orderby' => 'term_order', 'hide_empty' => false ); get_terms('the_category', $argv); ?>and it’s not displaying anything But isn’t the get_terms only used for custom post types? I’m just using standard posts.
Any help would be really appreciated as I’m losing my mind!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘category order when listing within post’ is closed to new replies.