将元框添加到自定义帖子类型不起作用

时间:2019-04-18 01:48:51

标签: php wordpress plugins custom-post-type meta-boxes

我已经尝试了很多方法来解决此问题,对插件编码我还很陌生,但似乎无法使它正常工作。

我已经创建了一个很好的自定义帖子类型(“图书”)。现在,我正在尝试向其中添加元框。我似乎无法获得正确连接的编码。

我尝试将每个元框的子弹添加到“支持”中,我尝试了函数和add_meta_box的各种实例,以及将不同的内容放置在“ register_meta_box_cb”下,但我正在做的似乎没有任何作用。

感谢您的帮助。

// Register Custom Post Type
function post_type_book() {


    $args = array(
        'label'                 => __( 'book', 'author_station' ),
        'description'           => __( 'Custom Book Entry', 'author_station' ),
        'supports'              => array('title'),
        'taxonomies'            => array( 'genres', 'series', 'tags' ),
         'register_meta_box_cb' => ('as_add_book' ),
        'labels'                => $labels,
        'hierarchical'          => false,
        'public'                => true,
        'show_ui'               => true,
        'show_in_menu'          => false,
        'menu_position'         => 20,
        'show_in_admin_bar'     => true,
        'show_in_nav_menus'     => true,
        'can_export'            => true,
        'has_archive'           => true,
        'exclude_from_search'   => false,
        'publicly_queryable'    => true,
         'rewrite' => array('slug' => 'Book'),
        'capability_type'       => 'page',

    );
    register_post_type( 'as_book', $args );

}

function as_add_book( $meta_boxes ) {
    add_meta_box(
        'add_meta_boxes',
        array( $this, 'as_add_book_boxes' ));

     $types = array('post', 'page', 'book');

   if (in_array($types)) {
      add_meta_box(
        'as_add_book',
        'add_meta_boxes',
        'Book',
        'as_add_book_callback',
        $types,
        'normal',
        'high'
      );

   }
    $prefix = 'as_';


    $meta_boxes[] = array(
        'id' => 'as_add_book',
        'title' => esc_html__( 'Book', 'author_station_book' ),
        'pages'=> array('as_book'),
        'context' => 'advanced',
        'priority' => 'high',
        'autosave' => 'false',
        'fields' => array(
            array(
                'id' => $prefix . 'book_cover',
                'type' => 'image',
                'name' => esc_html__( 'Book Cover', 'author_station_book' ),
            ),
            array(
                'id' => $prefix . 'book_title',
                'type' => 'text',
                'name' => esc_html__( 'Title', 'author_station_book' ),
            ),

    );

    return $meta_boxes;
}
add_filter( 'rwmb_meta_boxes', 'as_add_book' );

2 个答案:

答案 0 :(得分:0)

我之前有同样的问题。对此进行检查,并有据可查。

https://www.taniarascia.com/wordpress-part-three-custom-fields-and-metaboxes/

答案 1 :(得分:0)

add_action( 'add_meta_boxes', 'my_custom_meta_box' ) );
function my_custom_meta_box(){

  $args = array();

  add_meta_box(
    'my_metabox_id',
    __( 'My Meta Box', 'my_textdomain' ), // Title
    'my_callback_function',               // Callback function that renders the content of the meta box
    'post',                               // Admin page (or post type) to show the meta box on
    'side',                               // Context where the box is shown on the page
    'high',                               // Priority within that context
    $args                                 // Arguments to pass the callback function, if any
  );
}


function my_callback_function( $args ){

  //The markup for your meta box goes here

}