创建一个包含所有功能的wordpress文件

时间:2014-02-27 10:45:42

标签: wordpress wordpress-plugin

你好我想创建一个文件,用我的产品生成一个自定义的xml, 我创建xml没有问题, 但是我想连接到数据库并使用WP内置功能执行查询。

我该怎么做?例如,我添加此文件buildXml.php 到项目文件夹。

<?php
//buildXml.php

require(WORDPRESS_FUNCTIONALITY);

// The Query
query_posts( $args );

// The Loop
while ( have_posts() ) : the_post();
    echo 'stuff';
endwhile;

// Reset Query
wp_reset_query();

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您应该可以致电wp-load.php(根据对this answer的评论)。