/ Published in: PHP
Disables the design editor in the VE when using a child theme.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php add_action('headway_setup_child_theme', 'disable_design_editor'); function disable_design_editor() { remove_theme_support('headway-design-editor'); }