hello.
my wordpress theme is astra pro.
i want to change the type of jos.
I tried to set this below
but it didnt work.
i think my setting is wrong.
i set these code in custom layout.
please check whta i did
thank you so much
Hi Ken,
Simply copy the code below and paste it on your theme function will create a new job type. Please follow my step -
1. First, copy the code below:
function job_bm_job_type_29072019($job_type){
$job_type_new = array('job_type_1'=>'Custom One');
$job_type = array_merge($job_type,$job_type_new);
return $job_type;
}
add_filter('job_bm_job_type','job_bm_job_type_29072019');
2. Then, from your WordPress dashboard, go to Appearance => Theme File Editor. From the right side, select Theme Functions and paste the code at the end of the file. Kindly follow my screenshot - https://i.imgur.com/EjxARrs.png
Note: you can rename the text Custom One to your job type.