Advertisement
etoileweb

UPCP - Remove structured data from product page

Jun 6th, 2023
1,261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | Source Code | 0 0
  1. <?php
  2. // Example function that uses the ewd_upcp_ld_json_output
  3. // filter to remove the product structured data from the
  4. // single product page.
  5.  
  6. function disable_upcp_schema() {
  7.    
  8.     return;
  9. }
  10. add_filter( 'ewd_upcp_ld_json_output', 'disable_upcp_schema' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement