Skip to content

Instantly share code, notes, and snippets.

@mitchellkrogza
Created June 7, 2021 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitchellkrogza/a8f8ea84303bb445678b5f835518be85 to your computer and use it in GitHub Desktop.
Save mitchellkrogza/a8f8ea84303bb445678b5f835518be85 to your computer and use it in GitHub Desktop.
Add Product Brand to All Products (WooCommerce)
// Add Brand for Products.
// Only use if you sell one brand of item ie. Your own brand
add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
$entity['brand'] = 'My Brand' ;
return $entity;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment