我正在构建我的第一个 wordpress 插件,但似乎遇到了一些问题。
我需要该插件在激活后使用与网站其余部分相同的样式创建一个新页面;以及向链接添加可自定义的路径(/这是路径)。
我研究了如何做到这一点,并得到了一个空白的 .php 文件出现......使用以下代码:
//Template fallback
add_action("template_redirect", 'my_theme_redirect');
function my_theme_redirect() {
global $wpdb;
$plugindir = dirname( __FILE__ );
//A Simple Page
if ( $wp->query_vars[ "pagename" ] == 'event-photo-uploadr' ) {
$templatefilename = 'custom-uplaodr-page.php';
if ( file_exists( TEMPLATEPATH . '/' . $templatefilename )) {
$return_template = TEMPLATEPATH . '/' . $templatefilename;
} else {
$return_template = $plugindir . '/themefiles/' . $templatefilename;
}
do_theme_redirect($return_template);
}
}
function do_theme_redirect($url) {
global $post, $wp_query;
if (have_posts()) {
include($url);
die();
} else {
$wp_query->is_404 = true;
}
}
我现在需要知道的是,如何将这个 .php 文件替换为我的插件文件夹中的文件?我也想知道如何为这个页面创建一个自定义链接,因为它需要是一个隐藏页面,只有那些有链接的人才能看到。
必须全部通过插件运行,并且在插件停用时被删除。
我还想听听有关我的代码的最佳实践和改进的任何提示。谢谢!