mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-07-16 18:37:05 +08:00
13 lines
386 B
Text
13 lines
386 B
Text
add_action( 'wp_footer', function(){
|
|
?>
|
|
<script>
|
|
jQuery(document).ready(function() {
|
|
if ( jQuery('.wpProQuiz_content input[name="restartQuiz"]' ).length ) {
|
|
jQuery( '.wpProQuiz_content input[name="restartQuiz"]' ).click(function( event ) {
|
|
window.location.reload(true);
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
<?php
|
|
}, 999 );
|