Wordpress - 仅在特定页面上显示元数据

时间:2016-07-09 19:28:14

标签: php wordpress plugins

开发wordpress插件,我通过index.php文件创建页面,此页面还使用自定义模板,要求用户在元框中编辑信息。

我之前已经添加了元数据到插件,但从未出现过这种情况 - 我如何指定仅在这一页上显示的元框?

对所有建议都开放 - 我确信这很简单!

谢谢, 艾伦

1 个答案:

答案 0 :(得分:3)

将此添加到functions.php

add_action('admin_init','my_meta_init');
function my_meta_init()
{
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;
// checks for post/page ID
if ($post_id == '84')
{
    add_meta_box('my_all_meta_1', 'My Custom Meta Box 1', 'my_meta_setup_1', 'page', 'normal', 'high');
}
$template_file = get_post_meta($post_id,'_wp_page_template',TRUE);
// check for a template type
if ($template_file == 'home.php')
{
    add_meta_box('my_meta_2', 'My Custom Meta Box 2', 'my_meta_setup_2', 'page', 'normal', 'high');
}

它检查编辑的页面是否具有正确的ID或使用模板。选择一个并更改ID,模板名称。