php 在wordpress函数中添加一个类,用于自定义和创建博客PREV和NEXT链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在wordpress函数中添加一个类,用于自定义和创建博客PREV和NEXT链接相关的知识,希望对你有一定的参考价值。

// add class to the next and previous blog page links
add_filter('next_posts_link_attributes', 'posts_link_attributes');
add_filter('previous_posts_link_attributes', 'posts_link_attributes');

function posts_link_attributes() {
    return 'class="blog_pagination"';
}

// add class to the next and previous indiviaul blog post links
add_filter('next_post_link', 'post_link_attributes');
add_filter('previous_post_link', 'post_link_attributes');
 
function post_link_attributes($output) {
    $code = 'class="blog_pagination"';
    return str_replace('<a href=', '<a '.$code.' href=', $output);
}

以上是关于php 在wordpress函数中添加一个类,用于自定义和创建博客PREV和NEXT链接的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress主题文件夹中的functions.php作用说明

php 在Body中添加类 - WordPress

text 有用的开放图形函数,用于放置在wordpress站点的functions.php中。

markdown 用于预处理字段的WordPress自定义PHP函数在Twig模板中使用之前

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

php WordPress类可以轻松地将自定义菜单项动态添加到菜单中。