Plugin Directory

Changeset 1345919


Ignore:
Timestamp:
02/08/2016 02:54:35 PM (10 years ago)
Author:
WEB4PRO_co
Message:

version 1.0

Location:
youtube-subscriber
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • youtube-subscriber/trunk/readme.txt

    r1306223 r1345919  
    55Requires at least: 3.5.1
    66Tested up to: 4.4.
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    16161. Upload or extract the `youtube subscriber` folder to your site's `/wp-content/plugins/` directory. You can also use the *Add new* option found in the *Plugins* menu in WordPress.
    17172. Enable the plugin from the *Plugins* menu in WordPress.
    18 3. Now the YouTube Subscriber widget is available
     183. Now the YouTube Subscriber widget and shortcode are available.
    1919
    2020= Usage =
     
    29298. Hit save.
    3030
     31YouTube Subscriber can be created using shortcode:
     32* Shortcode parameter - nickname ([youtube-subscriber channelname=""])
     331. Click button YouTube Subscriber in visual editor.
     342. Enter your YouTube nickname in the pop-up.
     353. Hit Ok.
     364. Click Publish or Update.
     37
    3138== Screenshots ==
    3239
    33401. YouTube Subscriber widget settings
    34412. Widget on page.
     423. Shotcode.
    3543
    3644== Changelog ==
    3745
     46= 1.1 =
     47
     48* Added shortcode [youtube-subscriber channelname=""].
     49* Added a shortcode button to the visual editor toolbar.
     50
    3851= 1.0 =
     52
     53
  • youtube-subscriber/trunk/youtube-subscriber.php

    r964372 r1345919  
    44Plugin URI:
    55Description: Create widget with form to subscribe to YouTube channel
    6 Version: 1.0
     6Version: 1.1
    77Author: Web4pro
    88Author URI: http://www.web4pro.net/
     
    1010
    1111add_action('widgets_init', create_function('', 'register_widget( "YouTube_Subscriber" );')); //Widget registration
     12
     13include_once('shortcodes.php'); //include shortcodes
    1214
    1315class YouTube_Subscriber extends WP_Widget //Start widget class
Note: See TracChangeset for help on using the changeset viewer.