我在我的 function.php 文件中声明了这个过滤器:
<?php
add_filter('next_posts_link_attributes', 'posts_link_attributes');
function posts_link_attributes() {
return 'class="styled-button"';
}
?>
但把这个拿回来:
致命错误:无法重新声明 posts_link_attributes()(之前在 index.php 中的 functions.php 中声明)
因为我在 index.php 中使用 next_post_link()
有解决方案吗?这不起作用的原因是什么?
谢谢你们的帮助!