I just had the exact same issue. You have to include the editor in the supports argument array to get custom mce boxes to show.
I solved the issue by hiding it with CSS:
function move_posteditor( $hook ) {
if ( $hook == 'post.php' OR $hook == 'post-new.php' ) {
add_action( 'admin_print_footer_scripts', 'remove_edit_div' );
}
}
add_action( 'admin_enqueue_scripts', 'move_posteditor', 10, 1 );
function remove_edit_div() {
global $post;
$post_type=get_post_type( $post->ID );
if ( ( $_GET[ 'post_type' ] ) == 'custom_pt_name' || ( $post_type == 'custom_pt_name') ) {
?>
<style>#postdivrich { display: none; }</style>
<?php }
Related Posts:
- Is there a way to get N number of WYSIWYG editors in a custom post type?
- Is it possible to remove WYSIWYG for a certain Custom Post Type?
- Adding content to archive and taxonomy pages on custom post types?
- Add / Remove Post Type from “Link to existing content” popup
- Adding multiple WYSIWYG editors to custom post type
- Add TinyMCE to CPT metaboxes in 3.1?
- wysiwyg editor don´t export paragraph
- Custom post type for ‘staff’ versus using wordpress user profiles?
- What are the differences between custom post type and custom page templates?
- How to get custom post type label and singular label from its slug?
- Defining capabilities for custom post type
- Now can I group custom post types together?
- Does anyone have any frameworks to setup custom post types and related actions/filters?
- How to solve suspected memory issue in custom WordPress loop?
- Query multiple taxonomy in Custom Post Type
- automatically create taxonomy with same name as post title
- saving custom post type data to different table in wordpress
- Create Custom Post Type Archive Page with Sub Categories Navigation Sidebar
- register_post_type – rewrite / feeds, what’s it for?
- Ordering Custom Post Types with WP_Query
- Why are navigation items saved in the database?
- Filter posts with meta_query NOT IN where value has multiple values
- How to show the archive / post type description on Single templates
- Show listings from Impress Listing plugin in random order using taxonomy and terms
- Can’t edit custom post type
- redirecting improperly after updating custom taxonomy term when referring from CPT edit page
- Deleting Custom Posts & Meta Data on Uninstall
- I’d like to cycle through existing posts in a post type, showing one per day ordered by title, and starting over when the last is reached
- Why is my site using index.php instead of archive?
- WooCommerce Customer Role Delete Custom Post Type
- Options page – dropdown of users
- Addition of custom option panel crashes Media Library & Admin Area
- Meta Data for Custom Post Type not saving
- Remove “show sharing buttons” metabox Jetpack from custom post type
- How can I add a filter to a particular post format?
- Serial Number Delivery System Using WordPress
- Custom post type causes php-error in php version 5.2.17
- How do you make a custom post type items automatically delete items 3 months after publication?
- Associate page w/ specific single post template?
- Custom Post Type Metadata Not Saving
- get_post_meta is not working inside shortcode
- Custom Meta Box Causing Error: “Are you sure you want to do this? Please try again.”
- Iterating through Object Array to customise display of full custom taxonomy for custom post type
- When I choose category from dropdown then everything working fine.But in backend it checked only child not parent [closed]
- Keep getting logged out
- Enable comments on custom page type – option not showing in “customize” for theme
- How to Query in WordPress which shows Alphabetic Posts?
- Create query for both custom post type and category
- Using breadcrumb to return from single-page to list
- How can I lock specific posts (cpt’s) from editing by anyone other than ADMINS
- Why do I need to register my custom post type a second time when flushing rewrite rules?
- How do I Query 2 Custom Post Types?
- Function to erase every post from a taxonomy
- Building a Data Intensive Website with WordPress
- Change permalink for custom post type?
- Use Author Ids or Names to echo different output inside loop
- Truncate custom post type content
- WordPress custom post type numeric pagination with ajax
- How to make an API call to a custom post type but filtering by meta value?
- Settings -> Reading -> Posts Page ->Blog — is not working in my website
- Does non-content posts have a negative impact on SEO?
- Sudden 404 pages on product category archives
- Display Custom Field or Custom Taxonomy in front page /post/product
- Update post status from “publish” to “trash” prior to year 2018
- Simple way to hide\show an announcement (just a div) on homepage?
- Create Custom page with custom domain
- WP_Query for custom taxonomies showing posts from non-specified terms?
- Archive for custom taxonomy
- How can we display full post on home page rather than excerpt
- Rewrite of Custom Post Type doesn’t work with dynamic data
- WooCommerce change
- Custom post types & Advanced Custom Fields code is not working
- Working with Custom Post Type
- Question on templates
- What is WordPress’ custom post type ‘Logs’?
- Custom taxanomy and custom post type – pagination leads to 404
- How can I load Template file from wordpress plugin
- Getting all custom post taxonomies and exhibiting only part of them
- Author archive custom posts only?
- update a posts of other custom post type
- How to return custom posts in loop?
- Custom post type AND custom taxonomy are not connected
- How to delete comma from the end of results? [closed]
- How can i call a custom method on submission of a custom plugin post type?
- Front end page submission form does not attach custom post type
- Pagination custom post types outside loop
- How do I get a nested query to only display content that the main query outputed
- Get post id of permalink for a specific custom post type?
- Displaying custom post types with taxonomy
- Using one custom taxonomy.php for two custom taxonomies?
- If you’re calling a dynamic css inline style does that div have to be in the loop?
- If i have custom post type with 5 custom fields do i have to create a new loop to reference each one?
- Add taxonomy to custom post type archive
- Custom post type – permalink
- How to show animal lineage/pedigree in WordPress?
- WP_Query arguments: Loop through custom post type – get all entries except excluded meta_key?
- Order custom post type is beign ignored
- How do i get the taxonomy term name on the CPT archive page?
- is this a bug or not?
- How do I target a links only in a custom post type and only in the p tag?