Have you ever tried the functions described here? It seems to be exactly what you’re looking after.
Here’s a slightly variation of the function for reference:
// Run only when editing a page
// For new pages load-page-new.php should be used
// See: http://core.trac.wordpress.org/browser/tags/3.5.1/wp-admin/admin.php#L217
add_action( 'load-page.php', 'hide_tinyeditor_wp' );
function hide_tinyeditor_wp() {
// Not really necessary, but just in case
if( !isset( $_GET['post'] ) )
return;
$template = get_post_meta( $_GET['post'] , '_wp_page_template', true );
if($template_file == 'specific-template.php'){ // edit the template name
remove_post_type_support('page', 'editor');
}
}
Related Posts:
- Disable emojicons introduced with WP 4.2
- No filter of code on switch from html to visual editor, how?
- WordPress 3.9 – Trouble Editing TinyMCE 4.0
- Modify links when inserted by WYSIWYG editor
- Is there a way to add another row to the tinyMCE kitchen sink toggle?
- Completely strip any hidden formatting when pasting into TinyMCE
- Tiny MCE editor stripping xlink:href parameter from SVG USE tag
- Include a page template along with add_theme_support()
- How can I filter Microsoft Word gunk from pasted content?
- Am I using the right hook for removing quicktags on the admin TinyMCE?
- Changing document title only on a custom page template
- How Can I Have A URL Changed Based on the Originating URL?
- How do I add a listbox to the TinyMCE editor?
- When adding buttons to the tinyMCE editor, how do I make them wrap to the next line and/or display in the “Kitchen Sink” area?
- How do I hide the current page’s title?
- Adding TinyMCE buttons without removing plugin buttons?
- Create Page Template by hook programatically in Functions.php in WP 5.8.1
- How to customize the “Insert/edit link” popup box?
- Adding Filter | Page Title | Template | Why the_title affecting on menu?
- What action/filter can be used for modifying the page to be rendered?
- wp_editor customization
- How to use a TinyMCE filter?
- Remove action added from class
- How to remove a filter that is an anonymous object?
- WordPress hooks/filters insert before content or after title
- How to add defer=”defer” tag in plugin javascripts?
- add_action(), add_filter() before or after function
- apply_filters(‘the_content’, $content) vs do_shortcode($content)
- How do filters and hooks really work in PHP
- Trouble understanding apply_filters()
- What is the very earliest action hook you can call?
- How would one modify the filtering Gutenberg applies to pasted content?
- How can I modify the WordPress default widget output?
- Add custom options to the wplink dialog
- Remove classes from body_class
- what is __return_false in filters
- Explanation for apply_filters function and its variables
- Gutenberg: Is there a way to know if current block is inside InnerBlocks?
- How to reorder billing fields in WooCommerce Checkout template? [closed]
- Insert HTML just after tag
- the_content and is_main_query
- Changing WooCommerce Display Price Based on User Role & Category [closed]
- How to add a custom CSS class to core blocks in Gutenberg editor?
- How to show page content in feed?
- wp_headers vs send_headers. When to use each?
- Filter any HTTP request URI?
- How to Pass External Variables to Filters/Actions
- How to filter users on admin users page by custom meta field?
- Filter by one custom field, order by another?
- Not able to change wp_title using add_filter
- How can I load a page template from a plugin?
- How to appending to the_content using add_filter with custom post type?
- Query WP REST API v2 by multiple meta keys
- Sanitize and data validation with apply_filters() function
- How to modify posts_where filter only for the search query
- How to hook a filter to catch get_post_meta when alternate a custom field output?
- How to get shortcode’s input values inside a filter?
- Removing Image and Caption Dimension Attributes
- How to wrap oEmbed-embedded video in DIV tags inside the_content?
- How to bulk delete all users with no posts?
- How many filter/action hooks are healthy?
- Changing JPEG compression depending on image size
- How to add filter with 2 args?
- Why is javascript allowed in my post content?
- How to use update_{$meta_type}_metadata filter to modify meta value
- How to wrap an element around an iframe or embed in content automatically?
- Filter specific shortcode output?
- WordPress Internal @ Mentions
- How to add headers to outgoing email?
- Earliest hook to reliably get $post/$posts
- Insert new element to array with add_filter
- LESS CSS enqueue_style with add_filter to change rel attribute
- Is it possible to filter comments in a post so a user can only see the comments they have written?
- How to pass/get data to/from the WooCommerce data-product_variations object?
- Remove Editor From Homepage
- How to modify Contact Form 7 Success/Error Response Output [closed]
- Where to hook into post content?
- What does (10, 2) mean when used with add_filter
- Filter translations (gettext strings) on specific admin pages
- Define custom Page Template without its own .php file
- Filter username field on registration for profanity and unwanted words
- Clarification on filters and hooks
- remove_filter( ‘the_content’, ‘wpautop’ ); only for certain post types
- At what priority does add_filter overwrite core functions?
- Valid characters for actions, hooks and filters
- is it possible to add “extra” table nav to edit-tags.php screens?
- Advanced Custom Fields and Yoast SEO keyword analysis [closed]
- Adding a filter to qTranslate to change display of language chooser
- Insert Custom HTML After Shortcode
- How to hook into unregistering a widget instance?
- How to check if a hook is hooked or not?
- How can I extend the Gutenberg table block transform to allow colspans/rowspans on pasted table elements?
- How to add filter to __() and _e()?
- Remove description from on Home
- Editing ‘Password Reset’ E-mail
- Is it possible to use object in add_action?
- add_filter and changing output captions of image gallery
- Passing Additional Parameters to add_filter Callable
- What hook do I use to edit the post statuses option in admin?
- How can I add an Author filter to the Media Library?