Skip to content

Instantly share code, notes, and snippets.

@miniMAC
Created September 7, 2017 13:18
Show Gist options
  • Save miniMAC/4657657cecf76f12cd4e2b3ba8bc70a9 to your computer and use it in GitHub Desktop.
Save miniMAC/4657657cecf76f12cd4e2b3ba8bc70a9 to your computer and use it in GitHub Desktop.
<?php
function live_search_scripts() {
wp_register_script( 'live-search', get_template_directory_uri() . '/scripts.js', array('jquery'), null, true );
wp_enqueue_script( 'live-search' );
$live_search = [
'ajax_url' => admin_url('admin-ajax.php')
];
wp_localize_script( 'live-search', 'live_search', $live_search );
}
add_action( 'wp_enqueue_scripts', 'live_search_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment