Skip to content

Instantly share code, notes, and snippets.

View dkmy-sec's full-sized avatar

Kei Nova dkmy-sec

  • Zetatech
  • Neo-Tokyo
  • 13:04 (UTC -04:00)
View GitHub Profile
<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.
@dkmy-sec
dkmy-sec / excerpt-char-limit.php
Created November 30, 2016 22:45
WP Function Replaces the Read More with ellipses & Limits Excerpt character count
/**
* 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 );
@dkmy-sec
dkmy-sec / dropdown.js
Created November 30, 2016 22:36
Show Certain Value in Drop on page load
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
});
@dkmy-sec
dkmy-sec / Backstretch-set.js
Last active August 17, 2017 20:27
Backstretch JS Random Image Array For Backgrounds
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',