// H1 Tag Fix - Convert theme H2 page titles to H1
function dea_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', 'dea_seo_h1_fix' );
// LocalBusiness Schema Markup
function dea_schema_markup() {
if ( is_front_page() ) {
echo '';
}
}
add_action( 'wp_head', 'dea_schema_markup' );