独立的“SEO 智能链接”插件功能
任何人都可以提供代码片段如何实现“SEO 智能链接”之类的东西?
它的作用如下:SEO 智能链接可以自动将您的帖子和评论中的关键字和短语与博客上相应的帖子、页面、类别和标签链接起来。
因此,例如,我将提供关键字+链接数组,将其传递给函数,函数必须在帖子中搜索这些单词,然后替换它们并创建链接。
Anybody can provide code snippet how to implement something like "SEO Smart Links" does ?
Here is what it does: SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags on your blog.
So e.g. I will provide array of keywords + links, pass it to the function and function must search for those words in post and then replace them and create links.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
preg_replace(点击RTM链接)可以给你你想要的正在寻找。这是一个 PHP 函数,它接受一个字符串,在该字符串中查找任何给定的字符串,并将其替换为另一个字符串。它具有完整的正则表达式支持。
preg_replace (click on the link to RTM) can give you what you are looking for. This is a PHP function that takes a string, looks for any given string in that string, and replaces it with another string. It has full regular expression support.