Forums

[resolved] Tooltips on Tag Cloud (3 posts)

  1. justbishop
    Member
    Posted 1 year ago #

    Anyone know how to do THIS, but without hacking core (because you have to remember the kittens, right?)

    I figured maybe there was something I could add to my functions.php, but I don't know enough about that stuff to write it :(

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    for the sake of kittens:

    add_filter ( 'wp_tag_cloud', 'tag_cloud_change_topic' );
    function tag_cloud_change_topic( $return ) {
    return str_replace('topic', 'saved kitten', $return);
    }

    added to functions.php of your theme.

  3. justbishop
    Member
    Posted 1 year ago #

    Heh heh xD

    Thanks (for the code AND for getting my joke!)

Topic Closed

This topic has been closed to new replies.

About this Topic