在WordPress网站优化过程中,经常需要获取网站的URL来制作网站地图等,当然有特定的WP插件可以做到这个功能,不过小编还是要讲解如何使用PHP获取网站的URL。你可以直接使用以下代码来获取你想要页面的URL: 123456789101112131415161718192021222324252

在WordPress网站优化过程中,经常需要获取网站的URL来制作网站地图等,当然有特定的WP插件可以做到这个功能,不过小编还是要讲解如何使用PHP获取网站的URL。
WordPress怎么获取网站的链接
你可以直接使用以下代码来获取你想要页面的URL:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
require(‘./wp-blog-header.php’);
header("Content-type: text/txt");
header(‘HTTP/1.1 200 OK’);
$posts_to_show = 2000; // 限定获取文章数量
?>
<?php echo ‘http://’.$_SERVER[‘HTTP_HOST’]; ?><?php echo "\n"; ?>
<?php
/* 文章页面 */
header("Content-type: text/txt");
$myposts = get_posts( "numberposts=" . $posts_to_show );
foreach( $myposts as $post ) {
the_permalink();
echo "\n";
}
?>
<?php
/* 单页面 */
$mypages = get_pages();
if(count($mypages) > 0) {
foreach($mypages as $page) {
echo get_page_link($page->ID);
echo "\n";
}
}
?>
<?php
/* 博客分类 */
$terms = get_terms(‘category’, ‘orderby=name&hide_empty=0’ );
$count = count($terms);
if($count > 0){
foreach ($terms as $term) {
echo get_term_link($term, $term->slug);
echo "\n";
}
}
?>
<?php
/* 标签(可选) */
$tags = get_terms("post_tag");
foreach ( $tags as $key => $tag ) {
$link = get_term_link( intval($tag->term_id), "post_tag" );
if ( is_wp_error( $link ) ) {
return false;
$tags[ $key ]->link = $link;
}
echo $link;
echo "\n";
}
?>
温馨提示:本文最后更新于 2023-12-09 15:46 ,某些文章具有时效性,若有错误或已失效,请在下方留言或联系QQ115904045
声明:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA打赏
共{{data.count}}人
人已打赏
wordpress教程

怎么一次删除WordPress主题中的所有帖子

2023-12-9 15:46:41

wordpress教程

WordPress时间日期函数The_time()与Get_the_time()用法

2023-12-9 15:46:43

  • 0 条回复 A文章作者 M管理员
      暂无讨论,说说你的看法吧
    购物车
    优惠劵
    今日签到
    有新私信 私信列表
    搜索

    夕阳无别事,等风也等你

    联系我们