• Nice Plugin, thanks for that. However the function

    the_category_thumbnail();

    doesn’t produce a output. it looks like this in the source code of version 1.0.3 :

    function the_category_thumbnail($category_id = null, $sizes = array()) {
    		print get_the_category_thumbnail($cat, $sizes);
    	}

    I managed to fix the problem like this:

    function the_category_thumbnail($category_id = null, $sizes = array()) {
    		print get_the_category_thumbnail($category_id, $sizes);
    	}

    So, by making the parameter/argument name equal.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Good plugin, minor problem’ is closed to new replies.