Created
March 28, 2023 02:56
-
-
Save nextgenthemes/417d90e641293b19ebc7d2ceca0b1b00 to your computer and use it in GitHub Desktop.
Replace header tags in ARVE
This file contains 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
<?php | |
add_filter( 'nextgenthemes/arve/title_html', 'arve_custom_title_tag' ); | |
function arve_custom_title_tag( $html ) { | |
$html = strtr( | |
$html, | |
[ | |
'<h5' => '<h2', | |
'</h5>' => '</h2>', | |
], | |
); | |
return $html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment