The site I am working on http://huc.photonicsg3.net/ is having some issues with showing entire posts on specific blogs. It's built in a child theme using the thematic framework.
The posts on the home page and student blog only show an excerpt and no images. They should look like the posts on the upcoming events page. Each blog needs to show posts from a specific category only.
Here is the snippet of php for the upcoming events page:
<?php
$wp_query = new WP_Query();
$wp_query->query( array( 'cat' => '-246', 'posts_per_page' => 10, 'paged' => $paged ) );
$more = 0;
?>
Here is the snippet of php for the student blog page:
<?php
$wp_query = new WP_Query();
$wp_query->query( array( 'cat' => '246', 'posts_per_page' => 10, 'paged' => $paged ) );
$more = 0;
?>
Here is the snippet of php for the home page:
<?php
$wp_query = new WP_Query();
$wp_query->query( array( 'posts_per_page' => 10, 'paged' => $paged ) );
$more = 0;
?>
I'm not sure if you can solve much with this info but I can supply more if needed. Any help is greatly appreciated!
Thank you