Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Last active December 14, 2015 23:28
Show Gist options
  • Save rosshanney/5165325 to your computer and use it in GitHub Desktop.
Save rosshanney/5165325 to your computer and use it in GitHub Desktop.
Popup for GCE more info links
<?php
/*
Plugin name: Popup for GCE more info links
*/
function gce_more_info_popup() {
?>
<script>
jQuery('body').on('click', '.gce-popup-link', function(e){
Popup(jQuery(this).attr('href'), jQuery(this).attr('id'), 400, 300);
return false;
});
</script>
<?php
}
add_action( 'wp_footer', 'gce_more_info_popup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment