Plugin Directory

Changeset 1065473


Ignore:
Timestamp:
01/11/2015 11:52:26 PM (11 years ago)
Author:
Devtard
Message:

Header image added

Location:
automatic-post-tagger
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • automatic-post-tagger/tags/1.6/automatic-post-tagger.php

    r953681 r1065473  
    33Plugin Name: Automatic Post Tagger
    44Plugin URI: http://wordpress.org/plugins/automatic-post-tagger/
    5 Description: This plugin automatically adds user-defined tags to posts.
     5Description: This plugin uses a list of keywords provided by the user to automatically tag posts according to their title, content and excerpt.
    66Version: 1.6
    77Author: Devtard
     
    172172    if(get_option('automatic_post_tagger_keywords') == false){ //create the option only if it doesn't exist yet
    173173        add_option('automatic_post_tagger_keywords', array(), '', 'no'); //single option for storing keywords
     174
    174175    }
    175176}
  • automatic-post-tagger/tags/1.6/readme.txt

    r1049934 r1065473  
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 This plugin automatically adds user-defined tags to posts.
     11This plugin uses a list of keywords provided by the user to automatically tag posts according to their title, content and excerpt.
    1212
    1313== Description ==
    14 APT uses a list of keywords created by the user to automatically tag posts when they're saved/published. Version 1.6 fully supports UTF-8 characters.
    1514
    1615= Features =
    17 * Automatically tags posts according to their title, content and excerpt
    18 * Tags can be added when different user-defined keywords ("related words") are found
    19 * Wildcard (regex) support for related words
     16* APT adds tags to posts when keywords specified by the user are found; tagging automatically occurs while posts are being saved/published via the post editor
     17* Wildcard (regex) support for Related words
    2018* Bulk tagging tool for processing multiple posts at once
     19* Import/Export tool for keywords
    2120* Supports custom taxonomies & post types
    22 * Import/Export tool for keywords
    23 * And more (see screenshots)
     21* Supports UTF-8 characters
     22* And more (see [Screenshots](http://wordpress.org/plugins/automatic-post-tagger/screenshots/))
    2423
    2524== Installation ==
  • automatic-post-tagger/trunk/automatic-post-tagger.php

    r953681 r1065473  
    33Plugin Name: Automatic Post Tagger
    44Plugin URI: http://wordpress.org/plugins/automatic-post-tagger/
    5 Description: This plugin automatically adds user-defined tags to posts.
     5Description: This plugin uses a list of keywords provided by the user to automatically tag posts according to their title, content and excerpt.
    66Version: 1.6
    77Author: Devtard
     
    172172    if(get_option('automatic_post_tagger_keywords') == false){ //create the option only if it doesn't exist yet
    173173        add_option('automatic_post_tagger_keywords', array(), '', 'no'); //single option for storing keywords
     174
    174175    }
    175176}
  • automatic-post-tagger/trunk/readme.txt

    r1049934 r1065473  
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 This plugin automatically adds user-defined tags to posts.
     11This plugin uses a list of keywords provided by the user to automatically tag posts according to their title, content and excerpt.
    1212
    1313== Description ==
    14 APT uses a list of keywords created by the user to automatically tag posts when they're saved/published. Version 1.6 fully supports UTF-8 characters.
    1514
    1615= Features =
    17 * Automatically tags posts according to their title, content and excerpt
    18 * Tags can be added when different user-defined keywords ("related words") are found
    19 * Wildcard (regex) support for related words
     16* APT adds tags to posts when keywords specified by the user are found; tagging automatically occurs while posts are being saved/published via the post editor
     17* Wildcard (regex) support for Related words
    2018* Bulk tagging tool for processing multiple posts at once
     19* Import/Export tool for keywords
    2120* Supports custom taxonomies & post types
    22 * Import/Export tool for keywords
    23 * And more (see screenshots)
     21* Supports UTF-8 characters
     22* And more (see [Screenshots](http://wordpress.org/plugins/automatic-post-tagger/screenshots/))
    2423
    2524== Installation ==
Note: See TracChangeset for help on using the changeset viewer.