Add "Select All" to Post Categories. Option to add new post to all categories in a custom taxonomy?

1.3k Views Asked by At

I have a custom taxonomy of US states for a custom post type. Currently when adding a new post to this custom post type I have to manually check all 50 states (if applicable) is there a way to add a button inside of the custom taxonomy metabox that when pressed would check all of the boxes to assign the post to all 50 states?

1

There are 1 best solutions below

0
On

So this is how I added it in: I added this code into functions.php:

//Add Script to CPT Page
    add_action( 'admin_print_scripts-post-new.php', 'portfolio_admin_script', 11 );
    add_action( 'admin_print_scripts-post.php', 'portfolio_admin_script', 11 );

    function portfolio_admin_script() {
    global $post_type;
    if( 'counselor' == $post_type )
    wp_enqueue_script( 'portfolio-admin-script', get_stylesheet_directory_uri() . '/js/counselor.js' );
}   
function style_state_button() {
   echo '<style type="text/css">
       #select-all-states-btn {
        margin-top: 15px;
       }

       #statesserved-adder h4 {
        display: none;
       }
     </style>';
}

add_action('admin_head', 'style_state_button');

This Calls a javascript file called counselor.js. In that file was this:

jQuery(document).ready(function() {     
jQuery('div#statesserved-adder ').prepend('<input type="button" class="button" id="select-all-states-btn" value="Select All States" />');

jQuery("#select-all-states-btn").click(function() {
    var checkBoxes = jQuery('input[name="tax_input[statesserved][]"]');
    checkBoxes.attr("checked", !checkBoxes.attr("checked"));
    }); 

});