使用wordpress构建主题。在archive.php上我使用这些条件来显示相应的标题。类别和标签正在运行,但日期没有。我不知道我做错了什么。
欢迎任何帮助。
if ( is_category()) {
single_cat_title();
} elseif ( is_tag()) {
single_tag_title();
} elseif ( is_day()) {
get_the_date();
} elseif ( is_month()) {
get_the_date();
} elseif ( is_year()) {
get_the_date('Y');
} else {
echo "Not found";
}
答案 0 :(得分:0)
需要回显函数get_the_date()。
你做得很好,只需要回复日期功能
if ( is_category()) {
single_cat_title();
} elseif ( is_tag()) {
single_tag_title();
} elseif ( is_day()) {
echo get_the_date();
} elseif ( is_month()) {
echo get_the_date();
} elseif ( is_year()) {
echo get_the_date('Y');
} else {
echo "Not found";
}