0

在 Wordpress 网站上的特定存档页面上,我有以下网址:

http://fruitpage/2013/04/

年份和月份数字告诉 Wordpress 要显示哪些帖子(2013 年 4 月的帖子)。有没有办法使用 Wordpress 功能将 2013 存储在一个变量中,将 04 存储在另一个变量中?

目标是能够回显 url 中的年份和月份,例如:

echo $urlYear; //echoes out 2013 that is found in the url
echo $urlMonth; //echoes out 04 that is found in the url
4

2 回答 2

2

在存档页面中,您可以在 post 循环中the_date()简单调用函数

$year = the_date('Y');

$month = the_date('m');

get_the_time()也试试

于 2013-04-24T18:15:44.823 回答
0

就用这些

<?php echo get_the_date('M'); ?> for month
<?php echo get_the_date('Y'); ?> for year
于 2016-08-30T10:25:43.983 回答