Changeset 372721
- Timestamp:
- 04/13/2011 11:26:31 PM (15 years ago)
- Location:
- docs-auto-tags/trunk
- Files:
-
- 2 edited
-
docs-auto-tags.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docs-auto-tags/trunk/docs-auto-tags.php
r372706 r372721 4 4 Plugin URI: http://wordpress.org/extend/plugins/docs-auto-tags/ 5 5 Description: Assigns tags to posts containing specific text strings, handy for filtering within the loop. A gift to @docrock from @johnleblanc to help keep Instagr.am image posts out of the mrdocrock.com homepage loop April, 2011. 6 Version: 0. 26 Version: 0.3 7 7 Author: John LeBlanc 8 8 Author URI: http://johnleblanc.com … … 44 44 45 45 // intro plugin settings to WP 46 add_action('admin_init', ' docs_autotags_options_init' );46 add_action('admin_init', 'jpl_docs_autotags_options_init' ); 47 47 function jpl_docs_autotags_options_init() { 48 48 register_setting( 'jpl_docs_autotags_options', 'docs_autotags' ); -
docs-auto-tags/trunk/readme.txt
r372705 r372721 11 11 == Description == 12 12 13 Assigns tags to posts containing specific text strings, handy for filtering within the loop. A gift to @docrock from @johnleblancto help keep Instagr.am image posts out of the mrdocrock.com homepage loop April, 2011.13 Assigns tags to posts containing specific text strings, handy for filtering within the loop. A gift to [@docrock](http://twitter.com/#!/docrock/status/58054643929985024) from [@johnleblanc](http://twitter.com/johnleblanc/status/58303307713753088) to help keep Instagr.am image posts out of the mrdocrock.com homepage loop April, 2011. 14 14 15 15 == Installation == 16 16 17 1. Upload `plugin-name.php` to your plugins directory (usually `/wp-content/plugins/` unless you've defined custom value for WP_PLUGINS_DIR)17 1. Install from the Plugins page within the dashboard. For those with too much free time, download from the [plugin page](http://wordpress.org/extend/plugins/docs-auto-tags/) or [subversion repository](http://plugins.svn.wordpress.org/docs-auto-tags/). Upload `docs-auto-tags` to your plugins directory (usually `/wp-content/plugins/` unless you've defined custom value for WP_PLUGINS_DIR). 18 18 1. Activate the plugin through the 'Plugins' menu in WordPress 19 19 1. Configure your settings within the 'Tools' area in the Dashboard 20 20 21 21 == Changelog == 22 23 = 0.3 = 24 Fix a bum function reference 22 25 23 26 = 0.2 =
Note: See TracChangeset
for help on using the changeset viewer.