使用模板选择器(Page UI)创建自定义Wordpress帖子类型?

时间:2012-11-29 01:42:36

标签: php wordpress wordpress-theming

我知道如何创建自定义帖子类型。通过查看Codex,我应该能够创建一个行为类似于页面的自定义帖子类型,特别是能够使用模板选择器弹出窗口和类别/标签选择器分配模板。

到目前为止,我得到的只是基本的编辑器,我可以得到一个精选的图像选择器。但我正在寻找的基本上是一个我可以视为自定义帖子类型的页面。

编辑:我认为这很明显,但我是在使用functions.php:

register_post_type( hh_town,
array(
    'labels' => array(
        'name' => __( 'Towns' ),
        'singular_name' => __( 'Town' ),
        'add_new' => _x('Add Town', 'towns'),
              'add_new_item' => __('Add Town'),
              'edit' => _x('Edit Towns', 'Towns'),
              'edit_item' => __('Edit Town'),
              'new_item' => __('New Town'),
              'view' => _x('View Town', 'towns'),
              'view_item' => __('View Town')
    ),
    'public' => true,
    'has_archive' => true,
    'hierarchical' => true,
    'show_ui' => true,
    'supports' => array('title','editor','page-attributes','thumbnail', 'custom-fields'),
    'capability_type' => 'page',
    'taxonomies' => array('post_tag','category')
)
);

2 个答案:

答案 0 :(得分:1)

旧线程,但以防万一有人遇到这个问题:您实际上不再需要任何自定义元框。如果您创建类似的模板 template-my-template.php并将其添加到顶部

<?php
/*
Template Name: My Template
Template Post Type: project, report, event
*/

然后,Template Post Type中列出的任何也支持页面属性(add_post_type_support( 'my_post_type', ['page-attributes'] );)的自定义帖子类型都将允许模板选择。

答案 1 :(得分:0)

只需将此代码添加到functions.php

即可
add_action( 'add_meta_boxes', 'add_custom_page_attributes_meta_box' );
function add_custom_page_attributes_meta_box(){
global $post;
    if ( 'page' != $post->post_type && post_type_supports($post->post_type, 'page-attributes') ) {
        add_meta_box( 'custompageparentdiv', __('Template'), 'custom_page_attributes_meta_box', NULL, 'side', 'core');
    }
}

function custom_page_attributes_meta_box($post) {
    $template = get_post_meta( $post->ID, '_wp_page_template', 1 ); ?>
    <select name="page_template" id="page_template">
        <?php $default_title = apply_filters( 'default_page_template_title',  __( 'Default Template' ), 'meta-box' ); ?>
        <option value="default"><?php echo esc_html( $default_title ); ?></option>
        <?php page_template_dropdown($template); ?>
    </select><?php
}

add_action( 'save_post', 'save_custom_page_attributes_meta_box' );
function save_custom_page_attributes_meta_box( $post_id ) {
    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
    if ( isset( $_POST['post_type'] ) && 'page' == $_POST['post_type'] ) return;
    if ( ! current_user_can( 'edit_post', $post_id ) ) return;
    if ( ! empty( $_POST['page_template'] ) && get_post_type( $post_id ) != 'page' ) {
        update_post_meta( $post_id, '_wp_page_template', $_POST['page_template'] );
    }
}