Forums

Determine what is next widget? (3 posts)

  1. 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

  2. alchymyth
    The Sweeper
    Posted 4 months ago #

    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

  3. mikedidomizio
    Member
    Posted 4 months ago #

    Thanks, I'll check it out

Reply

You must log in to post.

About this Topic