This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="downloads"> | |
<div class="downloads-headers"> | |
<span class="description-title">DESCRIPTION</span> | |
<span class="download-title">DOWNLOAD LINK</span> | |
</div> | |
<div class="download-wrap"> | |
<?php if ( have_rows('file_uploads') ) : ?> | |
<?php while( have_rows('file_uploads') ) : the_row(); ?> | |
<?php | |
//Declare Variable for your ACF Field. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Filter the except length to x characters. | |
* | |
* @param int $length Excerpt length. | |
* @return int (Maybe) modified excerpt length. | |
*/ | |
function wpdocs_custom_excerpt_length( $length ) { | |
return x; | |
} | |
add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length', 999 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($) { | |
// Show Certain Value on dropdown when page loads *Search Homes Page* | |
$("#property_location option[value='2']").attr("selected", "selected"); | |
//End Document Ready | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($) { | |
// Image Array Variable | |
var images = [ | |
'/wp-content/themes/agency-pro/images/bg.jpg', | |
'/wp-content/themes/agency-pro/images/bg1.jpg', | |
'/wp-content/themes/agency-pro/images/bg2.jpg', | |
'/wp-content/themes/agency-pro/images/bg3.jpg', | |
'/wp-content/themes/agency-pro/images/bg4.jpg', | |
'/wp-content/themes/agency-pro/images/bg5.jpg', |