Answers for "how to delete theme wordpress"

PHP
0

wordpress disable theme editor

// On wp-config.php
define( 'DISALLOW_FILE_EDIT', true );
Posted by: Guest on June-05-2020
0

Remove theme update

function custom_remove_dashboard_widgets() {
    remove_meta_box('themify_news', 'dashboard', 'normal');   //Themify News 
    remove_meta_box('themify_updates', 'dashboard', 'normal');   //Themify Updates 
}
add_action('admin_init', 'custom_remove_dashboard_widgets');
Posted by: Guest on May-16-2021

Browse Popular Code Answers by Language