Plugin Directory

Changeset 602326


Ignore:
Timestamp:
09/22/2012 12:23:56 PM (13 years ago)
Author:
Devtard
Message:

Fixed: Bug responsible for assigning tags to all post types

Location:
automatic-post-tagger/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • automatic-post-tagger/trunk/automatic-post-tagger.php

    r602236 r602326  
    710710#################### assigning tags with one click ##############
    711711if(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' OR post_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')");
    713713    $apt_table_wp_post_count = mysql_num_rows($apt_table_select_posts);
    714714    $apt_tag_maximum = get_option('apt_miscellaneous_tag_maximum');
  • automatic-post-tagger/trunk/readme.txt

    r602236 r602326  
    1515= Features =
    1616* 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 an post 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)
    1818* 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.)
    1919* Adds tags to all posts with just one click (three ways of handling already assigned tags)
     
    7878
    7979== Changelog ==
     80
     81= 1.1 =
     82* Fixed: grammar errors
     83
    8084= 1.0 =
    8185* Initial release
Note: See TracChangeset for help on using the changeset viewer.