Changeset 602326
- Timestamp:
- 09/22/2012 12:23:56 PM (13 years ago)
- Location:
- automatic-post-tagger/trunk
- Files:
-
- 2 edited
-
automatic-post-tagger.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
automatic-post-tagger/trunk/automatic-post-tagger.php
r602236 r602326 710 710 #################### assigning tags with one click ############## 711 711 if(isset($_POST['apt_assign_tags_to_all_posts_button'])){ 712 $apt_table_select_posts = mysql_query("SELECT ID FROM $apt_wp_posts WHERE post_type = 'post' AND (post_status != 'trash' OR post_status != 'draft' ORpost_status != 'auto-draft')");712 $apt_table_select_posts = mysql_query("SELECT ID FROM $apt_wp_posts WHERE post_type = 'post' AND (post_status != 'trash' AND post_status != 'draft' AND post_status != 'auto-draft')"); 713 713 $apt_table_wp_post_count = mysql_num_rows($apt_table_select_posts); 714 714 $apt_tag_maximum = get_option('apt_miscellaneous_tag_maximum'); -
automatic-post-tagger/trunk/readme.txt
r602236 r602326 15 15 = Features = 16 16 * Automatically adds tags to posts according to their title, content and excerpt 17 * Tags are added to a post also when different user-specified keywords are found (example: tag "cat" is added if you assign to it words "cats, kitty, meow" and they are found in a npost by the plugin)17 * Tags are added to a post also when different user-specified keywords are found (example: tag "cat" is added if you assign to it words "cats, kitty, meow" and they are found in a post by the plugin) 18 18 * Smart wildcard representation of any alphanumeric characters for related words (pattern "cat\*" will match "cats" and "category", pattern "c\*t" will match "cat" and "colt" etc.) 19 19 * Adds tags to all posts with just one click (three ways of handling already assigned tags) … … 78 78 79 79 == Changelog == 80 81 = 1.1 = 82 * Fixed: grammar errors 83 80 84 = 1.0 = 81 85 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.