我正在尝试创建设置页面。如果我打印索引中的内容,我就能看到它。如果我试图包含它,我看不到任何东西,也看不到错误。
add_options_page(\'My Plugin\', \'My Plugin\', \'manage_options\', \'my-plugin\', array(\'MyPluginSettings\', \'index\'));
我的设置:
class MyPluginSettings
{
public function index()
{
/* I can echo or print here and it works fine ...
* But i can\'t require a file here ... nothing happens
*/
require(\'existing/path/to/a/file.php\');
}
}
?>
怎么了?谢谢