×

have_posts() ) :
while ( $custom_loop->have_posts() ) : $custom_loop->the_post();
echo ‘

‘ . get_the_title() . ‘

‘;
echo “

” . get_the_date() . “

“;
the_excerpt();
echo ‘Read More about ‘ . ‘‘ . get_the_title() .’

‘;
endwhile;
wp_reset_query();
endif;
?>