如何自定义the_archive_title()?


40

在我的子主题中archive.php,我有以下代码用于显示存档页面的标题:

    <?php
        the_archive_title( '<h1 class="page-title">', '</h1>' );
    ?>

但这会将我的标题显示为“ Category:Category Title ”,而不是不带前置“ Category:”的标题。

我的第一反应是覆盖get_the_archive_title()wp-includes/general-template。但是从我读到的内容来看,即使使用儿童主题的替代内容,显然我也不应该改变wordpress的核心内容。

那么控制输出的最佳实践是the_archive_title()什么?


将您的解决方案作为单独的答案发布。您也可以不接受我的,也可以接受自己的:-)
Pieter Goosen 2015年

糟糕,我以为我删除了此修改。您的方法最终变得更好,所以我想删除我的方法。我现在就做。
fildred13

Answers:


40

如果您查看的源代码get_the_archive_title(),将会看到提供了一个名为的过滤器,get_the_archive_title您可以通过该过滤器过滤函数的输出。

您可以使用以下内容更改类别页面上的输出

add_filter( 'get_the_archive_title', function ( $title ) {

    if( is_category() ) {

        $title = single_cat_title( '', false );

    }

    return $title;

});

6
这在标题为Archive: Books(其中Books是自定义帖子类型)的存档页面上不起作用。single_cat_title()如果类型是类别标签,则该函数仅返回页面标题。您可以修改答案以包括适用于所有内容类型的解决方案吗?
Quinn Comendant 2015年

@QuinnComendant查看源代码,第1239和1240行:-)。如果您有问题,只需问一个特定于您问题的新问题
Pieter Goosen

1
正确,您必须为他们想要不同标题的每种分类法或帖子类型返回一个替代标题。我发布了一个答案,该答案排除了所有类型的前缀。
Quinn Comendant 2015年

28

接受的答案可Category:从类别存档标题中删除前缀,但不能从其他分类法或帖子类型中删除前缀。要排除其他前缀,有两个选项:

  1. 重建原始get_the_archive_title()功能中使用的所有变体的标题:

    // Return an alternate title, without prefix, for every type used in the get_the_archive_title().
    add_filter('get_the_archive_title', function ($title) {
        if ( is_category() ) {
            $title = single_cat_title( '', false );
        } elseif ( is_tag() ) {
            $title = single_tag_title( '', false );
        } elseif ( is_author() ) {
            $title = '<span class="vcard">' . get_the_author() . '</span>';
        } elseif ( is_year() ) {
            $title = get_the_date( _x( 'Y', 'yearly archives date format' ) );
        } elseif ( is_month() ) {
            $title = get_the_date( _x( 'F Y', 'monthly archives date format' ) );
        } elseif ( is_day() ) {
            $title = get_the_date( _x( 'F j, Y', 'daily archives date format' ) );
        } elseif ( is_tax( 'post_format' ) ) {
            if ( is_tax( 'post_format', 'post-format-aside' ) ) {
                $title = _x( 'Asides', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) {
                $title = _x( 'Galleries', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-image' ) ) {
                $title = _x( 'Images', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-video' ) ) {
                $title = _x( 'Videos', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) {
                $title = _x( 'Quotes', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-link' ) ) {
                $title = _x( 'Links', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-status' ) ) {
                $title = _x( 'Statuses', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) {
                $title = _x( 'Audio', 'post format archive title' );
            } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) {
                $title = _x( 'Chats', 'post format archive title' );
            }
        } elseif ( is_post_type_archive() ) {
            $title = post_type_archive_title( '', false );
        } elseif ( is_tax() ) {
            $title = single_term_title( '', false );
        } else {
            $title = __( 'Archives' );
        }
        return $title;
    });
    
  2. 或者,只需剥离任何看起来像标题前缀的内容(这可能会更改包含单词和冒号字符的实际标题):

    // Simply remove anything that looks like an archive title prefix ("Archive:", "Foo:", "Bar:").
    add_filter('get_the_archive_title', function ($title) {
        return preg_replace('/^\w+: /', '', $title);
    });
    

6

你可以用

echo '<h1 class="page-title">' . single_cat_title( '', false ) . '</h1>';

这在标题为“存档:书籍”(其中“书籍”是自定义帖子类型)的存档页面上不起作用。
那个巴西人

@ThatBrazilianGuy在内部single_cat_title使用single_term_title,它也适用于分类法。确保您的主题未定义以下模板之一:taxonomy-book.phptaxonomy.php,因为它们优先于archive.php。另外,请考虑测试其他答案中的任何一种方法。这个答案已经很老了,在我发布它的时候还算不错,但是我不再为WordPress开发。
Andrei Gheorghiu

6

另一个选择是:

<?php echo str_replace('Brand: ','',get_the_archive_title()); ?>

用您想删除的任何文本替换品牌:

值得研究get_the_archive_title()和the_archive_title()之间的区别the_archive_title()返回一个数组get_the_archive_title()返回一个字符串


the_archive_title()回显标题,而get_the_archive_title()不回显,因此它们基本相同。如果需要更改内容,则可以使用get。
罗伯特(Robert Went)'18年

1

Ben Gillbanks 有一个不错的解决方案,可以处理所有职位类型和分类法:

function hap_hide_the_archive_title( $title ) {
// Skip if the site isn't LTR, this is visual, not functional.
// Should try to work out an elegant solution that works for both directions.
if ( is_rtl() ) {
    return $title;
}
// Split the title into parts so we can wrap them with spans.
$title_parts = explode( ': ', $title, 2 );
// Glue it back together again.
if ( ! empty( $title_parts[1] ) ) {
    $title = wp_kses(
        $title_parts[1],
        array(
            'span' => array(
                'class' => array(),
            ),
        )
    );
    $title = '<span class="screen-reader-text">' . esc_html( $title_parts[0] ) . ': </span>' . $title;
}
return $title;
}
add_filter( 'get_the_archive_title', 'hap_hide_the_archive_title' );

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.