// H1 Tag Fix - Convert theme H2 page titles to H1
function mas_seo_h1_fix() {
wp_add_inline_script( 'jquery-core', 'jQuery(function($){var p=$("h2.page-title-holder");if(p.length){var t=p.text();p.replaceWith(""+t+"
");}});' );
}
add_action( 'wp_enqueue_scripts', 'mas_seo_h1_fix' );
// LocalBusiness Schema Markup
function mas_schema_markup() {
if ( ! is_front_page() && ! is_home() ) return;
$schema = array(
'@context' => 'https://schema.org',
'@type' => 'SportsActivityLocation',
'name' => 'Mighty All Stars Cheerleading',
'address' => array(
'@type' => 'PostalAddress',
'streetAddress' => '7 Buchanan Court',
'addressLocality' => 'Hindmarsh Valley',
'addressRegion' => 'SA',
'postalCode' => '5211',
'addressCountry' => 'AU',
),
'telephone' => '040-999-4761',
'email' => '[email protected]',
'url' => 'https://joinmightyallstars.com',
'openingHoursSpecification' => array(
array(
'@type' => 'OpeningHoursSpecification',
'dayOfWeek' => array('Monday','Wednesday'),
'opens' => '16:00',
'closes' => '19:00',
),
array(
'@type' => 'OpeningHoursSpecification',
'dayOfWeek' => array('Tuesday','Thursday'),
'opens' => '16:00',
'closes' => '20:00',
),
array(
'@type' => 'OpeningHoursSpecification',
'dayOfWeek' => 'Friday',
'opens' => '16:00',
'closes' => '17:00',
),
),
'sameAs' => array(),
);
echo '' . wp_json_encode( $schema, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ) . '' . "\n";
}
add_action( 'wp_head', 'mas_schema_markup' );
PAGE NAME HERE