1

下面是我为元框提供的一些代码,是否有任何特定方法可以将其限制为单个页面模板,例如template-servicesinner.phpor page-plain.php

$prefix = 'tga_';

$meta_boxes[] = array(
'id' => 'project-box-1',    // meta box id, unique per meta box
'title' => 'Project Box 1', // meta box title
'pages' => array('page'),   // post types, accept custom post types as well, default is     array('post'); optional
'context' => 'normal',      // where the meta box appear: normal     (default), advanced, side; optional
'priority' => 'high',       // order of meta box: high (default), low; optional
'fields' => array(
    array(
        'name' => 'Review thumbnail',
        'desc' => 'Only insert a thumbnail for you review here if you are showing reviews on the homepage (thumbnail should be at least 600x300px). Insert full path to the image, eg. http://yoursite.com/thethumb.jpg',
        'id' => $prefix . 'review_thumb',
        'type' => 'text',
        'std' => ''
    ),
4

2 回答 2

2

元框的隐藏/显示需要在更改下拉字段后选择“更新”。

function add_meta_box() {
    global $post;
    if(!empty($post)) {
        $pageTemplate = get_post_meta($post->ID, '_wp_page_template', true);

        if($pageTemplate == 'your-page-template-here.php' ) {
            add_meta_box( $id, $title, $callback, 'page', $context, $priority, $callback_args );
        }
    }
}
add_action( 'add_meta_boxes', 'add_meta_box' );

只需根据需要更新第 6 行和第 7 行。

于 2014-12-07T21:50:08.920 回答
1

就在这里。最用户友好的方式是使用 jQuery。您必须听取下拉列表中的更改#page_template。并在页面加载时运行相同的功能,如果模板 == 某些东西,则显示/隐藏元框

脚本使用wp_footer-$hook或加载admin_print_scripts-$hook。它已包含在以下Wordpress 答案中:

于 2013-09-30T00:50:34.680 回答