Skip to content

Instantly share code, notes, and snippets.

@Ciantic
Created January 28, 2022 10:42
Show Gist options
  • Select an option

  • Save Ciantic/04e51c397673af0435ce7f3e7edc22db to your computer and use it in GitHub Desktop.

Select an option

Save Ciantic/04e51c397673af0435ce7f3e7edc22db to your computer and use it in GitHub Desktop.
<?php
// Disable article images that come from the content e.g. first <img /> tag
add_filter('the_seo_framework_image_generation_params', function( $params, $args, $context ) {
if (isset( $params['cbs']['content'])) {
unset($params["cbs"]["content"]);
}
return $params;
}, 11, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment