• gregseitz

    (@gregseitz)


    Great plugin, thanks!

    I would like to be able to specify the thumbnail image size in my display. Is it possible to do this in the template? I could either create a new image size for thumbnails and pass that handle, or specify the image size directly in the template. I really don’t care how, but I just would love to be able do to this!

    Any help would be much appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Greg,

    I spent a few hours trying to do this by writing custom code and a bunch of other stupid stuff when all you need to do is go into Catlist.php and change:

    $lcp_thumbnail = get_the_post_thumbnail($single->ID);

    to

    $lcp_thumbnail = get_the_post_thumbnail($single->ID, 'medium');

    or whatever size image you want from your set media settings sizes. You can also check out this plugin if you need more image sizes. Haven’t tried it, but it may help.

    thanks a LOT

    Thanks a lot, I’ve been looking for a solution for days.

    The plugin is very usefull. It would be better if get_the_post_thumbnail() included this new parameter to its arity 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: List category posts] Changing thumbnail image size’ is closed to new replies.