Created
January 5, 2019 09:50
-
-
Save Tsunamijaan/570503ff05c4e9dd0876598b8812b0fd to your computer and use it in GitHub Desktop.
How to activate option tree in wordpress theme
This file contains hidden or 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
add_filter( 'ot_show_pages', '__return_false' ); | |
add_filter( 'ot_show_new_layout', '__return_false' ); | |
add_filter( 'ot_theme_mode', '__return_true' ); | |
include_once( 'option-tree/ot-loader.php' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment