Changeset 957465
- Timestamp:
- 07/30/2014 03:43:10 PM (12 years ago)
- Location:
- proper-shortcodes/trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
README.md (modified) (1 diff)
-
proper-shortcodes.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
proper-shortcodes/trunk
-
Property
svn:ignore
set to
.git
.gitignore
.gitattributes
README.md
-
Property
svn:ignore
set to
-
proper-shortcodes/trunk/README.md
r957035 r957465 4 4 5 5 [WordPress repo plugin here](https://wordpress.org/plugins/proper-shortcodes/) 6 -
proper-shortcodes/trunk/proper-shortcodes.php
r957035 r957465 23 23 return site_url(); 24 24 } 25 25 26 add_shortcode('site_url', 'proper_shortcode_site_url'); 26 27 add_shortcode('p_site_url', 'proper_shortcode_site_url'); … … 30 31 } 31 32 33 add_shortcode( 'home_url', 'proper_shortcode_home_url' ); 32 34 add_shortcode( 'p_home_url', 'proper_shortcode_home_url' ); 33 add_shortcode( 'home_url', 'proper_shortcode_home_url' );34 35 35 36 … … 344 345 add_shortcode( 'p_sitemap', 'proper_shortcode_sitemap' ); 345 346 347 346 348 /** 347 349 * Outputs a simple <hr> tag with styles, if desired … … 356 358 357 359 add_shortcode( 'hr', 'proper_shortcode_hr' ); 360 -
proper-shortcodes/trunk/readme.txt
r957035 r957465 17 17 This plugin will add all of the following shortcodes: 18 18 19 **[p_site_url]** 20 **[site_url]** 21 **[p_home_url]** 22 **[home_url]** 19 **[p_site_url]** **[site_url]** **[p_home_url]** **[home_url]** 23 20 24 21 Displays the site URL or home URL. Useful for adding links to pages on the site without hard-coding in the domain. … … 99 96 - "style" is straight CSS that's added to an inline attribute 100 97 101 == Screenshots ==102 103 1. Pull quote in action104 2. Child pages, Documents, and Post list105 106 98 == Installation == 107 99
Note: See TracChangeset
for help on using the changeset viewer.