/**
  * Front-end display of widget.
  *
  * @see WP_Widget::widget()
  *
  * @param array $args     Widget arguments.
  * @param array $instance Saved values from database.
  */
 public function widget($args, $instance)
 {
     $title = isset($instance['title']) ? $instance['title'] : '';
     echo $args['before_widget'];
     if (!empty($title)) {
         echo $args['before_title'] . $title . $args['after_title'];
     }
     echo catchadaptive_get_social_icons();
     echo $args['after_widget'];
 }
예제 #2
0
 * The Header Right Sidebar containing the header right widget area
 *
 * @package Catch Themes
 * @subpackage Catch Adaptive
 * @since Catch Adaptive 0.1
 */
?>

<?php 
/** 
 * catchadaptive_before_header_sidebar hook
 */
do_action('catchadaptive_before_header_sidebar');
if ('' != ($catchadaptive_social_icons = catchadaptive_get_social_icons())) {
    ?>
 
		<aside class="sidebar sidebar-header widget-area">
			<section class="widget widget_catchadaptive_social_icons" id="header-toggle-social-icons">
				<div class="widget-wrap">
					<?php 
    echo catchadaptive_get_social_icons();
    ?>
				</div>
			</section>
		</aside><!-- .sidebar .header-sidebar .widget-area -->
	<?php 
}
/** 
 * catchadaptive_after_header_sidebar hook
 */
do_action('catchadaptive_after_header_sidebar');