基本上我想使用wordpress函数wp_create_user()
或wp_update_user()
wordpress之外(wordpress目录之外)。
我尝试使用以下所有代码片段加载wordpress环境,我能够在这两种情况下正确使用函数,但问题是这也会加载我不想要的wordpress模板。
First Method:
<?php
define(\'WP_USE_THEMES\', false);
require (\'../blog/wp-load.php\');
?>
Second Method:
<?php
define(\'WP_USE_THEMES\', false);
require (\'../blog/wp-blog-header.php\');
?>
Directory Structure:
/blog
|
|_ Wordpress installed here
/admin
|
|_ admin.php (I want to use wp functions here)
注意:我正在使用
Writr theme 在我的wordpress博客中。
最合适的回答,由SO网友:Ram Patra 整理而成
我不知道这是怎么回事,但它确实起了作用。
起初,我在文件的开头加载了wp环境,它加载了我不想要的wp模板(wp主题)。
但是现在,我在文件的末尾加载了wp环境,它工作了。