wordpress定制

当前位置: HOME > 开源文档 > 让wordpress的友情链接只在首页显示

建站,优化,推广

让wordpress的友情链接只在首页显示

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');//钩子钩到链接上

留下您的宝贵意见

您的电子邮箱地址不会被公开。 必填项已用*标注

12341