-
Posted a reply to Help me out in This WordPress Loop Design, on the site WordPress.org Forums:
<?php query_posts(array( 'post_type' => 'post', 'showposts' => 5 )); $i = 0; while ( have_posts()… -
Posted a reply to WP filter for thumbnails suffix, on the site WordPress.org Forums:
I solved this using the wp_get_attachment_metadata filter. Removed the suffixes (-{$width}x{$height}) for all sizes, and… -
Created a topic, WP filter for thumbnails suffix, on the site WordPress.org Forums:
I need to generate thumbnails on the fly using the Lam…