Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Created September 12, 2020 07:49
Show Gist options
  • Select an option

  • Save mennwebs/55982367a43b80ac330ff550fa2c0acd to your computer and use it in GitHub Desktop.

Select an option

Save mennwebs/55982367a43b80ac330ff550fa2c0acd to your computer and use it in GitHub Desktop.
The SEO Framework - Limit only 1 image for social sharing
<?php
// from https://github.com/sybrew/the-seo-framework/issues/541
add_filter( 'the_seo_framework_image_generation_params', function( $params ) {
unset( $params['cbs']['content'] );
return $params;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment