<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Change size for Yoast SEO OpenGraph image for all content | |
* Credit: Yoast Development team | |
* Last Tested: May 19 2020 using Yoast SEO 14.1 on WordPress 5.4.1 | |
* Accepts WordPress reserved image size names: 'thumb', 'thumbnail', 'medium', 'large', 'post-thumbnail' | |
* Accepts custom image size names: https://developer.wordpress.org/reference/functions/add_image_size/ | |
*/ | |
add_filter( 'wpseo_opengraph_image_size', 'yoast_seo_opengraph_change_image_size' ); | |
function yoast_seo_opengraph_change_image_size() { | |
return 'medium'; | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Change Open Graph image URLs in Yoast SEO | |
* Credit: Yoast Development team | |
* Last Tested: Jul 04 2018 using Yoast SEO 7.7.3 on WordPress 4.9.6 | |
*/ | |
add_filter( 'wpseo_opengraph_image', 'change_opengraph_image_url' ); | |
function change_opengraph_image_url( $url ) { | |
return str_replace('current_domain.com', 'new_domain.com', $url); | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Change Product Condition | |
* Credit: Yoast team | |
* Last Tested: Feb 20, 2020 using Yoast SEO WooCommerce 12.6 on WordPress 5.3.2 | |
********* | |
* DIFFERENT POST TYPES | |
* Post: Change 123456 to the post ID | |
* Page: Change is_single to is_page and 123456 to the page ID | |
* Custom Post Type: Change is_single to is_singular and 123456 to the 'post_type_slug' | |
Example: is_singular( 'cpt_slug' ) | |
********* | |
* MULTIPLE ITEMS | |
* Multiple of the same type can use an array. | |
Example: is_single( array( 123456, 234567, 345678 ) ) | |
* Multiple of different types can repeat the if statement | |
*/ | |
add_filter( 'Yoast\WP\Woocommerce\product_condition', 'yoast_seo_opengraph_change_product_condition' ); | |
function yoast_seo_opengraph_change_product_condition( $condition ) { | |
if ( is_single ( 34 ) ) { | |
$condition = 'used'; | |
} | |
/* Use a second if statement here when needed */ | |
return $condition; /* Do not remove this line */ | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Enforce HTTP Open Graph URLs in Yoast SEO | |
* Credit: stodorovic https://github.com/stodorovic | |
* Last Tested: Feb 06 2017 using Yoast SEO 4.2.1 on WordPress 4.7.2 | |
*/ | |
add_filter( 'wpseo_opengraph_url', 'my_opengraph_url' ); | |
function my_opengraph_url( $url ) { | |
return str_replace( 'https://', 'http://', $url ); | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Change Yoast SEO OpenGraph type | |
* Credit: Yoast Team | |
* Last Tested: Jul 11 2017 using Yoast SEO 5.0.1 on WordPress 4.8 | |
*/ | |
add_filter( 'wpseo_opengraph_type', 'yoast_change_opengraph_type', 10, 1 ); | |
function yoast_change_opengraph_type( $type ) { | |
/* Make magic happen here | |
* Example below changes the homepage to a book type | |
*/ | |
if ( is_home() ) { | |
return 'book'; | |
} else { | |
return $type; | |
} | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove all OpenGraph tags | |
* Credit: Alejandro https://github.com/jreviews | |
* Last Tested: Sep 2 2020 using Yoast SEO 14.9 on WordPress 5.5.1 | |
*/ | |
add_filter( 'wpseo_frontend_presenter_classes', 'wpseo_remove_opengraph' ); | |
function wpseo_remove_opengraph( $classes ) { | |
$classes = array_filter($classes, function($class) { | |
return strpos($class, 'Open_Graph') === false; | |
}); | |
return $classes; | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove All Yoast SEO OpenGraph Output | |
* There is an on/off switch in the plugin Admin > SEO > Social > Facebook | |
* Credit: Unknown | |
* Last Tested: Apr 01 2017 using Yoast SEO 4.5 on WordPress 4.7.3 | |
*/ | |
add_action('wp_head', 'remove_all_wpseo_og', 1); | |
function remove_all_wpseo_og() { | |
remove_action( 'wpseo_head', array( $GLOBALS['wpseo_og'], 'opengraph' ), 30 ); | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove one of more Open Graph or Twitter tags | |
* Credit: Rogério https://github.com/rgllm | |
* Last Tested: Sep 2 2020 using Yoast SEO 14.9 on WordPress 5.5.1 | |
*/ | |
add_filter( 'wpseo_frontend_presenter_classes', 'filter_presenters' ); | |
function filter_presenters( $filter ) { | |
if (($key = array_search('Yoast\WP\SEO\Presenters\Twitter\Image_Presenter', $filter)) !== false) { | |
unset($filter[$key]); | |
} | |
if (($key = array_search('Yoast\WP\SEO\Presenters\Open_Graph\Image_Presenter', $filter)) !== false) { | |
unset($filter[$key]); | |
} | |
if (($key = array_search('Yoast\WP\SEO\Presenters\Twitter\Description_Presenter', $filter)) !== false) { | |
unset($filter[$key]); | |
} | |
if (($key = array_search('Yoast\WP\SEO\Presenters\Open_Graph\Site_Name_Presenter', $filter)) !== false) { | |
unset($filter[$key]); | |
} | |
return $filter; | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove Yoast SEO OpenGraph Output From One Post/Page | |
* Credit: Unknown | |
* Last Tested: Apr 01 2017 using Yoast SEO 4.5 on WordPress 4.7.3 | |
********* | |
* DIFFERENT POST TYPES | |
* Post: Change 123456 to the post ID | |
* Page: Change is_single to is_page and 123456 to the page ID | |
* Custom Post Type: Change is_single to is_singular and 123456 to the 'post_type_slug' | |
Example: is_singular( 'cpt_slug' ) | |
********* | |
* MULTIPLE ITEMS | |
* Multiple of the same type can use an array. | |
Example: is_single( array( 123456, 234567, 345678 ) ) | |
* Multiple of different types can repeat the if statement | |
*/ | |
add_action('wp_head', 'remove_one_wpseo_og', 1); | |
function remove_one_wpseo_og() { | |
if ( is_single ( 123456 ) ) { | |
remove_action( 'wpseo_head', array( $GLOBALS['wpseo_og'], 'opengraph' ), 30 ); | |
} | |
/* Use a second if statement here when needed */ | |
} |
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove Individual Yoast SEO OpenGraph meta tags | |
* Credit: Yoast Development team | |
* Last Tested: Jul 28 2017 using Yoast SEO 5.1 on WordPress 4.8 | |
*/ | |
add_filter( 'wpseo_opengraph_url' , '__return_false' ); | |
add_filter( 'wpseo_opengraph_desc', '__return_false' ); | |
add_filter( 'wpseo_opengraph_title', '__return_false' ); | |
add_filter( 'wpseo_opengraph_type', '__return_false' ); | |
add_filter( 'wpseo_opengraph_site_name', '__return_false' ); | |
add_filter( 'wpseo_opengraph_image' , '__return_false' ); // v13.5 or older | |
add_filter( 'wpseo_og_og_image_width' , '__return_false' ); // v13.5 or older | |
add_filter( 'wpseo_og_og_image_height' , '__return_false' ); // v13.5 or older | |
add_filter( 'wpseo_opengraph_author_facebook' , '__return_false' ); | |
add_filter( 'Yoast\WP\Woocommerce\product_condition', '__return_false' ); |
This comment has been minimized.
This comment has been minimized.
The code snippets can go anywhere in your functions.php file after the opening <?php tag as long as they are not within another piece of code. The easiest option is to paste it at the end of the file. If you're not familiar with using code snippets, these articles have wonderful advice: |
This comment has been minimized.
This comment has been minimized.
Is there a code snippet that I can use to tell Yoast to use a different image for the OG image tags? I'd like to show one image on the website, but when someone shares the blog post I'd like it to be a different image. Basically the default WordPress featured image would be for the image on the website, and a secondary featured image would be for social shares. I'd like Yoast to use that secondary image (which I'll add with Advanced Custom Fields). |
This comment has been minimized.
This comment has been minimized.
@heroaex You or your developer can use the |
This comment has been minimized.
This comment has been minimized.
Thanks, that worked! I also used the |
This comment has been minimized.
This comment has been minimized.
@amboutwe The last two filters mentioned above,
The variable EDIT: For anyone who comes across this looking for the specifics of how to implement the EDIT Deux: This still wasn't working for my particular case—I needed custom OG & Twitter images for product category pages, not the Store page—so I finally discovered and swapped out |
This comment has been minimized.
This comment has been minimized.
@davemoz
|
This comment has been minimized.
This comment has been minimized.
Hi please, can You help me with this ? |
This comment has been minimized.
This comment has been minimized.
I've been trying to get a custom twitter image and thankfully found this page. It would have saved me a lot of time if wpseo_twitter_image was in the API docs! https://yoast.com/wordpress/plugins/seo/api/ |
This comment has been minimized.
This comment has been minimized.
Hi, The url to my site recently changed from http to https. I added the code below to my function.php files to get my previous shares showing up again but now I have lost the new shares since we added the ssl. Is there code to be able to show both the http shares before the change and the https shares after the change? add_filter( 'wpseo_opengraph_url', 'my_opengraph_url' ); |
This comment has been minimized.
This comment has been minimized.
Hi there, thanks for your work! ...is possible that yoast_seo_opengraph_change_protocol.php doesn't works with WP 4.9.6? Thanks for your answer |
This comment has been minimized.
This comment has been minimized.
So I'm able to change a URL when there is an existing image uploaded (using wpseo_opengraph_image filter) but I would like to add a social image with a URL without having to upload via the meta-box. Is there any way to do this? |
This comment has been minimized.
This comment has been minimized.
Can someone please confirm that this works with WP 4.9.7 and Yoast SEO Premium 7.8.1? I added the code to remove_all and added JSON-LD through GTM, but when running the test in Google Structured Data, it detects 2 "Organizations", one of which is produced by Yoast. Thank you! |
This comment has been minimized.
This comment has been minimized.
Hi, |
This comment has been minimized.
This comment has been minimized.
Finally found something in this thread that works , thank you so much saved me tons of time add_filter('wpseo_opengraph_url' , '__return_false' ); |
This comment has been minimized.
This comment has been minimized.
Any filter or option to disable the auto-discovery of images in the post content when the featured and user supplied images are missing? Because it's too much cpu and database intensive when it uses the |
This comment has been minimized.
This comment has been minimized.
Did you ever figure something out for this? I've been having similar troubles with trying to stop this behaviour too – though I'm trying to have every page across the site just default to the featured Facebook image set in Yoast's social setting. |
This comment has been minimized.
This comment has been minimized.
Also looking to disable image auto-discovery, but have been unsuccessful so far. |
This comment has been minimized.
This comment has been minimized.
I just comment out some lines of code in the plugin files every time they release a new version in order to disable the autodiscovery. The pieces of code are, ref latest version 11.3: at line 320 of // $this->add_first_usable_content_image( $post_id ); from line 431 to 436 of the same // $attachment_id = WPSEO_Image_Utils::get_attachment_by_url( $url );
// if ( $attachment_id > 0 ) {
// $this->add_image_by_id( $attachment_id );
// return $attachment_id;
// } I have some filters setup elsewhere though to let the wp api return a predefined default featured image if the post hasn't one setup by the author. ps: I'm still on plugin verison 9.7 but I checked and that code is mostly identical on latest 11.3 |
This comment has been minimized.
This comment has been minimized.
Is there possibility to enable published and modified date og tags for pages and other post types? |
This comment has been minimized.
This comment has been minimized.
I am wondering after I post an article with a featured image then when I share the link to Facebook It should preview my post featured image. |
This comment has been minimized.
This comment has been minimized.
@BaapJaan This is not the proper place to request support. Please check out our extensive help section or visit the free support forum. If you require further support, upgrading to our premium version provides you with access to our support team. |
This comment has been minimized.
This comment has been minimized.
What code snippet can I use to disable the video Open Graph output. Note: I tried contacting, to no avail. |
This comment has been minimized.
Do these go at the end of functions.php? Perhaps you could update https://kb.yoast.com/kb/custom-open-graph-tags/ to include the answer as well, thanks!