PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
widgets
<?php class deep_youtube_widget extends WP_Widget{ function __construct(){ $params = array('description'=> 'Youtube Box','name'=> 'Webnus - Youtube'); parent::__construct('deep_youtube_widget', '', $params); } public function form($instance){ extract($instance); ?> <p><label for="<?php echo esc_attr( $this->get_field_id('title') ) ?>"><?php esc_html_e('Title:','deep') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ) ?>" name="<?php echo esc_attr( $this->get_field_name('title') ) ?>" value="<?php if( isset($title) ) echo esc_attr($title); ?>" /></p> <p><label for="<?php echo esc_attr( $this->get_field_id('id') ) ?>"><?php esc_html_e('Channel Name or ID:','deep') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('id') ) ?>" name="<?php echo esc_attr( $this->get_field_name('id') ) ?>" value="<?php if( isset($id) ) echo esc_attr($id); ?>" /> </p> <?php } public function widget($args, $instance){ extract($args); extract($instance); echo '' . $before_widget; if(!empty($title)) echo '' . $before_title.esc_html($title).$after_title; $data_channel = (substr($id,0,2) == "UC") ? 'data-channelid' : 'data-channel'; ?> <script src="https://apis.google.com/js/platform.js" async defer></script> <div class="g-ytsubscribe" <?php echo $data_channel ?>="<?php echo esc_attr($id); ?>" data-layout="full" data-count="default"></div> <?php echo '' . $after_widget; } } add_action('widgets_init', 'register_deep_youtube'); function register_deep_youtube(){ register_widget('deep_youtube_widget'); }
[+]
..
[-] daily-post.php
[edit]
[-] latest-posts.php
[edit]
[-] about.php
[edit]
[-] testimonial.php
[edit]
[-] socialnetworks.php
[edit]
[-] colorful-categories.php
[edit]
[-] googleplus.php
[edit]
[-] recent-posts.php
[edit]
[-] recently-active-members.php
[edit]
[-] newsslider.php
[edit]
[-] minislideshow.php
[edit]
[-] community-statistics.php
[edit]
[-] popular-posts.php
[edit]
[-] youtube.php
[edit]
[-] widgets-init.php
[edit]
[-] flickr.php
[edit]
[-] widget-tabs.php
[edit]
[-] subscribe.php
[edit]
[-] facebook.php
[edit]
[-] sermon-categories.php
[edit]
[-] popular-recipe.php
[edit]
[-] advert.php
[edit]
[-] latest-review.php
[edit]
[-] deep-woocommerce-layered-nav.php
[edit]
[-] instagram.php
[edit]
[-] login.php
[edit]
[-] copyrighttext.php
[edit]
[-] woocommerce-header-cart.php
[edit]
[-] last_comments.php
[edit]