将class / id添加到single.php wordpress分页链接

时间:2013-09-24 02:29:13

标签: php jquery wordpress anchor

我有一段代码来获取查询字符串,并在整个单个帖子的分页中继续执行它。问题是我找不到正确选择分页链接的方法来应用此代码。以下是查询字符串的代码:

<script>
$(document).ready(function() {
    // Gets the query string
    var query_string = window.location.href.slice(window.location.href.indexOf('?'));

    // Appends query string to each pagination link
    $('li.testlink a').each(function () {
         var href = $(this).attr('href');
         $(this).attr('href', href + query_string);
    });
});
</script>

问题出在li.testlink a的位置,我无法选择分页链接的锚标记:

<li class="testlink">
    <a href="http://lmfaofacts.com/top-10-strongest-animal-bites/">
        <span class="page-numbers">Previous page</span>
    </a>
    <a href="http://lmfaofacts.com/top-10-strongest-animal-bites/3/">
        <span class="page-numbers">Next page</span>
    </a>
</li>

有关如何将类附加到该锚标签以选择它或其他方法的任何想法?只是简单地使用带有<div> s / <li>的CSS样式选择器似乎不起作用。谢谢!

0 个答案:

没有答案