WP获取仅存档文本而不是链接

时间:2013-09-18 作者:user33913

我使用此功能

wp_get_archives( array( \'type\' => \'yearly\', \'limit\' => 12, \'format\' => \'html\' ) );
我得到了这个:

<a title="2013" href="http://wordpress11.localhost/?m=2013">2013</a>
我只需要“2013”。有人知道怎么做吗?

1 个回复
SO网友:Got The Fever Media

完全尝试一下,怎么样:

wp_get_archives( array( \'type\' => \'yearly\', \'limit\' => 12, \'format\' => \'custom\', \'before\' => \'<span class="year">\', \'after\' => \'</span>\' ) );

结束

相关推荐

在Functions.php中创建“无文件”页面模板

(所谓“页面模板”,我指的是具有\"Template Name\" header 可在管理页面的“模板”下拉字段中选择。)在多个实例中,我构建了页面模板,可以通过挂接到\\u内容或pre\\u get\\u帖子或类似的内容来完成。这让我想知道是否有一种方法可以在functions.php 或者不创建主题文件本身的插件。我想这样做的原因:在我想到的场景中,我通常只是复制页面。php几乎一字不差。这意味着将来对页面的任何更改。php需要制作两次。随着儿童主题的更新,这更加令人痛苦</我喜欢“模板”字段U