Skip to content

Instantly share code, notes, and snippets.

View jsumabong's full-sized avatar

Jonathan Sumabong jsumabong

  • Philippines
View GitHub Profile
@fredrikln
fredrikln / functions.php
Created February 2, 2017 14:23
Change Yoast SEO og:type to video and add og:video meta tag for custom post type
// ...snip
// Change Yoast og:type and add og:video meta tags for a custom post type in WordPress
// Note: This assumes you are using a custom field named 'youtube_id' using Advanced Custom Fields plugin
// Change og:type of episodes and videos to video
function yoast_change_opengraph_type( $type ) {
// If this is the wanted custom post type
if ( get_post_type() == 'episode' ) {
return 'video';