Skip to content

Instantly share code, notes, and snippets.

@pbearne
Last active May 16, 2018 12:40
Show Gist options
  • Save pbearne/9a0e4538fe1f73a8689665842fdc8a0f to your computer and use it in GitHub Desktop.
Save pbearne/9a0e4538fe1f73a8689665842fdc8a0f to your computer and use it in GitHub Desktop.
if( ! function_exists( 'matador_get_hiring_organization_logo') ) {
// lets add logo to the caompany
add_filter( 'matador_bullhorn_import_save_job_jsonld', 'matador_get_hiring_organization_logo' );
function matador_get_hiring_organization_logo( $ld_data ){
$ld_data['hiringOrganization']['logo'] = 'https://matadorjobs.com/matador-jobs-avatar-transparent-red.png';
return $ld_data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment