Can i make wordpress autopost the classic "welcome post" lets say once every week. ? Maybe with a cron job? And开发者_高级运维 then, change the post permalink from a few keywords which i select?
TY
There are plugins available. Schedule Posts seems to be exactly what you are looking for.
If that doesn't work, you can programmatically insert and publish posts using
wp_insert_post()
and
wp_publish_post()
You can get a cron job plugin for WordPress that runs scripts at scheduled intervals / when specific pages are called. You can use the two wp functions above to create and / or publish a post whenever you want.
精彩评论