Is there a filter to define the OG image on a given post?
The wpseo_opengraph_image filter can only be used to modify the existing og:image. Otherwise, you will need to hook into the wpseo_opengraph action to add a different image. Here’s an example of adding an image from a custom field on the post object (assuming you’re using ACF here). function my_wpseo_opengraph() { global $post; if (isset($post)) { … Read more