Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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.

#98216
thevolt
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