示例#1
0
function hocwp_setup_theme_archive_title($title)
{
    if ('vi' == hocwp_get_language()) {
        $title = hocwp_get_archive_title();
    }
    return $title;
}
function hocwp_the_archive_title($prefix = '')
{
    $title = hocwp_get_archive_title($prefix);
    if (is_tax() || is_category()) {
        $title = hocwp_wrap_tag($title, 'h1', 'page-title entry-title');
    } else {
        $title = hocwp_wrap_tag($title, 'h2', 'page-title entry-title');
    }
    echo $title;
}