Created
July 5, 2022 12:28
-
-
Save GauravKhupse/2946cd32ea530124f98d72263bbda8bc to your computer and use it in GitHub Desktop.
RoofingContractor in the Local business schema type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']['RoofingContractor '] = esc_html__( 'Roofing Contractor ', 'wp-schema-pro' | |
); | |
return $fields; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment