Created
December 19, 2012 16:20
-
-
Save plasticmind/4337952 to your computer and use it in GitHub Desktop.
Adds a confirmation dialogue to the WordPress publish button.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* = Add a "molly guard" to the publish button */ | |
add_action( 'admin_print_footer_scripts', 'sr_publish_molly_guard' ); | |
function sr_publish_molly_guard() { | |
echo <<<EOT | |
<script> | |
jQuery(document).ready(function($){ | |
$('#publishing-action input[name="publish"]').click(function() { | |
if(confirm('Are you sure you want to publish this?')) { | |
return true; | |
} else { | |
$('#publishing-action .spinner').hide(); | |
$('#publishing-action img').hide(); | |
$(this).removeClass('button-primary-disabled'); | |
return false; | |
} | |
}); | |
}); | |
</script> | |
EOT; | |
} |
Nice catch, James... fixed!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tried to push a change but am not sure why it's not working - the first line should have
to
after"molly guard"
and betweenthe
.<3