WordPress怎么获取网站的链接

在WordPress网站优化过程中,经常需要获取网站的URL来制作网站地图等,当然有特定的WP插件可以做到这个…

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

类别:WordPress 进阶教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册