-
-
Save arioch1984/14e5549f5f26ac862adb to your computer and use it in GitHub Desktop.
WP - Add to Sidebar
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
<?php | |
add_action('after_setup_theme', 'cur_setup_theme'); | |
function cur_setup_theme(){ | |
if(!get_option('cur_widgets_installed',false)){ | |
$add_to_sidebar = 'primary-navigation'; | |
// $widgets is an array of widget id's | |
$widgets = array( | |
'search', | |
); | |
cur_add_widgets_to_sidebar( $add_to_sidebar, $widgets ); | |
update_option('cur_widgets_installed',true); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment