我们的需要:获取wp_posts表里面post_content内容里面的网址
比如post_content内容网址格式为:<a rel="external nofollow" target="_blank" href="https://www.xxxxx.cn/abg/ddd/eee/wenjian.rar" >下载地址</a>,我们要如何才可以提取到这里面的网址呢?
我们先建一个临时表wp_content,设置两个字段,id和post_content,id为主键、bigint数据类型自增字段,post_content为longtext字段
CREATE TABLE `wp_content` ( `id` BIGINT NOT NULL AUTO_INCREMENT , `post_content` LONGTEXT NOT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB;
然后执行下面的数据表插入命令:
insert into wp_content (id,post_content) select
null,
substr(reverse(substr(reverse(post_content),1,instr(reverse(post_content),'nc.ijiziefnaim.www')+25)),
1,
instr(reverse(substr(reverse(post_content),1,instr(reverse(post_content),'nc.ijiziefnaim.www')+25)),'"')-1)
from wp_posts,wp_term_relationships,wp_term_taxonomy
where ID=object_id
and wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id
and post_type="post"
and post_status = "publish"
and wp_term_relationships.term_taxonomy_id = 111
and taxonomy = "category"
后面的from、、where、、这一段是选出分类id为111的wp_posts里面的post_content
谷歌英文关键词搜索:为什么95%的人都是错误的
关键词搜索(Keyword Research)可以说是做Niche和Affiliate的关键,找到一个有价值的关键词也就意味着你已经成功了80%,剩下的20%只需要你按部就班的执行和操作就可以了。但是...
宝塔面板出错AttributeError: module ‘public’ has no attribute ‘get_size_total’
AttributeError: module 'public' has no attribute 'get_size_total' REQUEST_DATE: 2024-07-03 11:10:50 ...
什么是SEO?这里有20个关于SEO的基础概念
如果你拥有一个网站或独立博客,或者你的工作多少和互联网有关,那你一定耳濡目染多多少少对SEO(搜索引擎优化)有一定了解。本文将列举其中20个SEO领域最常用的名词和概念。 这里要介绍的内容只适合新手和...
Google Adsense中的锚定广告介绍以及开启和关闭方法
近期登陆Google Adsense提示上述信息: 锚定广告将于 7 月 19 日之后开始在较宽的屏幕(例如桌面设备)上展示 官方对锚定广告也有解释说明: 锚定广告现在支持更大范围的屏幕尺寸。对于启用...
我的微信
我的微信
微信扫一扫
评论