web-dev-qa-db-ja.com

The_archive_title()をカスタマイズする方法?

私の子供用テーマのarchive.phpには、私のアーカイブページのタイトルを表示するための以下のコードがあります。

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

しかし、それは私のタイトルを単に "Category:"のないタイトルではなく "Category: Category Title "として表示します。

私の最初の本能はwp-includes/general-templateからget_the_archive_title()をオーバーライドすることでした。しかし私が読んだものから、明らかに私はこれまでに子テーマからのオーバーライドがあっても、ワードプレスのコアのものを変更することは想定されていませんでした。

それでは、the_archive_title()の出力を制御するためのベストプラクティスは何でしょうか。

38
fildred13

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;

});
37
Pieter Goosen

受け入れられた答えはカテゴリアーカイブタイトルからCategory:接頭辞を削除するように働きますが、他の分類学またはポストタイプを削除しません。他のプレフィックスを除外するには、2つの選択肢があります。

  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. あるいは、単にタイトルの接頭辞のように見えるものを削除するだけです(これは、Wordにコロン文字が続く実際のタイトルを変更することがあります)。

    // 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);
    });
    
28
Quinn Comendant

あなたが使用することができます

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

他の選択肢は:

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

ブランドを置き換えてください:あなたが取り除きたいと思うどんなテキストでも。

Get_the_archive_title()とthe_archive_title()の違いを調べる価値があります。

6
rhysclay

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' );
0
Dan Knauss

"Archives:"というテキストがなくてもpost_type_archive_title()を使ってアーカイブのタイトルを取得できます。

0
Mark Williams