| Server IP : 69.164.203.165 / Your IP : 216.73.216.219 Web Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/matlock/wp-content/themes/lmg_custom/ |
Upload File : |
<?php
/**
* Single post template
*/
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'custom_do_loop' );
function custom_do_loop() {
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div data-overimage="true" class="title-container page-featured-listings-title" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<video autoplay="" muted="" loop playsinline>
<source src="https://lmg-videos.s3.us-west-2.amazonaws.com/lmg2018/matlock-top.mp4" type="video/mp4">
</video>
</div>
<div class="page-content" id="contentStart">
<h1 class="team-page-title text-center">Featured News</h1>
<div class="tier-white">
<div class="wrap">
<div class="content-section animated fadeIn">
<h2 class="text-center"><?php the_title(); ?></h2>
<?php genesis_post_info(); ?>
<p><?php the_post_thumbnail(); ?></p>
<?php the_content(); ?>
<?php
$listingID = get_field('listing');
if (!empty($listingID) && !in_array(get_field('property_status', $listingID), array('Coming Soon', 'Sold') ) ) {
echo '<p><a href="' . get_the_permalink($listingID) . '" class="button">View Listing</a></p>';
}
?>
</div>
</div>
</div>
</div>
<?php endwhile; endif;
}
genesis();