johnh10
Forum Replies Created
-
Forum: Plugins
In reply to: [Auto Post Scheduler] Maximum Auto Posting SettingsNobody knows, really. Google isn’t telling.
Forum: Plugins
In reply to: [Auto Post Scheduler] Are these tables created by this plugin?Nope.
Forum: Plugins
In reply to: [Auto Post Scheduler] Does it works on WP 6.2.2 ?yes
Forum: Plugins
In reply to: [Auto Post Scheduler] Recycle specific post IDs in specific frequencyYes, you can do that with WP Auto Poster.
Forum: Plugins
In reply to: [Auto Post Scheduler] Suddenly Stopped WorkingSure, it’s possible for your server to run out of memory if you have too many posts. WordPress will try to search them all depending on your settings. Check your server’s log file.
Forum: Plugins
In reply to: [Auto Post Scheduler] Suddenly Stopped WorkingIf the cron events are now showing negative times, then the cron jobs are not working properly. Your cron command will depend on your server and setup. See if you can verify it from the command line, or ask your host for help.
Forum: Plugins
In reply to: [Auto Post Scheduler] Suddenly Stopped WorkingUse a plugin like WP-Crontrol to verify your cron is working properly. If it is, you should see the event for APS in the cron events and when it will fire next.
Forum: Plugins
In reply to: [Auto Post Scheduler] Not reposting401 is the http code from your server meaning you are unauthorized.
the APS event is scheduled but cron must be called properly for it to process scheduled events. best ask your host.
Forum: Plugins
In reply to: [Auto Post Scheduler] Not repostingCron needs to be set up properly for the events to trigger – check your cron with a plugin like WP-Crontrol
Forum: Plugins
In reply to: [Auto Post Scheduler] Duplicate post issueA low end server with WordPress virtual cron can have these issues. Try a server cron job instead. Read here.
Hello, just the ones mentioned above, before the wp_set_post_tags/categories calls.
They are something like
$tags = apply_filters( 'usp_check_tags', $tags ); $category = apply_filters( 'usp_check_category', $category );
filter names can be anything. ‘usp_custom_user_tag_check’ instead of ‘usp_check_tags’ if that works better.
Thanks for adding the append filters! Appreciated.
Any chance of the custom filters for tags/categories? So the user can run custom checks on the submitted taxonomies? In my case I make all tags lowercase and strip out hashtags.
That would be great!
Specifically, in the file user-submitted-posts.php, in function usp_createPublicSubmission, right before the lines
wp_set_post_tags($post_id, $tags, true ); wp_set_post_categories($post_id, $category);
I’m using my own code lines that are:
$tags = apply_filters( 'usp_check_tags', $tags ); $category = apply_filters( 'usp_check_category', $category );
Then my code snippets do the custom checks I want. I can change the filter name to whatever you come up with, of course.
Recycling a post sets the published date to today so it shows again as new. It is working as intended. Not sure what you’re asking here. If you want it to stay where it is don’t do anything…
Forum: Plugins
In reply to: [WP Extended Search] Will there be support for admin searches too?Thanks! I added a few lines of code based on what he did and now I have the wp-extended-search I want in the admin. Brilliant! ??