Modify or Remove the Structured Data
Modify the structured data
function awsm_job_custom_structured_data( $data ) {
$data['description'] = wpautop( get_the_excerpt() );
return $data;
}
add_filter( 'awsm_job_structured_data', 'awsm_job_custom_structured_data' );Remove the structured data
add_filter( 'awsm_job_structured_data', '__return_empty_string' );Last updated