Import new field value to database
-
Hello,
I have created new custom field called ‘Salary’ using following code,
function frontend_add_salary_field( $fields ) {
$fields[‘job’][‘job_salary’] = array(
‘label’ => __( ‘Salary’, ‘job_manager’ ),
‘type’ => ‘text’,
‘required’ => true,
‘placeholder’ => ”,
‘priority’ => 7
);
return $fields;
}Here how can import this salary value to database & fetch it.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Import new field value to database’ is closed to new replies.