Unfortunately WP is hardcoded to generate taxonomy metaboxes in that side
location.
It is tad fragile, but possible to throw generated data around from one location to another:
add_action( 'add_meta_boxes', 'move_taxonomy_metabox' );
function move_taxonomy_metabox() {
global $wp_meta_boxes;
$taxonomy = 'test';
$metabox_key = 'tagsdiv-' . $taxonomy; // or $taxonomy . 'div' if hierarhical
if ( isset( $wp_meta_boxes['post']['side']['core'][$metabox_key] ) ) {
$metabox = $wp_meta_boxes['post']['side']['core'][$metabox_key];
unset( $wp_meta_boxes['post']['side']['core'][$metabox_key] );
$wp_meta_boxes['post']['normal']['core'][$metabox_key] = $metabox;
}
}
More proper way might be to just nuke generated metabox and completely redo registration.
Related Posts:
- Add default WordPress tag meta box to User Profile
- Custom taxonomy hide meta box but show in menu
- How do you remove a Category-style (hierarchical) taxonomy metabox?
- Add description to custom taxonomy admin metabox
- Get the term id belonging to custom taxonomy on a custom single-post-type.php template page
- Automatically assign taxonomy term if custom meta value exists
- How can I conditionally change the title of a taxonomy meta box?
- Metabox to list/store a certain type of post tag
- Adding content to a taxonomy metabox
- Render P2P metabox per taxonomy term
- Create custom taxonomy and Display in metabox dropdown
- Separate tags with semicolon
- Remove taxonomy widget from “PAGE” post
- unable to save custom taxonomy terms in a custom-built metabox in wp-admin
- Dropdown list of taxonomies won’t display selected
- Extra Meta Data for WordPress Multisite Taxonomy
- Remove Custom metabox from particular page template is used
- transfer two existing taxonomy terms into one custom metabox
- Looking for suggestions on creating simple database (Help!!)
- How to show/hide a meta box using categories, with a different post type
- Does a codex exist for creating meta boxes in taxonomy
- Attaching meta box to specific category/taxonomy in custom post type
- register_taxonomy – show in admin menu, but not on post type (edit) screen
- Taxonomy Extra Meta [duplicate]
- Modify Term List in Custom Taxonomy Meta Box
- get_posts assigned to a specific custom taxonomy term, and not the term’s children
- How can I get only parent terms?
- get_terms does not return any results for my custom taxonomy?
- Order terms by term_order
- How to display warning on post editor when trying to add new term to custom taxonomy?
- Is there a way to import terms into WordPress?
- get_terms() doesn’t return empty terms even though hide_empty is false
- You are not allowed to manage these items – bug introduced in 4.4
- Get taxonomy name of current post
- How to hide custom taxonomy archives same way as hiding custom post types?
- Custom metabox for menu administration page?
- Remove Custom Taxonomy Base
- Retrieve custom taxonomies
- why do drafts return as part of wp_query?
- Populating dropdown menu with hierarchical taxonomies
- Taxonomy archive template to have conditional logic for displaying child categories
- Set posts_per_page in WP_Query for custom taxonomy
- How can I allow a custom taxonomy for certain roles?
- Removing the “Popular Terms” area from the Taxonomy Edit Screen in the Admin Area
- Sorting taxonomy columns by meta value numeric
- Custom taxonomy query not working with switch_to_blog
- How can I check if a taxonomy has more than one item?
- Specifying a size when displaying an image associated with a taxonomy through ACF
- Top level parent taxonomy ID
- Date range filter for manage posts list on edit.php
- Autogenerate Front End Form Field With jQuery
- Custom Taxonomy to dropdown box on adminside wordpress
- Selecting all posts from the children of a particular parent taxonomy
- Display related products based on 2 specific product attributes values in WooCommerce
- How to get all taxonomies which can be added in menu?
- WordPress Tag or Custom Taxonomy Return All Posts if has that Word in Post Title
- display one post out of each custom category (aka “term of custom taxonomy”)
- Widget Logic use with Custom Taxonomy
- Select multiple categories from CPT to display in LayersWP builder widget
- Display value of custom field of custom taxonomy in single post?
- Custom Taxonomy and Rewrite URL
- limit post by a taxonomy in the admin
- WordPress Custom post query sorting does not work
- group posts by taxonomy terms
- List related terms + taxonomies
- How to create a custom taxonomy using a shortcode?
- Custom URLs in Custom Search Results
- how to extract the username of the wordpress user?
- WordPress set taxonomy on post?
- Removing “trashed” posts from post count in custom taxonomy terms?
- Best way to redirect taxonomy terms to pages
- WordPress cannot find user taxonomies on frontend
- Taxonomy archive template that shows posts from more than one taxonomy
- Hide echo of no categories from get_object_taxonomies
- Drop-down filter doesn’t retrieve custom taxonomies
- Filter with two id of the same value CPT UI(taxanomies)
- Custom Post Type meta data getting deleted on bulk editing taxonomies
- How Can I Remove Child Slug From Grandchild Slug When Using Duplicate Grandchild Slugs?
- How to filter and/or sort user taxonomy query inside custom user taxonomy archive page?
- Create multiple taxonomies with custom fields values on the fly when creating new posts
- Custom Taxonomies Archive Page 404
- Why is the category item count not updating after assigning a category?
- Add custom taxonomy for post using cron job
- Custom column into custom taxonomy (img tag with slug-name as file name)
- Custom taxonomy with custom post type archive page
- ACF Custom field not showing in Timber Taxonomy page
- Displaying subcategories and then posts in taxonomy template
- How to show one post content in another post content which has same terms?
- How to set “manage categories” capabilities on a post type taxonomy but not on the general categories?
- Include attachments with a custom taxonomy in search
- List terms and order by second word
- If term and page have the same slug, how can I view the term archive?
- add custom fields in custom taxonomy meta box in wordpress-3.5.2
- How to permanently delete a taxonomy
- How to update WordPress custom SQL Select query for custom taxonomies so that syntax is correct?
- Display term description on hover using get_the_term_list
- Display woocommerce product_cat child terms with thumbnails
- How to add a custom page template selector to a custom taxonomy?
- Rewrite URL for a specific taxonomy [duplicate]
- Template hierarchy html with taxonomy in 6.2