更改NEXT_POSTS_LINK();和PREVICE_POSTS_LINK();

时间:2015-01-01 作者:Raunak Hajela

我们使用以下两个函数来显示分页。

<?php next_posts_link( \'Older Entries »\'); ?>

<?php previous_posts_link( \'Newer Entries »\'); ?>
上述两个函数将输出如下内容

<a href="page link goes here">Older Entries »</a>
<a href="page link goes here">Newer Entries »</a>
是否有任何方法可以使用锚链接添加额外属性??

例如

<a href="page link goes here" class="name of the class" data-hover="Previous">Older</a>

1 个回复
SO网友:Raunak Hajela

我几乎没有搜索,做了这个,这是有效的。

add_filter(\'next_posts_link_attributes\', \'posts_link_attributes_1\');
add_filter(\'previous_posts_link_attributes\', \'posts_link_attributes_2\');

function posts_link_attributes_1() {
    return \'data-hover="Next" class="your class here"\';
}
function posts_link_attributes_2() {
    return \'data-hover="Previous" class="your class here"\';
}

结束

相关推荐

Pagination and Related Posts

是否可以对嵌入在single中的以下相关POST代码使用分页。我的主题的php。 <?php // for use in the loop, list 5 post titles related to first tag on current post $tags = wp_get_post_tags($post->ID); if ($tags) { $first_tag = $