Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created August 10, 2013 20:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rosshanney/6202009 to your computer and use it in GitHub Desktop.
Save rosshanney/6202009 to your computer and use it in GitHub Desktop.
Ensure that Polylang plugin is loaded on Ajax request, to ensure calendar output is translated
<?php
/*
Plugin name: GCE Load Polylang on Ajax requests
*/
function gce_load_polylang_on_ajax() {
?>
<script type="text/javascript">
if (typeof jQuery != 'undefined') {
jQuery.ajaxSetup({
data: { pll_load_front: true }
});
}
</script>
<?php
}
add_action( 'wp_head', 'gce_load_polylang_on_ajax' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment