How to Make Archive ShortCode

时间:2012-08-13 作者:Ryu

我检查了wordpress上是否有一个短代码。com,但似乎没有内置的方式在wordpress上添加存档的短代码。组织网站。我知道repo中有一个插件,但它已经使用了2年,代码没有更新。

那么让我们假设我是否要返回存档。以下短代码不起作用。我有什么遗漏吗?还是有什么办法可以让这一切顺利进行?

 function archive{


 return \'<?php wp_get_archives(\'type=monthly\'); ?>\';

 }
 add_action(\'archives\', \'archive\');

1 个回复
最合适的回答,由SO网友:Joseph Leedy 整理而成

这不是一个短代码。看看Shortcode API 有关如何执行此操作的示例。

以下是您的具体示例:

function wpse61674_archives_shortcode_cb( $atts ) {
    return wp_get_archives(\'type=monthly\');
}
add_shortcode( \'archives\', \'wpse61674_archives_shortcode_cb\' );

结束