我想提取我的Wordpress帖子中包含的URL

时间:2016-08-09 07:30:38

标签: mysql wordpress

我的博客中有大约1K的帖子。每个帖子都包含类似“www.example.com/abcd.html”或“www.example.com/1234.html”的网址。

我想将每个帖子中的这些网址解压缩到一个文件中。

是否有任何查询可以完成这项工作?

谢谢,

2 个答案:

答案 0 :(得分:0)

 This will display all post link with title
 <?php  query_posts('posts_per_page=-1'); ?>
 <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
 <?php 
 $content = $urls = wp_extract_urls( get_the_content() );
 echo "<pre>";
 print_r($content);
 echo "<pre>";
 endwhile;
 endif; ?>

答案 1 :(得分:0)

在wordpress中提取URL并不容易提取。如果有可用插件,为什么要付出更多努力呢?

安装以下插件并以CSV格式导出

https://wordpress.org/plugins/export-all-urls/