Inventory_Presser_Admin_Customize_Dashboard::move_tags_meta_box()
move_tags_meta_box
Contents
Description Description
Remove and re-add the "Tags" meta box so it ends up at the bottom for our CPT
Return Return
(void)
Source Source
File: includes/admin/class-admin-customize-dashboard.php
function move_tags_meta_box() { global $wp_meta_boxes; unset( $wp_meta_boxes[ INVP::POST_TYPE ]['side']['core']['tagsdiv-post_tag'] ); add_meta_box( 'tagsdiv-post_tag', 'Tags', 'post_tags_meta_box', INVP::POST_TYPE, 'side', 'core', array( 'taxonomy' => 'post_tag' ) ); }
Expand full source code Collapse full source code View on Github