Thread Starter
sp_sam
(@sp_sam)
Resolved. Thank you very much.
Thread Starter
sp_sam
(@sp_sam)
This is not a Genesis theme. It’s a custom theme we built for a client. The URL is not for public consumption right now, but I could email it to you privately if that would help. Just let me know where.
Thread Starter
sp_sam
(@sp_sam)
Thanks. I had previously tried that with no luck. Would you mind taking a look at the following and tell me where I’ve gone wrong?:
<?
function archive_listing_loop() {
global $post;
$count = 0; // start counter at 0
// Start the Loop.
if ( have_posts() ) :
while ( have_posts() ) : the_post();
$count++; // add 1 to counter on each loop
$first = ($count == 1) ? 'first' : ''; // if counter is 1 add class of first
...PURPOSELY REMOVING ALL OF $LOOP STUFF FOR THIS FORUM POST TO SAVE SPACE}...
endwhile; else: ?>
<p>Sorry. No properties were found matching your search criteria.</p>
<?php endif; ?>