Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created September 9, 2020 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/f68eea367a93ff14220db1e55f2cce40 to your computer and use it in GitHub Desktop.
Save tripflex/f68eea367a93ff14220db1e55f2cce40 to your computer and use it in GitHub Desktop.
Output og:image tag for Resume featured image when using WP Job Manager Field Editor
<?php
add_action( 'wp_head', 'smyles_output_resume_og_image' );
function smyles_output_resume_og_image() {
if( is_singular('resume') ) {
echo '<meta property="og:image" content="' . get_the_post_thumbnail_url( get_the_ID(), 'full' ) . '" />';
}
}
@tripflex
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment