我无法找到更改wp_get_archives()
路径的位置...现在我有路径http://example.com/2015
但我想在2015年之前添加历史记录以便我有网址:
http//example.com/history/2015
。有什么建议吗?
<?php wp_get_archives('type=yearly'); ?>
add_filter( 'get_archives_link', function( $html )
{
if( is_admin() ) // Just in case, don't run on admin side
return $html;
// $html is '<li><a href='http://example.com/hello-world'>Hello world!</a></li>'
$html = str_replace( 'href="http://example.com', 'href="http://example.org', $html );
return $html;
});
我找到了这个,但是当我添加
时没有发生任何事情