Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Tsunamijaan/570503ff05c4e9dd0876598b8812b0fd to your computer and use it in GitHub Desktop.
Save Tsunamijaan/570503ff05c4e9dd0876598b8812b0fd to your computer and use it in GitHub Desktop.
How to activate option tree in wordpress theme
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