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
if (function_exists('register_sidebar')) { | |
register_sidebar(array( | |
'name' => 'Header Widget', | |
'id' => 'header-widget', | |
'description' => 'This is a widgetized area in the right side of the header.', | |
'before_widget' => '<div id="%1$s" div class="widget">', | |
'after_widget' => '</div>', | |
'before_title' => '<h3>', | |
'after_title' => '</h3>' | |
)); |
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( 'wp_nav_menu_items', 'woo_custom_add_sociallink_navitems', 10, 2 ); | |
function woo_custom_add_sociallink_navitems ( $items, $args ) { | |
global $woo_options; | |
if ( $args->theme_location == 'primary-menu' ) { | |
$template_directory = get_template_directory_uri(); | |
$profiles = array( |
NewerOlder