theme development - Set Expiration Date of a Post from the Frontend with wp_insert_post

admin2025-06-07  6

i try to build a form that users posts from frontend, everything works fine but i need to know if it's possible, if i play with the 'post_date' => date('Y-m-d H:i:s')?

if i add a hidden field that generates the expiration day (+30 days from the post day) and then add it to the post with add_post_meta($post_id, 'expiration', $expDate, true);

anyone have any ideas how i can build something like this?

thanks a lot,
Philip

i try to build a form that users posts from frontend, everything works fine but i need to know if it's possible, if i play with the 'post_date' => date('Y-m-d H:i:s')?

if i add a hidden field that generates the expiration day (+30 days from the post day) and then add it to the post with add_post_meta($post_id, 'expiration', $expDate, true);

anyone have any ideas how i can build something like this?

thanks a lot,
Philip

Share Improve this question asked Jan 9, 2011 at 22:46 PhilipPhilip 2,0191 gold badge23 silver badges33 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 3

The post by itself is only data, it cannot perform such action as expiring itself. So you need some form of external control to act on it.

You can use WP Cron (see wp_schedule_event() and related) to run periodic task that will query for posts by your custom field and perform wanted action on them (trashing, cancelling published status, etc).

Some plugins handle this as well such as my Post Expiration Date, which does not require WP Cron. WP Cron is fine if you have it, but not everyone does and not all hosts support it.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749225957a317415.html

最新回复(0)