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.
<?php $totalmonths = 24; for ( $i=0; $i<$totalmonths; $i++ ) { $curyear = $curyear-1; } $output = " <?xml version="1.0"> <blocks> <block title="Article Archive"> <links> "; for ( $i=0; $i<$totalmonths; $i++ ) { "; } $output .= " </links> </block> </blocks>"; echo $output; ?>
以上是关于XML提要-Wordpress文章的每月存档的主要内容,如果未能解决你的问题,请参考以下文章
在 WordPress 中,当用户单击每月存档链接时使用哪个文件?