raski
Forum Replies Created
-
Forum: Plugins
In reply to: [Auto-tags] 2 issues plzCool. Make sure you see a ‘Retag all posts’ at the end when retagging is finished, that means it ran through all of the posts. If not, you will need to increase max_execution_time and memory_limit php settings.
Forum: Plugins
In reply to: [Auto-tags] 2 issues plzHey, Randy.
Yes, it is the same thing. You can add it in both args and run it.
Forum: Plugins
In reply to: [Auto-tags] 2 issues plzAre you sure you have this plugin http://ww.wp.xz.cn/plugins/auto-tag/ ?
Forum: Plugins
In reply to: [Auto-tags] 2 issues plzTry 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.
Forum: Plugins
In reply to: [Auto-tags] [Plugin: Auto-tags] only 5 posts doneTry 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.