需要从WP插件的子目录中调用PHP文件

时间:2015-08-20 16:28:45

标签: php wordpress

请原谅新手问题 - 但我已经打了好几天...... 编写WP插件 - 我创建了一个调用特定函数的WP菜单:

function my_plugin_options() {
if ( !current_user_can( 'manage_options' ) )  {
    wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
}
echo '<div class="wrap">';
echo '<p>This is the page for the main info.</p>';
echo '</div>';

中间的echo语句在页面上打印文本。这就是我想要它做的:从当前列出该文件的位置下来一个子目录,并在该空间中插入一个单独的.PHP文件。任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:0)

自己想出来:

替换中间回声
  document.addEventListener("click",handler,false);

答案 1 :(得分:0)

你可以使用PHP函数dirname() http://php.net/manual/en/function.dirname.php 如果您使用此代码

,您将获得父目录
--snip---
var payNowVal = (Math.round(tec * x) - Math.round(allpmts * x)) / x;