get_description(); ?>
	get_field(
		esc_html__( 'Salary', 'rank-math-pro' ),
		'baseSalary.value.value'
	);
	?>
	get_field(
		esc_html__( 'Salary Currency', 'rank-math-pro' ),
		'baseSalary.currency'
	);
	?>
	get_field(
		esc_html__( 'Payroll', 'rank-math-pro' ),
		'baseSalary.value.unitText'
	);
	?>
	get_field(
		esc_html__( 'Date Posted', 'rank-math-pro' ),
		'datePosted'
	);
	?>
	get_field(
		esc_html__( 'Posting Expiry Date', 'rank-math-pro' ),
		'validThrough'
	);
	?>
	get_field(
		esc_html__( 'Unpublish when expired', 'rank-math-pro' ),
		'unpublish'
	);
	?>
	get_field(
		esc_html__( 'Employment Type ', 'rank-math-pro' ),
		'employmentType'
	);
	?>
	get_field(
		esc_html__( 'Hiring Organization ', 'rank-math-pro' ),
		'hiringOrganization.name'
	);
	?>
	get_field(
		esc_html__( 'Organization URL', 'rank-math-pro' ),
		'hiringOrganization.sameAs'
	);
	?>
	get_field(
		esc_html__( 'Organization Logo', 'rank-math-pro' ),
		'hiringOrganization.logo'
	);
	?>
	get_field(
		esc_html__( 'Job Type', 'rank-math-pro' ),
		'jobLocationType'
	);
	?>
	get_field_value( 'applicantLocationRequirements' );
	if ( ! empty( $locations ) ) {
		$locations = array_map(
			function( $location ) {
				return ! empty( $location['name'] ) ? $location['name'] : '';
			},
			$locations
		);
		$shortcode->output_field(
			esc_html__( 'Job Location', 'rank-math-pro' ),
			'
- ' . join( '
 - ', $locations ) . '
 
'
		);
	}
	?>
	get_field(
		esc_html__( 'Location', 'rank-math-pro' ),
		'jobLocation.address'
	);
	?>
	get_field_value( 'educationRequirements' );
	if ( is_array( $education ) && ! empty( $education ) ) {
		$education = array_map(
			function( $credential ) {
				return ! empty( $credential['credentialCategory'] ) ? ucwords( $credential['credentialCategory'] ) : '';
			},
			$education
		);
		$shortcode->output_field(
			esc_html__( 'Education Required', 'rank-math-pro' ),
			'
- ' . join( '
 - ', $education ) . '
 
'
		);
	}
	?>
	get_field_value( 'experienceRequirements' );
	if ( is_array( $experience ) && ! empty( $experience['monthsOfExperience'] ) ) {
		$shortcode->output_field(
			esc_html__( 'Experience Required', 'rank-math-pro' ),
			$experience['monthsOfExperience'] . ' ' . esc_html__( 'Months', 'rank-math-pro' )
		);
	}
	?>