Created
January 18, 2015 16:34
-
-
Save shahadat014/97b6dddefdc36c99bad1 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