Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created January 3, 2024 00:01
Show Gist options
  • Save henshaw/ea3bad878ff49f82c76ca62aea3dd705 to your computer and use it in GitHub Desktop.
Save henshaw/ea3bad878ff49f82c76ca62aea3dd705 to your computer and use it in GitHub Desktop.
Remove Yoast Schema output from WordPress
function remove_yoast_json($data){
$data = array();
return $data;
}
add_filter('wpseo_json_ld_output', 'remove_yoast_json', 10, 1);
@henshaw
Copy link
Author

henshaw commented Jan 3, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment