Hello,
Please, is there a possibility to add sending email notification to the admin to say that there are companies awaiting approval?
thank you in advance
Thread Starter
MedTn
(@medtn)
Youpi, Work perfecty. THX 🙂
Thread Starter
MedTn
(@medtn)
Thx, a have added this but don’t work, help pls 🙁
add_filter( 'submit_job_form_save_job_data', 'custom_submit_job_form_save_job_data', 10, 5 );
function custom_submit_job_form_save_job_data( $data, $post_title, $post_content, $status, $values ) {
$job_slug = array();
// Prepend ID
if ( ! empty( $values['post']['post_ID'] ) )
$job_slug[] = $values['post']['post_ID'];
$job_slug[] = $post_title;
$data['post_name'] = implode( '-', $job_slug );
return $data;
}
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]