Thematic Post Images Don't Display When Querying Category
-
Hi,
I’m using Thematic and trying to query posts from only one category (called ‘news’). However, when I do so, the post images are no longer displayed in the previews. For example, the following will allow me to query only posts from ‘news’ but the images are gone:
$wp_query->query( array( 'category_name' => 'news', 'posts_per_page' => get_option( 'posts_per_page' ), 'paged' => $paged ) );
If I remove ‘category_name’ => ‘news’, then the images appear, but, of course, now it is querying posts from all categories:
$wp_query->query( array( 'posts_per_page' => get_option( 'posts_per_page' ), 'paged' => $paged ) );
What to do?
Cheers,
Michael
- The topic ‘Thematic Post Images Don't Display When Querying Category’ is closed to new replies.