Wordpress:将年份和月份存储在变量中

时间:2013-04-24 17:38:37

标签: wordpress variables date

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

http://fruitpage/2013/04/

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

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

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

2 个答案:

答案 0 :(得分:2)

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

$year = the_date('Y');

$month = the_date('m');

尝试get_the_time()

答案 1 :(得分:0)

只需使用这些

<?php echo get_the_date('M'); ?> for month
<?php echo get_the_date('Y'); ?> for year