Hello
I would like to use function.php file in my priavte plugins and I didn't find sutable Hook Location
I need to change this line :
PHP Code:
return $datefunc($format, $timestamp_adjusted);
with this :
PHP Code:
$new=$datefunc($format, $timestamp_adjusted);
$new=preg_replace('/AM/', 'After Morining', $new);
$new=preg_replace('/PM/', 'P - M', $new);
return $new;