在具有背景图像的类的HREF中嵌套NEXT和PREVER

时间:2012-07-07 作者:FlourishDNA

如何将下一个和上一个链接嵌套在a href属性中,该属性在单个帖子页面中具有类和背景图像?

我想让它像下面的东西,这是不工作的。

<a class="next" href="<?php echo $prev; ?>">Previous</a>
<a class="prev" href="<?php echo $next; ?>">Next</a>
以下是指向示例站点的链接:http://ifunnypic.com/dad-i-m-gay_3317.html

谢谢

1 个回复
最合适的回答,由SO网友:Daniel Sachs 整理而成

EDIT

单件。您应该使用的php:<?php previous_post_link(\'%link\', \'Previous\'); ?><?php next_post_link(\'%link\', \'Next\'); ?>. 然后将其添加到函数中。php:

function filter_next_post_link($link) {
    $link = str_replace("rel=", \'class="next" rel=\', $link);
    return $link;
}
add_filter(\'next_post_link\', \'filter_next_post_link\');

function filter_previous_post_link($link) {
    $link = str_replace("rel=", \'class="prev" rel=\', $link);
    return $link;
}
add_filter(\'previous_post_link\', \'filter_previous_post_link\');
虽然这不是这个问题的答案,但要在分类中分页,您应该进行研究next_posts_link_attributesprevious_posts_link_attributes 挂钩。只需将此添加到您的函数中。php:

function next_posts_link_css($content) { 
    return \'class="next"\';
}
function previous_posts_link_css($content) { 
    return \'class="prev"\';
}

add_filter(\'next_posts_link_attributes\', \'next_posts_link_css\' );
add_filter(\'previous_posts_link_attributes\', \'previous_posts_link_css\' );
我只是想澄清一下。您将在模板文件中使用常规分页:

<?php previous_posts_link(\'Previous\') ?>
<?php next_posts_link(\'Next\') ?>

结束

相关推荐

WP Query Returning All Posts

我有一个自定义的WP查询,它返回每个帖子,而不仅仅是查询指定的帖子。我似乎找不到代码有什么问题,所以我肯定遗漏了什么://Process incoming variable if(!empty($_REQUEST[\'region\'])){ $region = $_REQUEST[\'region\']; } else { $region = NULL; } if (empty($region)) { echo \"