在inc
文件夹里面的WordPress父主题中我有meta-banner.php
,在这个php文件中我有一些元框,在所有帖子和页面中都包含inc/meta-function.php
。
add_meta_box('my_all_meta1', 'Banner Details', 'my_meta_banner_setup', $type, 'normal', 'high');
function my_meta_banner_setup() {
global $post;
$meta = get_post_meta($post->ID,'_my_meta',TRUE);
// instead of writing HTML here, lets do an include
include_once('meta-banner.php');
// create a custom nonce for submit verification later
echo '<input type="hidden" name="my_meta_noncename" value="' . wp_create_nonce(__FILE__) . '" />';
}
现在我想添加/删除子主题中meta-banner.php
中的一些字段。它不会覆盖简单的复制粘贴子主题中的文件。
我没有得到如何解决这个问题。我得到了一些答案,但没有帮助。
提前谢谢。