En el fuctions.php no me aparece nada para quitarlo...
Código:
// Generates Custom Fields
function get_custom_field_value($szKey, $bPrint = false) {
global $post;
$szValue = get_post_meta($post->ID, $szKey, true);
if ( $bPrint == false )
{
return $szValue;
}
else { echo $szValue; }
}
O tengo que buscar en algún otro archivo? :/
Gracias :)