将此代码段放入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 函数,使我们能够灵活地在标题显示中添加自定义逻辑。
干杯