Created
March 11, 2015 18:54
-
-
Save mikejolley/1682412ecf76ac1afbbe to your computer and use it in GitHub Desktop.
Set Yoast WordPress SEO Facebook opengraph image to company logo image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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