PHP 将类添加到previous_posts_link()和next_posts_link()在WordPress中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将类添加到previous_posts_link()和next_posts_link()在WordPress中相关的知识,希望对你有一定的参考价值。

add_filter('next_posts_link_attributes', 'posts_link_attributes');
add_filter('previous_posts_link_attributes', 'posts_link_attributes');

function posts_link_attributes(){
	return 'class="styled-button"';
}

以上是关于PHP 将类添加到previous_posts_link()和next_posts_link()在WordPress中的主要内容,如果未能解决你的问题,请参考以下文章

php 将类添加到WordPress摘录

php 将类添加到导航项(li)

如何使用 PHP 将类添加到“a href”元素?

php 将类添加到post_class函数wordpress(作为最后一个类)

将类添加到按钮后功能不起作用

PHP 将类添加到previous_posts_link()和next_posts_link()在WordPress中