Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 wordpress 在常见 wordpress 帖子和页面的不同位置创建一个页面,如下所示:http ://example.com/sitemap.xml 但我想使用 WP Loop 和所有 wordpress 功能请帮助我
您应该使用在文件开头调用“wp 函数”
header('Content-Type: text/html; charset: UTF-8'); require( '../../../../wp-load.php' );
其中 ../../ ... 是文件的路径,wp-load.php具体取决于您放置文件的位置。
wp-load.php
在此之后,您可以按照自己喜欢的方式使用循环。