Import settings from another theme
Well, you can read the core code to find the actions, or you can use a debugging method to find the one you need. Put into wp-config.php: define(‘WP_DEBUG’, true); define( ‘WP_DEBUG_LOG’, true ); Then make a mu-plugin file containing: <?php add_action( ‘all’, ‘_action_printer’ ); function _action_printer( $a ){ if (strpos(‘gettext’, $a) === false && strpos(‘escape’, … Read more