[Résolu] Allow the user to choose the status of their publication
This support ticket is created Il y a 2 années et 9 mois. There's a good chance that you are reading advice that it now obsolete.
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Aucun de nos assistants n'est disponible aujourd'hui sur le forum Jeu d'outils. Veuillez créer un ticket, et nous nous le traiterons dès notre prochaine connexion. Merci de votre compréhension.
Tell us what you are trying to do?
I want to allow the user to choose the status of their publication from a front end publication form.
In the publication form I have a multiselect field with "publish", "draft" and "pending".
Les langues: Anglais (English )Espagnol (Español )
Fuseau horaire: Europe/London (GMT+00:00)
The form settings specify what the status of the submitted post will be.
If you want users to be able to change this you should add a generic select field with the different options, and then use the Forms API to update the status after the form submission has been handled and the post created.
i added a generic select field with the different options in the form wich id is 31699,
I added the following code to function.php :
add_action('cred_save_data','func_update_post_status',10,2);
function func_update_post_status($post_id,$form_data) {
if ( $form_data['id']==31699 ) {
$my_post['ID'] = $post_id;
$my_post['post_status'] = $_REQUEST['status'];
// Update the post into the database
wp_update_post( $my_post );
}
}