Thread Starter
ki1022
(@ki1022)
So now I am using the following code to display all tag groups in a separate list…
$tag_group_labels = get_option( 'tag_group_labels', array() );
$tag_group_ids = get_option( 'tag_group_ids', array() );
$tag_group_taxonomy = get_option( 'tag_group_taxonomy', 'post_tag' );
$number_of_tag_groups = count($tag_group_labels) - 1;
for ($i = 1; $i <= $number_of_tag_groups; $i++) {
if ( function_exists( 'tag_groups_cloud' ) ) print_r( tag_groups_cloud( array( 'include' => $i, 'div_id' => "taggroup" . $i, 'hide_empty' => false ) ) );
}
Is there any way I can perform this action but still somehow use the “sort order” property instead of it always being sorted by the ID number?
Thread Starter
ki1022
(@ki1022)
Thanks for the super-fast reply, and that fixed it. Sorry if that was a dumb question, I am far from a WordPress expert!