XML提要-Wordpress文章的每月存档

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XML提要-Wordpress文章的每月存档相关的知识,希望对你有一定的参考价值。

In case you need to create your own listing of the last # of trailing months of Archived Wordpress Articles. This one is being used to pull the info onto a Magento page.
  1. <?php
  2. $curyear = date("Y");
  3. $curdate = array();
  4. $totalmonths = 24;
  5.  
  6. for ( $i=0; $i<$totalmonths; $i++ ) {
  7. $newmonth = date("m",strtotime("-$i Months"));
  8.  
  9. if ($newmonth == '12' && date("m") != '12')
  10. $curyear = $curyear-1;
  11.  
  12. $curdate[$i] = array("mnum" => $newmonth, "ynum" => $curyear);
  13. }
  14.  
  15. $output = "
  16. <?xml version="1.0">
  17. <blocks>
  18. <block title="Article Archive">
  19. <links>
  20. ";
  21. for ( $i=0; $i<$totalmonths; $i++ )
  22. {
  23. $output .= "<link target="http://www.outdoorresearchverticulture.com/{$curdate[$i]['ynum']}/".$curdate[$i]['mnum']."/?ec3_listing=disable">". strftime("%B, %Y",strtotime($curdate[$i]['mnum']."/1/".$curdate[$i]['ynum']))." </link>
  24. ";
  25. }
  26.  
  27.  
  28. $output .= "
  29. </links>
  30. </block>
  31. </blocks>";
  32. header("Content-Type: application/rss+xml");
  33. echo $output;
  34.  
  35. ?>

以上是关于XML提要-Wordpress文章的每月存档的主要内容,如果未能解决你的问题,请参考以下文章

WordPress 按年每月存档

在 WordPress 中,当用户单击每月存档链接时使用哪个文件?

自定义帖子类型每年/每月存档

控制 wordpress 存档页面上的帖子数量

centos下wordpress安装主题后创建文章的特×××片无法显示

RSS 提要 XML 文件有多大?