Skip to content

Instantly share code, notes, and snippets.

@omniamike
omniamike / Add Child Theme JS
Created October 8, 2016 01:55 — forked from omniacode/Add Child Theme JS
WP Child Theme Specific JS
// Load Child Theme Specific JS
function load_child_javascript_files() {
wp_register_script('filename', get_stylesheet_directory_uri() . '/js/filename.js', array('jquery'), true );
wp_enqueue_script('filename');
}
add_action('wp_enqueue_scripts', 'load_child_javascript_files');
@omniamike
omniamike / Modal
Created October 8, 2016 16:39 — forked from omniacode/Modal
Temp Modal
<script type="text/javascript">
jQuery(document).ready(function($) {
$('.video-modal').magnificPopup({
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: true,
fixedContentPos: false
});
});