Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 11, 2015 18:54
Show Gist options
  • Save mikejolley/1682412ecf76ac1afbbe to your computer and use it in GitHub Desktop.
Save mikejolley/1682412ecf76ac1afbbe to your computer and use it in GitHub Desktop.
Set Yoast WordPress SEO Facebook opengraph image to company logo image
add_action( 'job_manager_update_job_data', 'wpjm_set_yoast_opengraph_image', 10, 2 );
function wpjm_set_yoast_opengraph_image( $job_id, $values ) {
update_post_meta( $job_id, '_yoast_wpseo_opengraph-image', $values['company']['company_logo'] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment