web-dev-qa-db-ja.com

投稿IDで特定の投稿の投稿修正日を取得する

特定の投稿の日付と時刻が表示されるように 'the_modified_date'関数を表示するように変更しました。この情報は、各ページの当社のWebサイトのヘッダーに表示されます。

これを完了するにはどうすればよいでしょうか。

私はタイトルを取得するために使用することができ、その投稿の日付と時刻を表示するのと同じくらい簡単な方法があることを望んでいました。

ご協力ありがとうございました。

2
Brandon Carson

このコードスニペットをfunction.phpに入れると、必要なものが得られます。

function my_theme_wp_title( $title, $sep ) {
    global $post;

    /* my other title cases */

    //get post's modified date
    $m_date = get_the_modified_date();

    //concatenate the current title with the date string, using the separator to be more clear
    $title .= $sep . " " . $m_date;

    return $title;
}
add_filter( 'wp_title', 'my_theme_wp_title', 10, 2 );

基本的に、wp_titleフィルタにフックされたカスタム関数を追加して、wp_title関数を変更し、カスタムロジックを柔軟に追加できます。タイトル表示.

乾杯!

1
Victor Lazov