Created
September 12, 2020 07:49
-
-
Save mennwebs/55982367a43b80ac330ff550fa2c0acd to your computer and use it in GitHub Desktop.
The SEO Framework - Limit only 1 image for social sharing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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