PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
stadlercattaneo
/
wp-content
/
themes
/
Karma
/
framework
<?php /* --------------------------------------- SOCIAL MEDIA WIDGET --------------------------------------- */ class SocialMediaWidget extends WP_Widget { function SocialMediaWidget() { $widget_ops = array( 'classname' => 'social_widget', 'description' => __('Link to your RSS feed and Social Media accounts.', 'truethemes_localize') ); $this->WP_Widget('social_networks', __('CUSTOM - Social Networks', 'truethemes_localize'), $widget_ops); } function widget($args, $instance) { extract($args); $title = apply_filters('widget_title', $instance['title']); $title_link = strip_tags($instance['title_link']); if (!empty($title_link)) { $title_page = get_post($title_link); } $networks['RSS'] = $instance['rss']; $networks['Twitter'] = $instance['twitter']; $networks['Facebook'] = $instance['facebook']; $networks['Email'] = $instance['email']; $networks['Flickr'] = $instance['flickr']; $networks['YouTube'] = $instance['youtube']; $networks['LinkedIn'] = $instance['linkedin']; $networks['Pinterest'] = $instance['pinterest']; $networks['FourSquare'] = $instance['foursquare']; $networks['Delicious'] = $instance['delicious']; $networks['Digg'] = $instance['digg']; $networks['Google +'] = $instance['google']; $networks['Dribbble'] = $instance['dribbble']; $networks['Skype'] = $instance['skype']; $display = $instance['display']; $vectorcheckbox = $instance['vectorcheckbox']; $social_title_checkbox = $instance['social_title_checkbox']; $colorcheckbox = $instance['colorcheckbox']; echo $before_widget; if (!empty($title)) {echo $before_title;} if (!empty($title_link)) { echo "<a href=\"" . get_permalink($title_page->ID) . "\">"; } if (empty($title)) { echo $title_page->post_title; } else { echo $title; } if (!empty($title_link)) { echo "</a>"; } if (!empty($title)) {echo $after_title;} ?> <ul class="social_icons<?php if( $vectorcheckbox && $vectorcheckbox == '1' ) {echo ' tt_vector_social_icons';} if( $colorcheckbox && $colorcheckbox == '1' ) {echo ' tt_vector_social_icons tt_vector_social_color';} if( $social_title_checkbox && $social_title_checkbox == '1' ) {echo ' tt_show_social_title';} if( empty($social_title_checkbox) ) {echo ' tt_no_social_title';} if( empty($vectorcheckbox) || empty($colorcheckbox) ) {echo ' tt_image_social_icons';} ?>"> <?php if (empty($networks['RSS'])): ?> <li><a href="<?php bloginfo('rss2_url');?>" class="rss" title="<?php _e('RSS Feed', 'truethemes_localize');?>"><?php _e('RSS', 'truethemes_localize');?></a></li> <?php else: ?> <li><a href="<?php echo $networks['RSS'];?>" class="rss" title="<?php _e('RSS Feed', 'truethemes_localize');?>"><?php _e('RSS', 'truethemes_localize');?></a></li> <?php endif;?> <?php foreach (array( "Twitter", "Facebook", "Email", "Flickr", "YouTube", "LinkedIn", "Pinterest", "FourSquare", "Delicious", "Digg", "Google +", "Dribbble", "Skype" ) as $network): ?> <?php if (!empty($networks[$network])):?> <li><a href="<?php echo $networks[$network];?>" class="<?php echo strtolower($network);?>" title="<?php echo $network;?>"><?php echo str_replace(" ", '', $network);?></a></li> <?php endif;endforeach;?> </ul> <?php echo $after_widget; } function update($new_instance, $old_instance) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['title_link'] = $new_instance['title_link']; $instance['rss'] = $new_instance['rss']; $instance['twitter'] = $new_instance['twitter']; $instance['facebook'] = $new_instance['facebook']; $instance['email'] = $new_instance['email']; $instance['flickr'] = $new_instance['flickr']; $instance['youtube'] = $new_instance['youtube']; $instance['linkedin'] = $new_instance['linkedin']; $instance['pinterest'] = $new_instance['pinterest']; $instance['foursquare'] = $new_instance['foursquare']; $instance['delicious'] = $new_instance['delicious']; $instance['digg'] = $new_instance['digg']; $instance['google'] = $new_instance['google']; $instance['dribbble'] = $new_instance['dribbble']; $instance['skype'] = $new_instance['skype']; $instance['display'] = $new_instance['display']; $instance['vectorcheckbox'] = strip_tags($new_instance['vectorcheckbox']); $instance['social_title_checkbox'] = strip_tags($new_instance['social_title_checkbox']); $instance['colorcheckbox'] = strip_tags($new_instance['colorcheckbox']); return $instance; } function form($instance) { $instance = wp_parse_args((array) $instance, array( 'title' => '', 'text' => '', 'title_link' => '' )); $title = strip_tags($instance['title']); $title_link = strip_tags($instance['title_link']); //define variables to prevent wp_debug error. $rss = $twitter = $facebook = $flickr = $youtube = $linkedin = $foursquare = $delicious = $digg = $google = $dribbble = $skype = $display = $vectorcheckbox = $social_title_checkbox = $colorcheckbox = ''; $rss = $instance['rss']; $twitter = $instance['twitter']; $facebook = $instance['facebook']; $email = $instance['email']; $flickr = $instance['flickr']; $youtube = $instance['youtube']; $linkedin = $instance['linkedin']; $pinterest = $instance['pinterest']; $foursquare = $instance['foursquare']; $delicious = $instance['delicious']; $digg = $instance['digg']; $google = $instance['google']; $dribbble = $instance['dribbble']; $skype = $instance['skype']; $display = $instance['display']; $vectorcheckbox = $instance['vectorcheckbox']; $social_title_checkbox = $instance['social_title_checkbox']; $colorcheckbox = $instance['colorcheckbox']; $text = format_to_edit($instance['text']); ?> <p><br /><?php _e('Please enter the full URL to each of your Social Media accounts below.<br /><br />Simply leave the field blank if you do not wish to display that Social Media service.', 'truethemes_localize'); ?></p><br /> <p style="color:#999;"> <input id="<?php echo $this->get_field_id('vectorcheckbox'); ?>" name="<?php echo $this->get_field_name('vectorcheckbox'); ?>" type="checkbox" value="1" <?php checked( '1', $vectorcheckbox ); ?> /> <label for="<?php echo $this->get_field_id('vectorcheckbox'); ?>"><?php _e('Check this box to switch to clean-style retina-ready vector icons.', 'truethemes_localize'); ?></label> </p><br /> <p style="color:#999;"> <input id="<?php echo $this->get_field_id('colorcheckbox'); ?>" name="<?php echo $this->get_field_name('colorcheckbox'); ?>" type="checkbox" value="1" <?php checked( '1', $colorcheckbox ); ?> /> <label for="<?php echo $this->get_field_id('colorcheckbox'); ?>"><?php _e('Check this box to switch to colored retina-ready vector icons.', 'truethemes_localize'); ?></label> </p><br /> <p style="color:#999;"> <input id="<?php echo $this->get_field_id('social_title_checkbox'); ?>" name="<?php echo $this->get_field_name('social_title_checkbox'); ?>" type="checkbox" value="1" <?php checked( '1', $social_title_checkbox ); ?> /> <label for="<?php echo $this->get_field_id('social_title_checkbox'); ?>"><?php _e('Check this box to display the social media name next to it\'s icon. (ie. "Twitter") ', 'truethemes_localize'); ?></label> </p><br /> <p><label for="<?php echo $this->get_field_id('title');?>"><?php _e('Title:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('title');?>" name="<?php echo $this->get_field_name('title');?>" type="text" value="<?php echo esc_attr($title);?>" /></p> <p><label for="<?php echo $this->get_field_id('title_link');?>"><?php _e('Title Link:', 'truethemes_localize');?></label> <?php wp_dropdown_pages(array( 'selected' => $title_link, 'name' => $this->get_field_name('title_link'), 'show_option_none' => __('None', 'truethemes_localize'), 'sort_column' => 'menu_order, post_title', 'id' => 'tt-social-widget-dropdown' //@since 4.0 )); ?> </p> <p><label for="<?php echo $this->get_field_id('rss'); ?>"><?php _e('RSS Feed:<br />(leave empty for default RSS Feed)', 'truethemes_localize'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('rss'); ?>" name="<?php echo $this->get_field_name('rss'); ?>" type="text" value="<?php echo esc_attr($rss); ?>" /></p> <p><label for="<?php echo $this->get_field_id('twitter');?>"><?php _e('Twitter:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('twitter');?>" name="<?php echo $this->get_field_name('twitter');?>" type="text" value="<?php echo esc_attr($twitter);?>" /></p> <p><label for="<?php echo $this->get_field_id('facebook');?>"><?php _e('Facebook:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('facebook');?>" name="<?php echo $this->get_field_name('facebook');?>" type="text" value="<?php echo esc_attr($facebook);?>" /></p> <p><label for="<?php echo $this->get_field_id('email');?>"><?php _e('Email Address:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('email');?>" name="<?php echo $this->get_field_name('email');?>" type="text" value="<?php echo esc_attr($email);?>" /></p> <p><label for="<?php echo $this->get_field_id('flickr');?>"><?php _e('Flickr:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('flickr');?>" name="<?php echo $this->get_field_name('flickr');?>" type="text" value="<?php echo esc_attr($flickr);?>" /></p> <p><label for="<?php echo $this->get_field_id('youtube');?>"><?php _e('Youtube:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('youtube');?>" name="<?php echo $this->get_field_name('youtube');?>" type="text" value="<?php echo esc_attr($youtube);?>" /></p> <p><label for="<?php echo $this->get_field_id('linkedin');?>"><?php _e('LinkedIn:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('linkedin');?>" name="<?php echo $this->get_field_name('linkedin');?>" type="text" value="<?php echo esc_attr($linkedin);?>" /></p> <p><label for="<?php echo $this->get_field_id('pinterest');?>"><?php _e('Pinterest:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('pinterest');?>" name="<?php echo $this->get_field_name('pinterest');?>" type="text" value="<?php echo esc_attr($pinterest);?>" /></p> <p><label for="<?php echo $this->get_field_id('foursquare');?>"><?php _e('FourSquare:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('foursquare');?>" name="<?php echo $this->get_field_name('foursquare');?>" type="text" value="<?php echo esc_attr($foursquare);?>" /></p> <p><label for="<?php echo $this->get_field_id('delicious');?>"><?php _e('Delicious:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('delicious');?>" name="<?php echo $this->get_field_name('delicious');?>" type="text" value="<?php echo esc_attr($delicious);?>" /></p> <p><label for="<?php echo $this->get_field_id('digg');?>"><?php _e('Digg:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('digg');?>" name="<?php echo $this->get_field_name('digg');?>" type="text" value="<?php echo esc_attr($digg);?>" /></p> <p><label for="<?php echo $this->get_field_id('google');?>"><?php _e('Google+:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('google');?>" name="<?php echo $this->get_field_name('google');?>" type="text" value="<?php echo esc_attr($google);?>" /></p> <p><label for="<?php echo $this->get_field_id('dribbble');?>"><?php _e('Dribbble:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('dribbble');?>" name="<?php echo $this->get_field_name('dribbble');?>" type="text" value="<?php echo esc_attr($dribbble);?>" /></p> <p><label for="<?php echo $this->get_field_id('skype');?>"><?php _e('Skype:', 'truethemes_localize');?></label> <input class="widefat" id="<?php echo $this->get_field_id('skype');?>" name="<?php echo $this->get_field_name('skype');?>" type="text" value="<?php echo esc_attr($skype);?>" /></p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("SocialMediaWidget");')); /* --------------------------------------- RECENT POSTS WIDGET --------------------------------------- */ class show_recent extends WP_Widget { function show_recent() { $widget_ops = array('classname' => 'show_recent', 'description' => __('Show your recent posts.','truethemes_localize')); $this->WP_Widget('show_recent', __('CUSTOM - Recent Posts','truethemes_localize'), $widget_ops); } function widget($args, $instance){ extract($args); //$options = get_option('custom_recent'); $title = apply_filters('widget_title', $instance['title']); $posts = $instance['posts']; echo $before_widget . $before_title . $title . $after_title; //GET the posts global $post; $exclude = B_getExcludedCats(); //@since 3.0.3 mod by denzel to use WP_Query class instead of get_posts, so that WPML works. $myposts = new WP_Query('posts_per_page=' . $posts . '&offset=0&cat=' . $exclude); //SHOW the posts if ( $myposts->have_posts() ) : while ( $myposts->have_posts() ) : $myposts->the_post(); //added strip_tags to solve a problem with code being displayed improperly. ?> <div class="footer_post"> <h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4> <?php //since version 2.6.5 development 7, remove shortcodes from content. $post_content = $post->post_content; $post_content = strip_shortcodes($post_content); ?> <?php if(empty($post_content)): //no post content, show <br/> tag for spacing ?> <br/> <?php else: //there is post content, show it. ?> <p><a href="<?php the_permalink() ?>"><?php echo substr(strip_tags($post_content), 0, 125); ?>...</a></p> <?php endif; ?> </div><!-- END footer_post --> <?php endwhile; endif; wp_reset_postdata();// we reset postdata to prevent comments appearing. echo $after_widget; } function update($newInstance, $oldInstance){ $instance = $oldInstance; $instance['title'] = strip_tags($newInstance['title']); $instance['posts'] = $newInstance['posts']; return $instance; } function form($instance){ echo '<p><label for="'.$this->get_field_id('title').'">' . __('Title:','truethemes_localize') . '</label><input class="widefat" id="'.$this->get_field_id('title').'" name="'.$this->get_field_name('title').'" type="text" value="'.$instance['title'].'" /></p>'; echo '<p><label for="'.$this->get_field_id('posts').'">' . __('Number of Posts:', 'truethemes_localize') . '</label><input class="widefat" id="'.$this->get_field_id('posts').'" name="'.$this->get_field_name('posts').'" type="text" value="'.$instance['posts'].'" /></p>'; echo '<input type="hidden" id="custom_recent" name="custom_recent" value="1" />'; } } add_action('widgets_init', create_function('', 'return register_widget("show_recent");')); /* --------------------------------------- CATEGORIES WIDGET --------------------------------------- */ class ka_custom_cats extends WP_Widget { function ka_custom_cats() { $widget_ops = array( 'classname' => 'widget_categories', 'description' => __( 'A list or dropdown of categories','truethemes_localize') ); $this->WP_Widget('categories', __('CUSTOM - Categories','truethemes_localize'), $widget_ops); } function widget( $args, $instance ) { extract( $args ); $title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Categories','truethemes_localize' ) : $instance['title'], $instance, $this->id_base); $c = $instance['count'] ? '1' : '0'; $h = $instance['hierarchical'] ? '1' : '0'; $d = $instance['dropdown'] ? '1' : '0'; echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; // Bring in excluded categories from options panel $pos_excluded = positive_exlcude_cats(); $pos_cats = $pos_excluded; $cat_args = array('orderby' => 'name', 'exclude' => $pos_cats, 'title_li' =>'', 'show_count' => $c, 'hierarchical' => $h); if ( $d ) { $cat_args['show_option_none'] = _e('Select Category','truethemes_localize'); wp_dropdown_categories(apply_filters('widget_categories_dropdown_args', $cat_args)); ?> <script type='text/javascript'> /* <![CDATA[ */ var dropdown = document.getElementById("cat"); function onCatChange() { if ( dropdown.options[dropdown.selectedIndex].value > 0 ) { location.href = "<?php echo home_url(); ?>/?cat="+dropdown.options[dropdown.selectedIndex].value; } } dropdown.onchange = onCatChange; /* ]]> */ </script> <?php } else { ?> <ul> <?php $cat_args['title_li'] = ''; wp_list_categories(apply_filters('widget_categories_args', $cat_args)); ?> </ul> <?php } echo $after_widget; } function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['count'] = !empty($new_instance['count']) ? 1 : 0; $instance['hierarchical'] = !empty($new_instance['hierarchical']) ? 1 : 0; $instance['dropdown'] = !empty($new_instance['dropdown']) ? 1 : 0; return $instance; } function form( $instance ) { //Defaults $instance = wp_parse_args( (array) $instance, array( 'title' => '') ); $title = esc_attr( $instance['title'] ); $count = isset($instance['count']) ? (bool) $instance['count'] :false; $hierarchical = isset( $instance['hierarchical'] ) ? (bool) $instance['hierarchical'] : false; $dropdown = isset( $instance['dropdown'] ) ? (bool) $instance['dropdown'] : false; ?> <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:','truethemes_localize' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p> <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>"<?php checked( $dropdown ); ?> /> <label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e( 'Show as dropdown','truethemes_localize' ); ?></label><br /> <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>"<?php checked( $count ); ?> /> <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e( 'Show post counts','truethemes_localize' ); ?></label><br /> <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hierarchical'); ?>" name="<?php echo $this->get_field_name('hierarchical'); ?>"<?php checked( $hierarchical ); ?> /> <label for="<?php echo $this->get_field_id('hierarchical'); ?>"><?php _e( 'Show hierarchy','truethemes_localize' ); ?></label></p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("ka_custom_cats");')); /* --------------------------------------- ARCHIVES WIDGET --------------------------------------- */ class ka_custom_archives extends WP_Widget { function ka_custom_archives() { $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s posts','truethemes_localize') ); $this->WP_Widget('archives', __('CUSTOM - Archives','truethemes_localize'), $widget_ops); } function widget( $args, $instance ) { extract($args); $c = $instance['count'] ? '1' : '0'; $d = $instance['dropdown'] ? '1' : '0'; $title = apply_filters('widget_title', empty($instance['title']) ? __('Archives','truethemes_localize') : $instance['title'], $instance, $this->id_base); $neg_excluded = B_getExcludedCats(); $neg_cats = $neg_excluded; echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; if ( $d ) { ?> <select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'> <option value=""><?php echo esc_attr(__('Select Month','truethemes_localize')); ?></option> <?php wp_get_archives(apply_filters('widget_archives_dropdown_args', array('type' => 'monthly', 'format' => 'option', 'show_post_count' => $c, 'cat' => $neg_cats))); ?> </select> <?php } else { ?> <ul> <?php wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c, 'cat' => $neg_cats))); ?> </ul> <?php } echo $after_widget; } function update( $new_instance, $old_instance ) { $instance = $old_instance; $new_instance = wp_parse_args( (array) $new_instance, array( 'title' => '', 'count' => 0, 'dropdown' => '') ); $instance['title'] = strip_tags($new_instance['title']); $instance['count'] = $new_instance['count'] ? 1 : 0; $instance['dropdown'] = $new_instance['dropdown'] ? 1 : 0; return $instance; } function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'count' => 0, 'dropdown' => '') ); $title = strip_tags($instance['title']); $count = $instance['count'] ? 'checked="checked"' : ''; $dropdown = $instance['dropdown'] ? 'checked="checked"' : ''; ?> <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:','truethemes_localize'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p> <p> <input class="checkbox" type="checkbox" <?php echo $count; ?> id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" /> <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Show post counts','truethemes_localize'); ?></label> <br /> <input class="checkbox" type="checkbox" <?php echo $dropdown; ?> id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>" /> <label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e('Display as a drop down','truethemes_localize'); ?></label> </p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("ka_custom_archives");')); /* --------------------------------------- Custom Menu Widget --------------------------------------- */ // This is a modified version of the default nav widget. We've manually added <ul></ul> tags to wrap the custom menu. class ka_custom_menu extends WP_Widget { function ka_custom_menu() { $widget_ops = array('classname' => 'widget_nav_menu', 'description' => __( 'Use this widget to add one of your custom menus as a widget.', 'truethemes_localize') ); $this->WP_Widget('nav_menu', __('Custom Menu', 'truethemes_localize'), $widget_ops); } function widget($args, $instance) { // Get menu $nav_menu = wp_get_nav_menu_object( $instance['nav_menu'] ); if ( !$nav_menu ) return; $instance['title'] = apply_filters('widget_title', $instance['title'], $instance, $this->id_base); echo $args['before_widget']; if ( !empty($instance['title']) ) echo $args['before_title'] . $instance['title'] . $args['after_title']; // added for valid code. (nav-unlister was needed for sub-nav) echo '<ul class="sub-menu">'; wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $nav_menu ) ); echo '</ul>'; echo $args['after_widget']; } function update( $new_instance, $old_instance ) { $instance['title'] = strip_tags( stripslashes($new_instance['title']) ); $instance['nav_menu'] = (int) $new_instance['nav_menu']; return $instance; } function form( $instance ) { $title = isset( $instance['title'] ) ? $instance['title'] : ''; $nav_menu = isset( $instance['nav_menu'] ) ? $instance['nav_menu'] : ''; // Get menus $menus = get_terms( 'nav_menu', array( 'hide_empty' => false ) ); // If no menus exists, direct the user to go and create some. if ( !$menus ) { echo '<p>'. sprintf( __('No menus have been created yet. <a href="%s">Create some</a>.'), admin_url('nav-menus.php') ) .'</p>'; return; } ?> <p> <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:','truethemes_localize') ?></label> <input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $title; ?>" /> </p> <p> <label for="<?php echo $this->get_field_id('nav_menu'); ?>"><?php _e('Select Menu:','truethemes_localize'); ?></label> <select id="<?php echo $this->get_field_id('nav_menu'); ?>" name="<?php echo $this->get_field_name('nav_menu'); ?>"> <?php foreach ( $menus as $menu ) { $selected = $nav_menu == $menu->term_id ? ' selected="selected"' : ''; echo '<option'. $selected .' value="'. $menu->term_id .'">'. $menu->name .'</option>'; } ?> </select> </p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("ka_custom_menu");')); ?>
[-] script-enqueue.php
[open]
[-] widgets.php
[open]
[+]
extended
[-] hooks.php
[open]
[-] custom-metaboxes.php
[open]
[+]
..
[-] site-options.php
[open]
[-] site-options-functions.php
[open]
[-] shortcodes.php
[open]
[+]
admin
[+]
truethemes
[-] theme-functions.php
[open]
[-] nav-output.php
[open]
[-] shortcodes-old.php
[open]
[+]
screenshots