toolset forms post status
[cred-generic-field field="post_status" type="select" class=""]
{
"required":0,
"validate_format":0,
"default":["publish"],
"options":[
{"value":"draft","label":"draft"},
{"value":"publish","label":"publish"}
]
}
toolset forms post status
[cred-generic-field field="post_status" type="select" class=""]
{
"required":0,
"validate_format":0,
"default":["publish"],
"options":[
{"value":"draft","label":"draft"},
{"value":"publish","label":"publish"}
]
}
toolset forms post status
add_action('cred_save_data', 'change_post_status',10,2);
function change_post_status($post_id, $form_data) {
if ($form_data['id']==9999){
$my_post['ID'] = $post_id;
$my_post['post_status'] = $_REQUEST['post_status'];
// Update the post into the database
wp_update_post( $my_post );
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us