Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GauravKhupse/f34dcb7601f8f10e66d43f0ddad714b6 to your computer and use it in GitHub Desktop.
Save GauravKhupse/f34dcb7601f8f10e66d43f0ddad714b6 to your computer and use it in GitHub Desktop.
TouristAttraction_subtype_in_Localbusiness_schema
add_action( 'after_setup_theme', 'add_my_custom_meta_field' );
function add_my_custom_meta_field() {
add_filter( 'wp_schema_pro_schema_meta_fields', 'my_extra_schema_field' );
function my_extra_schema_field( $fields ) {
$fields['bsf-aiosrs-local-business']['subkeys']['schema-type']['choices']['TouristAttraction '] = esc_html__( 'Tourist Attraction ', 'wp-schema-pro'
);
return $fields;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment