导出漂亮的永久链接列表和帖子标题

编程入门 行业动态 更新时间:2024-10-26 02:26:22
本文介绍了导出漂亮的永久链接列表和帖子标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

正在寻找一种方法来导出 WordPress 中带有相应帖子标题的漂亮永久链接列表.寻找定义的实际永久链接结构而不是短链接.我想如果必须的话,我会使用一个短链接,但我更喜欢完整的永久链接.

Looking for a way to export a list of pretty permalinks in WordPress with the corresponding post title. Looking for the actual permalink structure defined not the shortlink. I suppose if I have to, I will use a short link, but I prefer the full permalink.

推荐答案

这是一个独立的 PHP 文件,您可以将其保存到您网站的根目录中,名为 /export.php 之类的内容,当您调用它时使用您的浏览器,它会发送一个制表符分隔的纯文本 帖子列表,其中包含漂亮的永久链接、帖子标题和(作为奖励)帖子类型.

Here's a standalone PHP file you can save into the root of your website called something like /export.php and when you call it with your browser it will send a tab-delimited plain text list of posts with the pretty permalink, the post title and (as a bonus) the post type.

只需在您的浏览器中加载 URL,然后另存为"到一个文本文件中,然后您就可以在 Excel 中加载或以其他方式处理它.

Just load the URL in your browser and then "save as" to a text file you can then load in Excel or however else you need to process it.

<?php include "wp-load.php"; $posts = new WP_Query('post_type=any&posts_per_page=-1&post_status=publish'); $posts = $posts->posts; /* global $wpdb; $posts = $wpdb->get_results(" SELECT ID,post_type,post_title FROM {$wpdb->posts} WHERE post_status<>'auto-draft' AND post_type NOT IN ('revision','nav_menu_item') "); */ header('Content-type:text/plain'); foreach($posts as $post) { switch ($post->post_type) { case 'revision': case 'nav_menu_item': break; case 'page': $permalink = get_page_link($post->ID); break; case 'post': $permalink = get_permalink($post->ID); break; case 'attachment': $permalink = get_attachment_link($post->ID); break; default: $permalink = get_post_permalink($post->ID); break; } echo " {$post->post_type} {$permalink} {$post->post_title}"; }

希望这会有所帮助.

-迈克

附言我使用了标准的 WordPress WP_Query(),但也包含了一个注释掉的 SQL,以防您更喜欢(或需要)使用它.

P.S. I used the standard WordPress WP_Query() but also included a commented-out SQL in case you prefer (or need) to use it instead.

更多推荐

导出漂亮的永久链接列表和帖子标题

本文发布于:2023-10-12 17:32:21,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1485392.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:漂亮   链接   标题   帖子   列表

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!