Skip to content

Instantly share code, notes, and snippets.

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 wp-seopress/bf7ae3dad3f54d174360fa14e7db0fd1 to your computer and use it in GitHub Desktop.
Save wp-seopress/bf7ae3dad3f54d174360fa14e7db0fd1 to your computer and use it in GitHub Desktop.
Filter Local Business types list for schema
add_filter('seopress_schemas_lb_types', 'sp_schemas_lb_types');
function sp_schemas_lb_types($types)
{
//List here: https://schema.org/LocalBusiness
$types[] = 'MyMissingSubType';
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment