Last active
August 29, 2015 14:13
-
-
Save jesusoterogomez/926a938aab8051fd9203 to your computer and use it in GitHub Desktop.
Transforms Categories Checkboxes Selection into Radio Buttons in Wordpress.
This file contains hidden or 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
<?php | |
# paste into functions.php in theme | |
add_action( 'admin_footer', 'categoryRadioButton' ); | |
function categoryRadioButton(){ | |
echo '<script type="text/javascript">'; | |
echo 'jQuery("#categorychecklist input, #categorychecklist-pop input, .cat-checklist input")'; | |
echo '.each(function(){this.type="radio"});</script>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment