Thanks Bill! I will look at doing this.. What I entered currently in my functions.php was this… but I’m not the greatest with PHP so I’m not sure if its fully correct code wise but it does seem to work.
add_filter( 'display_posts_shortcode_output', 'format_dps_outer', 10, 7 );
function format_dps_outer( $output, $atts, $image, $title, $date, $excerpt, $inner_wrapper, $wrapper) {
// Make Outer Wrapper
$wrapper = ' <div>'. $wrapper .'<div>';
// Now let's rebuild the output.
$output = '<div class="customportfolio">' . '<' . $inner_wrapper . ' class="listing-item">' . $image . $title . $date . $excerpt . '</' . $inner_wrapper . '>' . '</div>';
// Finally we'll return the modified output
return $output;
}