Version Description
- Added license tag to the readme file.
Download this release
Release Info
Developer | vaakash |
Plugin | Shortcoder |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0 to 3.0.1
- readme.txt +7 -1
- shortcoder.php +4 -3
readme.txt
CHANGED
@@ -4,9 +4,10 @@ Author URI: http://www.aakashweb.com/
|
|
4 |
Plugin URI: http://www.aakashweb.com/wordpress-plugins/shortcoder/
|
5 |
Tags: shortcode, ads, adsense, advertising, bookmark, bookmarking, bookmarks, custom, embed, feed, feeds, rss, flash, html, image, images, javascript, jquery, link, links, media, page, pages, youtube, plugin, post, posts, share, social, social bookmarking, form, template, video, yahoo
|
6 |
Donate link: http://bit.ly/scdonate
|
|
|
7 |
Requires at least: 2.5
|
8 |
Tested up to: 3.4
|
9 |
-
Stable tag: 3.0
|
10 |
|
11 |
Create custom "Shortcodes" with HTML, Javascript snippets stored in it and use that shortcode within posts and pages. Check the demo video.
|
12 |
|
@@ -35,6 +36,8 @@ Shortcoder is a plugin which allows to create a custom shortcode and store HTML,
|
|
35 |
* Globally disable the shortcode when not needed.
|
36 |
* Can disable the shortcode, showing it to the admins.
|
37 |
|
|
|
|
|
38 |
= Resources =
|
39 |
|
40 |
* [Documentation](http://www.aakashweb.com/wordpress-plugins/shortcoder/)
|
@@ -80,6 +83,9 @@ For more FAQs please visit the [Plugin homepage](http://www.aakashweb.com/faqs/s
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
83 |
= 3.0 =
|
84 |
* Plugin code rewritten from scratch.
|
85 |
* Shortcode syntax is changed.
|
4 |
Plugin URI: http://www.aakashweb.com/wordpress-plugins/shortcoder/
|
5 |
Tags: shortcode, ads, adsense, advertising, bookmark, bookmarking, bookmarks, custom, embed, feed, feeds, rss, flash, html, image, images, javascript, jquery, link, links, media, page, pages, youtube, plugin, post, posts, share, social, social bookmarking, form, template, video, yahoo
|
6 |
Donate link: http://bit.ly/scdonate
|
7 |
+
License: GPLv2 or later
|
8 |
Requires at least: 2.5
|
9 |
Tested up to: 3.4
|
10 |
+
Stable tag: 3.0.1
|
11 |
|
12 |
Create custom "Shortcodes" with HTML, Javascript snippets stored in it and use that shortcode within posts and pages. Check the demo video.
|
13 |
|
36 |
* Globally disable the shortcode when not needed.
|
37 |
* Can disable the shortcode, showing it to the admins.
|
38 |
|
39 |
+
Check out the [live working demo](http://www.aakashweb.com/resources/pages/demos/shortcoder/) in this page.
|
40 |
+
|
41 |
= Resources =
|
42 |
|
43 |
* [Documentation](http://www.aakashweb.com/wordpress-plugins/shortcoder/)
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 3.0.1 =
|
87 |
+
* Added license tag to the readme file.
|
88 |
+
|
89 |
= 3.0 =
|
90 |
* Plugin code rewritten from scratch.
|
91 |
* Shortcode syntax is changed.
|
shortcoder.php
CHANGED
@@ -2,10 +2,11 @@
|
|
2 |
/*
|
3 |
Plugin Name: Shortcoder
|
4 |
Plugin URI: http://www.aakashweb.com
|
5 |
-
Description: Shortcoder is a plugin which allows to create a custom shortcode and store HTML, Javascript and other snippets in it. So if that shortcode is used in any post or pages, then the code stored in the shortcode get exceuted in that place.
|
6 |
Author: Aakash Chakravarthy
|
7 |
-
Version: 3.0
|
8 |
Author URI: http://www.aakashweb.com/
|
|
|
9 |
*/
|
10 |
|
11 |
if(!defined('WP_CONTENT_URL')) {
|
@@ -14,7 +15,7 @@ if(!defined('WP_CONTENT_URL')) {
|
|
14 |
$sc_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
15 |
}
|
16 |
|
17 |
-
define('SC_VERSION', '3.0');
|
18 |
define('SC_AUTHOR', 'Aakash Chakravarthy');
|
19 |
define('SC_URL', $sc_url);
|
20 |
|
2 |
/*
|
3 |
Plugin Name: Shortcoder
|
4 |
Plugin URI: http://www.aakashweb.com
|
5 |
+
Description: Shortcoder is a plugin which allows to create a custom shortcode and store HTML, Javascript and other snippets in it. So if that shortcode is used in any post or pages, then the code stored in the shortcode get exceuted in that place. You can create a shortcode for Youtube videos, adsense ads, buttons and more. <a href="http://www.youtube.com/watch?v=GrlRADfvjII" title="Shortcoder demo video" target="_blank">Check out the demo video</a>.
|
6 |
Author: Aakash Chakravarthy
|
7 |
+
Version: 3.0.1
|
8 |
Author URI: http://www.aakashweb.com/
|
9 |
+
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
if(!defined('WP_CONTENT_URL')) {
|
15 |
$sc_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
16 |
}
|
17 |
|
18 |
+
define('SC_VERSION', '3.0.1');
|
19 |
define('SC_AUTHOR', 'Aakash Chakravarthy');
|
20 |
define('SC_URL', $sc_url);
|
21 |
|