Changeset 1345919
- Timestamp:
- 02/08/2016 02:54:35 PM (10 years ago)
- Location:
- youtube-subscriber
- Files:
-
- 9 added
- 2 edited
-
assets/screenshot-3.png (added)
-
tags/1.0 (added)
-
tags/1.0/readme.txt (added)
-
tags/1.0/youtube-subscriber.php (added)
-
trunk/image (added)
-
trunk/image/official-youtube-logo-tile_25x25.png (added)
-
trunk/js (added)
-
trunk/js/newbuttons.js (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/shortcodes.php (added)
-
trunk/youtube-subscriber.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
youtube-subscriber/trunk/readme.txt
r1306223 r1345919 5 5 Requires at least: 3.5.1 6 6 Tested up to: 4.4. 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 16 16 1. 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. 17 17 2. Enable the plugin from the *Plugins* menu in WordPress. 18 3. Now the YouTube Subscriber widget is available18 3. Now the YouTube Subscriber widget and shortcode are available. 19 19 20 20 = Usage = … … 29 29 8. Hit save. 30 30 31 YouTube Subscriber can be created using shortcode: 32 * Shortcode parameter - nickname ([youtube-subscriber channelname=""]) 33 1. Click button YouTube Subscriber in visual editor. 34 2. Enter your YouTube nickname in the pop-up. 35 3. Hit Ok. 36 4. Click Publish or Update. 37 31 38 == Screenshots == 32 39 33 40 1. YouTube Subscriber widget settings 34 41 2. Widget on page. 42 3. Shotcode. 35 43 36 44 == Changelog == 37 45 46 = 1.1 = 47 48 * Added shortcode [youtube-subscriber channelname=""]. 49 * Added a shortcode button to the visual editor toolbar. 50 38 51 = 1.0 = 52 53 -
youtube-subscriber/trunk/youtube-subscriber.php
r964372 r1345919 4 4 Plugin URI: 5 5 Description: Create widget with form to subscribe to YouTube channel 6 Version: 1. 06 Version: 1.1 7 7 Author: Web4pro 8 8 Author URI: http://www.web4pro.net/ … … 10 10 11 11 add_action('widgets_init', create_function('', 'register_widget( "YouTube_Subscriber" );')); //Widget registration 12 13 include_once('shortcodes.php'); //include shortcodes 12 14 13 15 class YouTube_Subscriber extends WP_Widget //Start widget class
Note: See TracChangeset
for help on using the changeset viewer.