Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Disable wordpress editor - gutenberg on Post type post

// Disable wordpress editor - gutenberg on Post type post 
add_filter('use_block_editor_for_post_type', 'disable_gutenberg', 10, 2);
function disable_gutenberg($current_status, $post_type)
{
    // Use your post type key instead of 'product'
    if ($post_type === 'post') return false;
    return $current_status;
}
Comment

PREVIOUS NEXT
Code Example
Php ::  
::  
Php ::  
::  
::  
Php ::  
Php ::  
Php :: my vscode extension prettier doesnot work for php code 
Php ::  
::  
::  
Php ::  
::  
:: php day of week full name 
:: js unserialize 
::  
Php ::  
Php ::  
::  
Php :: remove last character from string php 
::  
::  
::  
:: the requested php extension bcmath is missing from your system 
Php ::  
Php ::  
::  
Php ::  
Php ::  
::  
ADD CONTENT
Topic
Content
Source link
Name
1+5 =