在WordPress网站优化过程中,经常需要获取网站的URL来制作网站地图等,当然有特定的WP插件可以做到这个功能,不过小编还是要讲解如何使用PHP获取网站的URL。
你可以直接使用以下代码来获取你想要页面的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"; } ?> |
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。