Mitjançant “hooks” de Wordpres en el nostre “functions.php”, podem substituir tots els encapçalaments d’un tipus (<h2>, per exemple) per altre que vulguem, amb un codi com aquest:
Aquesta tècnica és molt potent, i la podem usar per a substituir moltes altres coses. Però compte! Tan fàcil que resulta canviar coses, podem espatllar la web. Sempre prèvia còpia de seguretat:
function h2_to_h4 ($content) {
$theContent = $content;
$theContent = preg_replace('/<h2>/', '<h4>', $theContent);
$theContent = preg_replace('/<\/h2>/', '</h4>', $theContent);
return $theContent;
}
add_filter('the_content', 'h2_to_h4');