=== Plugin Name ===
Contributors: johnleblanc
Donate link: http://johnleblanc.com/donate/
Tags: tags
Requires at least: 2.8
Tested up to: 4.0
Stable tag: 1.0

Assigns tags and/or categories to posts containing specific text strings, handy for filtering within the loop.

== Description ==

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](http://instagr.am/)  image posts out of the  [mrdocrock.com](http://www.mrdocrock.com)  homepage loop.  Born April 13, 2011 in  [Kaneohe, HI](http://maps.google.com/maps?ll=21.408966,-157.831993&spn=0.091894,0.162907&t=h&z=13&lci=com.panoramio.all,com.youtube.all,com.google.webcams,org.wikipedia.en).

== Installation ==

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/)  and upload `docs-auto-tags` to your plugins directory (usually `/wp-content/plugins/` unless you've defined a custom value by overriding the WP_PLUGINS_DIR constant).
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Configure your settings within the 'Tools' area in the Dashboard

== Screenshots ==

1. Configuration interface where text strings and corresponding tags (and/or categories) are defined: Tools -> Doc's Auto-Tags

== Changelog ==

= 0.7.1 =
Repo cleanup: release tagged with 0.6.1 was in a directory named 1.6.1 somehow

= 0.7 =
Applied fixes courtesy of Boris Kuzmanovic https://wordpress.org/support/topic/a-bug-found
Added plugin icon

= 0.6.1 =
Fixed another "Warning: Invalid argument supplied for foreach()" for real this time

= 0.6 =
Added Category support by request.

= 0.5 =
Fixed "Warning: Invalid argument supplied for foreach()" error http://wordpress.org/support/topic/plugin-docs-auto-tags-error-message-on-settings-page-after-install?replies=1#post-2456270

= 0.4 =
Documentation cleanup

= 0.3 =
Fix a bum function reference

= 0.2 =
Added management page

= 0.1 =
Initial Release

== Upgrade Notice ==

= 0.4 =
Please upgrade to the latest version.

== Frequently Asked Questions ==

= Great, my newly saved posts are being auto-tagged.  How do I filter posts by tag within the WordPress Loop? =

An example of query_posts():
`<?php query_posts("cat=-10&paged=$paged") ?>`


Here's a cleaner version excluding posts tagged with tag ID 42:
`<?php
$args = array(
    'category__not_in' => array( 10 ),
    'tag__not_in' => array( 42 ),
    'paged' => $paged,
    );
query_posts($args);
?>`
