我有一个简单的函数(在我的主题中的functions.php中),它将类添加到导航链接
add_filter('next_posts_link_attributes', 'posts_link_attributes');
add_filter('previous_posts_link_attributes', 'posts_link_attributes');
function posts_link_attributes() {
if (is_home() || is_front_page()) {
if (current_filter() == 'previous_posts_link_attributes') {
return 'class="prevlink ajax"';
}
elseif (current_filter() == 'next_posts_link_attributes') {
return 'class="nextlink ajax"';
}
}
}
我需要这只能在我的主页上工作,但它不起作用。 有人可以帮帮我吗?
答案 0 :(得分:0)
我解决了问题,将过滤器添加到index.php
add_filter('next_posts_link_attributes', 'posts_link_attributes');
add_filter('previous_posts_link_attributes', 'posts_link_attributes');
我不知道这是否正确但它是否正常工作。它会引起任何问题吗?