我在上使用过滤器get_archives_link
对于HTML输出,我尝试复制默认值aria-current="page"
上的属性<a>
当我们在存档页上时标记。
if ( ! function_exists( \'o2_archives_html\' ) ) :
function o2_archives_html( $link_html, $url, $text, $format, $before, $after ) {
if ( \'html\' === $format )
$link_html = "\\t<li>$before<a href=\'$url\'><span class=\'label\'><span class=\'title\'>$text</span></span></a>$after</li>\\n";
return $link_html;
}
endif; // o2_archives_html()
add_filter( \'get_archives_link\', \'o2_archives_html\', 10, 6 );
我想说一句;“活动”;上的类
<li class="active">
标记时间,例如2022年2月
site.com/blog/2022/02/page/2/
.
这是什么情况?