This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Disable duotone | |
add_filter( | |
'block_editor_settings', | |
function ($editor_settings) { | |
$editor_settings['__experimentalFeatures']['color']['customDuotone'] = false; | |
$editor_settings['__experimentalFeatures']['color']['duotone'] = false; | |
return $editor_settings; | |
} | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generate Parent/Child Page Menus | |
* @link https://codex.wordpress.org/Function_Reference/wp_list_pages | |
*/ | |
function print_menu_child_pages(){ | |
$children = '<nav class="nav-children nav-section"><ul id="menu-section">'; | |
global $post; |