当前位置:首页 > 网络科技 > WordPress 实现 wp_list_bookmarks 自定义友情链接排除调用

WordPress 实现 wp_list_bookmarks 自定义友情链接排除调用

8个月前 (08-31)admin网络科技21

wp_list_bookmarks 函数是 WordPress 提供的可以通过后台添加设置友链的一个功能,相当的方便和实用,但是最近子凡遇到一个不够完善的地方,那就是 wp_list_bookmarks 函数中 categorize 参数为 false 时,可以得到最极简的链接列表,但是与此同时就无法使用 exclude_category 参数排除链接分类目录,所以子凡就来提供一个方法。

首先可能由于你使用的 WordPress 最新版本,导致 WordPress 后台根本没有“链接”管理这个菜单,这是由于 WordPress 3.5 后默认隐藏了链接管理功能,所以显示只需要你在当前主题 functions.php 文件中加入一行代码即可:

1
2
//WordPress 恢复链接管理功能
add_filter( 'pre_option_link_manager_enabled', '__return_true' );

回到正题,还是简单的说一下子凡的思路,WordPress 链接管理其实主要就是用于我们常说的友情链接来使用,而友情链接一般需要在首页展示,但是许多的情况下又并不是需要将所有链接都展现到首页,所以子凡要分享的就是如何在首页也能完全实现友链的自定义排除。

1
2
3
4
5
6
7
8
9
10
11
12
$args = array(
	'limit'			=> -1,//显示链接的数量
	'exclude_category'	=> 11,//排除链接的分类目录 ID
	'echo'			=> 0,//不输出
);
 
$op = '';
preg_match_all('/<a .*?>.*?</a>/', wp_list_bookmarks( $args ), $links);
foreach($links[0] as $link){
	$op .= '<li>'.$link.'</li>';
}
echo '<ul>'.$op.'</ul>';

输出代码效果:

1
<ul><li><a href="https://tearsnow.com" target="_blank" rel="noopener noreferrer">TearSnow 泪雪</a></li><li><a href="https://zhan.leiue.com" target="_blank" rel="noopener noreferrer">泪雪建站</a></li></ul>

好啦,就是这样啦,本代码主要用于首页的代码调用,并且需要将链接做分类,这样才能利用链接分类目录 ID 来实现排除,解决了 categorize 参数无法排除的问题,也避免了不使用 categorize 参数也能将代码精简的目的。

更多关于WordPress优化及疑问可以添加留言

w.haolusi.com

本文链接:https://w.haolusi.com/wordpress-wp_list_bookmarks.html

扫描二维码推送至手机访问。

版权声明:本文由豪鲁斯兴趣网发布,如需转载请注明出处。

本文链接:https://w.haolusi.com/?id=2313

标签: WordPress优化
分享给朋友:

“WordPress 实现 wp_list_bookmarks 自定义友情链接排除调用” 的相关文章

Embracing Minimalism: The Path to a Simpler, More Fulfilling Life

Embracing Minimalism: The Path to a Simpler, More Fulfilling Life

In a world rife with constant distractions and an overwhelming flow of information, Minimalism has emerged as a beacon of simplicity and cla...

In terms of equipment acquisition, what improvements can be made?

In terms of equipment acquisition, what improvements can be made?

In terms of equipment acquisition in World of Warcraft, Players often discuss some areas that can be improved to enhance the gaming experien...

Influencer Marketing: Transforming Modern Advertising

Influencer Marketing: Transforming Modern Advertising

Influencer Marketing has emerged as a pivotal strategy in modern advertising, leveraging the reach and credibility of social media personalities...

MYSQL字符集有哪些

MYSQL字符集有哪些

MySQL 中的字符集是用来确定数据库中字符数据的编码方式,它决定了如何存储和检索数据。MySQL 中常用的字符集:UTF8:UTF-8 是一种 Unicode 字符编码方式,它可以表示世界上大部分的文字字符。MySQL 中的 UTF8 字符集最多只能存储 3 字节的 UTF-8 编码字符,...

最新免费可用!ChatGPT 4.0/4o/3.5 镜像 Mirror|免翻直链中文镜像(2024年8月更新)

最新免费可用!ChatGPT 4.0/4o/3.5 镜像 Mirror|免翻直链中文镜像(2024年8月更新)

本篇文章目录|Table of Contents Hide ChatGPT 4.0/4o/3.5 镜像站列表ChatGPT镜像更新历史什么是Cha...

Timeline Migrate Tools Boxset 剪辑时间线字幕迁移工具套件|FCPX vs PR|XML vs FCPXML|SRT vs XML|macOS|测试教程 Tutorial

Timeline Migrate Tools Boxset 剪辑时间线字幕迁移工具套件|FCPX vs PR|XML vs FCPXML|SRT vs XML|macOS|测试教程 Tutorial

本篇文章目录|Table of Contents Hide Final Cut Pro X 提取音频给音频编辑X2Pro Audi...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。