Home › Forums › Back End › Need a point in the right direction with a WordPress theme. › Re: Need a point in the right direction with a WordPress theme.
March 5, 2012 at 5:50 pm
#98216
Member
" title="">
$count = 0;
$args = array( 'post_type' => 'portfolio', 'posts_per_page' => ( $projects_per_row * $number_of_rows ) );
$loop = new WP_Query( $args );
//output the latest projects from the 'my_portfolio' custom post type
while ($loop->have_posts()) : $loop->the_post();
$count++;
$preview_img_url = eq_get_the_preview_img_url();
?>
I think this is where the change needs to happen from Portfolio Items to Blog or post items.
h