Abre el archivo ./inc/adminfunctions_templates.php y veras algo similar:
Código PHP:
<?php
/**
* Find and replace a string in a particular template through every template set.
*
* @param string The name of the template
* @param string The regular expression to match in the template
* @param string The replacement string
* @param int Set to 1 to automatically create templates which do not exist for that set (based off master) - Defaults to 1
* @return bolean true if updated one or more templates, false if not.
*/
function find_replace_templatesets($title, $find, $replace, $autocreate=1)
{
...
}
Basicamente se explica solo.
$title = El nombre del template.
$find = expresion regular de lo que buscar dentro del template.
$replace = reemplazar lo de arriba con esto, solo si se encuentra.
$autocreate = Crear el template si no existe? Generalmente se pone 0 o false durante la desactivacion, ya que no importa si no existe el template.