Example #1
0
>
	
		<div id="layout">
		
			<div id="header">

				<div id="header-layout-2">

					<div id="header-holder-2">

						<?php 
// Menu Secondary
st_menu_secondary();
// Icons the Social
if (function_exists('st_icons_social')) {
    st_icons_social();
}
?>

						<div class="clear"><!-- --></div>

					</div><!-- #header-holder-2 -->

				</div><!-- #header-layout-2 -->

				<div id="header-layout">

					<div id="header-holder">

						<div id="logo" class="div-as-table">
							<div>
function widget_social_icons_multi($args, $vars = array())
{
    extract($args);
    $widget_number = (int) str_replace('social_icons-multi-', '', @$widget_id);
    $options = get_option('widget_social_icons_multi');
    if (!empty($options[$widget_number])) {
        $vars = $options[$widget_number];
    }
    $title = $vars['title'];
    // Make a custom $before_widget
    $before_widget = '<div class="widget widget-social_icons">';
    // Output
    echo $before_widget;
    if (!empty($vars['title'])) {
        echo $before_title . $title . $after_title;
    }
    st_icons_social();
    ?>

				<div class="clear"><!-- --></div>

			<?php 
    echo $after_widget;
}