Viewing 4 replies - 1 through 4 (of 4 total)
  • Similar problem for me. It does not auto tag any new posts, but if I click on the retag posts button it only does the last five.

    So it’s not auto at all.

    Retags only 5 posts.
    Does NOT auto tag any posts.
    removed, not recomended.

    Guys check out my autotagging plugin, it works just fine.

    But it doesn’t use external API so you’ll have to spare a minute or two to make a list of your own tags.

    Try this…in auto-tag-setup.class.php replace

    $args = array(
    ‘post_type’ => ‘post’,
    ‘post_status’ => ‘publish’,
    );

    with this

    $args = array(
    ‘post_type’ => ‘post’,
    ‘post_status’ => ‘publish’,
    ‘numberposts’ => -1
    );

    Parameter “‘numberposts’ => -1” allows grabbing all posts available on the site. Hope it helps.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Auto-tags] only 5 posts done’ is closed to new replies.