wordpress系统网站怎么根据网页名称打开对于文章

WBOY
Release: 2016-06-13 13:11:13
Original
879 people have browsed it

wordpress系统网站如何根据网页名称打开对于文章?
比如
http://tanteng.sinaapp.com/2012/09/last-summer-holidays/
这是我博客的一篇文章,文章自定义别名last-summer-holidays,它保存在哪里?又是如何根据这个名称打开对应的文章的?
谢谢!

------解决方案--------------------
保存在数据库里 wp.wp_post
------解决方案--------------------
这和路由控制有什么关系?看不懂。
自己看官方数据库结构说明。
http://codex.wordpress.org/zh-cn:%E6%95%B0%E6%8D%AE%E5%BA%93%E6%8F%8F%E8%BF%B0#Table:_wp_posts

此外,wordpress是根据URL地址进行数据库查询,从而获取相应的文章数据。
可以参考官方说明,用的就是这个道理。
http://codex.wordpress.org/zh-cn:%E5%87%BD%E6%95%B0%E5%8F%82%E8%80%83/query_posts
------解决方案--------------------
差不多吧。wordpress是利用$_SERVER['REQUEST_URI']获取url的last-summer-holidays部分,然后进行数据库查询。它有自己的一套 url_rewrite 规则。
具体文件在wp-includes/class-wp.php里的function parse_request()
可以进一步参阅:(不过这次没有中文)
http://codex.wordpress.org/Query_Overview#More_on_WP-.3Eparse_request.28.29

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!