
Assigns tags and/or categories to posts containing specific text strings, handy for filtering within the loop.
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. Born April 13, 2011 in Kaneohe, HI.
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).An example of query_posts():
Here’s a cleaner version excluding posts tagged with tag ID 42:
array( 10 ),
‘tag__not_in’ => array( 42 ),
‘paged’ => $paged,
);
query_posts($args);
?>
Repo cleanup: release tagged with 0.6.1 was in a directory named 1.6.1 somehow
Applied fixes courtesy of Boris Kuzmanovic https://wordpress.org/support/topic/a-bug-found
Added plugin icon
Fixed another “Warning: Invalid argument supplied for foreach()” for real this time
Added Category support by request.
Fixed “Warning: Invalid argument supplied for foreach()” error https://wordpress.org/support/topic/plugin-docs-auto-tags-error-message-on-settings-page-after-install?replies=1#post-2456270
Documentation cleanup
Fix a bum function reference
Added management page
Initial Release