Skip to content
Advertisement

How can I automatically add random description to posts with empty content posted to WordPress?

I would like to automate the process of adding descriptions for articles published on my site. I would like to automatically insert a random description from a list of pre-edited (Advanced Custom Fields) descriptions when a new post is published as draft. eg: “description_1” or “description_2” or “description_100” (randomly)

I have this code, which seems to do the trick, but I still have to insert the parameter to randomize the choice of description (randomly choose a number between 1 and 100 just after the word “description”) on the line: // Custom post content $content = . $description_1 . ; of this code above. I would also like to add these two little conditions:

  • The content of the article is empty
  • The status of the article is set to “draft” Thanks for any response!
JavaScript

Advertisement

Answer

You can use two fucntion fisrt for content get_post_field() and the second is for check post status get_post_status(). check below code.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement