wordpress的友情链接默认是在每个页面都有显示的,而别的程序一般都是首页显示的,这样很吃亏有木有?不用怕,我们有办法。而且从某个版本开始,wordpress的友情链接功能没了,需要在functions.php里面加上友情链接的函数:
add_filter('pre_option_link_manager_enabled','__return_true');
才能使用友情链接功能。
然后在functions.php中加入以下代码就能让连接只在首页显示了。
function home_friend_links($output){
if (!is_home()|| is_paged()){
$output = "";
}
return $output;
}
add_filter('wp_list_bookmarks','home_friend_links');//钩子钩到链接上
留下您的宝贵意见