mikedidomizio
Member
Posted 4 months ago #
Hi, new here and messing with themes.
How do I go about messing with the data from widgets in the order (and if they want that particular one) that they want?
Example :
What I'm trying to do is, if they want the tags widget, than when it's called I want it to be sorted the way I want and than outputted.
Thanks
you can influence the output of the tags widget (tag-cloud?) with some code in functions.php of your theme;
example:
add_filter('widget_tag_cloud_args','change_tag_cloud_args');
function change_tag_cloud_args($args) {
$args = array('orderby' => 'count', 'largest' => 25);
return $args;
}
for possible parameters, see http://codex.wordpress.org/Function_Reference/wp_tag_cloud
mikedidomizio
Member
Posted 4 months ago #
Thanks, I'll check it out