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
/** | |
* Declare Sensei support | |
* | |
* This is needed to hide the Sensei theme compatibility notice your admin dashboard. | |
*/ | |
add_action( 'after_setup_theme', 'divi_sensei_support' ); | |
function divi_sensei_support() { | |
add_theme_support( 'sensei' ); | |
} |