php WordPress从URL获取年份和月份

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress从URL获取年份和月份相关的知识,希望对你有一定的参考价值。

<?php // ignore this line

// $year and $monthnum are the variables to be used.

$year     = false;
$monthnum = false;
$matches  = array();
$matches2 = array();
$url      = $_SERVER['REQUEST_URI'];

preg_match("/CPT_SLUG_GOES_HERE\/([0-9]{4})\/([0-9]{1,2})\/?$/", $url, $matches);
preg_match("/CPT_SLUG_GOES_HERE\/([0-9]{4})\/([0-9]{1,2})\/page\/?([0-9]{1,})\/?$/", $url, $matches2);

if ( ! empty( $matches ) ) {
  $year     = $matches[2] ? $matches[1] : false;
  $monthnum = $matches[2] ? $matches[2] : false;
} elseif ( ! empty( $matches2 ) ) {
  $year     = $matches2[2] ? $matches2[1] : false;
  $monthnum = $matches2[2] ? $matches2[2] : false;
}

以上是关于php WordPress从URL获取年份和月份的主要内容,如果未能解决你的问题,请参考以下文章

使用下拉菜单动态过滤 Wordpress 帖子(使用 php 和 ajax)

php 根据给定的年份和月份获取该年份该月份的起始和结束时间

在php中获取给定月份和年份的开始和结束unix时间戳

php 按年份,月份获取帖子

只需要从日期获取年份和月份

如何从 Power BI 中的月份编号获取月份名称?