Skip to content

Instantly share code, notes, and snippets.

@jesusoterogomez
Last active August 29, 2015 14:13
Show Gist options
  • Save jesusoterogomez/926a938aab8051fd9203 to your computer and use it in GitHub Desktop.
Save jesusoterogomez/926a938aab8051fd9203 to your computer and use it in GitHub Desktop.
Transforms Categories Checkboxes Selection into Radio Buttons in Wordpress.
<?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