Thank you, I will try the template…but this is a new simple template from scratch. I’ll do some digging, appreciate it.
For the record, I’m sure this can be far more eloquent but it works…
$wp_query = new WP_Query( array ( 'posts_per_page' => -1 ) );
if ( have_posts() ) : while ( have_posts() ) : the_post();
echo "Post exists";
endwhile; else :
esc_html_e( 'Sorry, no posts exist.' );
endif;
Thanks again –
-
This reply was modified 5 years, 8 months ago by midiriders.
-
This reply was modified 5 years, 8 months ago by midiriders.
Thanks for the tips & heads up, appreciated guys!