Skip to content

Instantly share code, notes, and snippets.

@lenivene
Last active August 17, 2016 02:40
Show Gist options
  • Save lenivene/1a4eaf2b182694ef60e0cd74fd6fd2dc to your computer and use it in GitHub Desktop.
Save lenivene/1a4eaf2b182694ef60e0cd74fd6fd2dc to your computer and use it in GitHub Desktop.
Insert variable script ajax url
<?php
add_action( 'wp_head', 'wp_set_ajaxurl' );
function wp_set_ajaxurl() {
$html = '<script>';
$html .= 'var ajaxurl = "' . esc_url( self_admin_url( 'admin-ajax.php' ) ) . '";';
$html .= '</script>' . PHP_EOL;
echo $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment