我想制作一个目标网页。如果插件检测到一些GET或POST请求,它应该覆盖wordpress主题并显示它自己的。
它会以某种方式工作:
if (isset($_GET['action']) && $_GET['action'] == 'myPluginAction'){
/* do something to maintain action */
/* forbid template to display and show plugin's landing page*/
}
我熟悉WP Codex,但我不记得是否有任何功能可以做到这一点。当然,我用谷歌搜索没有结果。
提前感谢任何想法。
答案 0 :(得分:23)
你需要钩子template_include
。它似乎没有在食典委中记录,但您可以在SO或WordPress StackExchange
<?php
/**
* Plugin Name: Landing Page Custom Template
*/
add_filter( 'template_include', 'so_13997743_custom_template' );
function so_13997743_custom_template( $template )
{
if( isset( $_GET['mod']) && 'yes' == $_GET['mod'] )
$template = plugin_dir_path( __FILE__ ) . 'my-custom-page.php';
return $template;
}
<?php
/**
* Custom Plugin Template
* File: my-custom-page.php
*
*/
echo get_bloginfo('name');
使用 ?mod=yes
访问网站的任何网址都会呈现插件模板文件,例如:http://example.com/hello-world/?mod=yes
。
答案 1 :(得分:-1)
你需要在你的插件目录中创建一个'/ woocommerce /'文件夹,在woocommerce中你需要添加一个文件夹,比如电子邮件'电子邮件',并将所需的模板放在'/ emails /'中以覆盖。只需将此代码复制粘贴到插件的main.php中即可。
<?php
/**
* Plugin Name: Custom Plugin
*/
function myplugin_plugin_path() {
// gets the absolute path to this plugin directory
return untrailingslashit( plugin_dir_path( __FILE__ ) );
}
add_filter( 'woocommerce_locate_template', 'myplugin_woocommerce_locate_template', 10, 3 );
function myplugin_woocommerce_locate_template( $template, $template_name, $template_path ) {
global $woocommerce;
$_template = $template;
if ( ! $template_path ) $template_path = $woocommerce->template_url;
$plugin_path = myplugin_plugin_path() . '/woocommerce/';
// Look within passed path within the theme - this is priority
$template = locate_template(
array(
$template_path . $template_name, $template_name
)
);
// Modification: Get the template from this plugin, if it exists
if ( ! $template && file_exists( $plugin_path . $template_name ) )
$template = $plugin_path . $template_name;
// Use default template
if ( ! $template )
$template = $_template;
// Return what we found
return $template;
}
?>