mirror of
https://ghproxy.net/https://github.com/AlxMedia/halftype.git
synced 2025-08-26 10:56:19 +08:00
87 lines
2.6 KiB
PHP
87 lines
2.6 KiB
PHP
|
<?php
|
||
|
function halftype_get_meta_box( $meta_boxes ) {
|
||
|
|
||
|
/* do not show */
|
||
|
$prefix = '_';
|
||
|
|
||
|
/* get sidebars */
|
||
|
$sidebars = array();
|
||
|
if ( isset( $GLOBALS['wp_registered_sidebars'] ) ) {
|
||
|
$sidebars = $GLOBALS['wp_registered_sidebars'];
|
||
|
}
|
||
|
$sidebars_choices = array();
|
||
|
foreach ( $sidebars as $sidebar ) {
|
||
|
$sidebars_choices[ $sidebar['id'] ] = $sidebar['name'];
|
||
|
}
|
||
|
|
||
|
/* Page options
|
||
|
/* ------------------------------------ */
|
||
|
$meta_boxes[] = array(
|
||
|
'id' => 'page-options',
|
||
|
'title' => esc_html__( 'Page Options', 'halftype' ),
|
||
|
'post_types' => array( 'page' ),
|
||
|
'context' => 'advanced',
|
||
|
'priority' => 'high',
|
||
|
'autosave' => false,
|
||
|
'fields' => array(
|
||
|
array(
|
||
|
'id' => $prefix . 'sidebar_primary',
|
||
|
'name' => esc_html__( 'Primary Sidebar', 'halftype' ),
|
||
|
'type' => 'select',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'halftype' ),
|
||
|
'options' => $sidebars_choices,
|
||
|
),
|
||
|
array(
|
||
|
'id' => $prefix . 'layout',
|
||
|
'type' => 'image_select',
|
||
|
'name' => esc_html__( 'Layout', 'halftype' ),
|
||
|
'std' => 'inherit',
|
||
|
'force_delete' => false,
|
||
|
'max_file_uploads' => '4',
|
||
|
'options' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
'col-2cr' => get_template_directory_uri() . '/functions/images/col-2cr.png',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
/* Post options
|
||
|
/* ------------------------------------ */
|
||
|
$meta_boxes[] = array(
|
||
|
'id' => 'post-options',
|
||
|
'title' => esc_html__( 'Post Options', 'halftype' ),
|
||
|
'post_types' => array( 'post' ),
|
||
|
'context' => 'advanced',
|
||
|
'priority' => 'high',
|
||
|
'autosave' => false,
|
||
|
'fields' => array(
|
||
|
array(
|
||
|
'id' => $prefix . 'sidebar_primary',
|
||
|
'name' => esc_html__( 'Primary Sidebar', 'halftype' ),
|
||
|
'type' => 'select',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'halftype' ),
|
||
|
'options' => $sidebars_choices,
|
||
|
),
|
||
|
array(
|
||
|
'id' => $prefix . 'layout',
|
||
|
'type' => 'image_select',
|
||
|
'name' => esc_html__( 'Layout', 'halftype' ),
|
||
|
'std' => 'inherit',
|
||
|
'force_delete' => false,
|
||
|
'max_file_uploads' => '4',
|
||
|
'options' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
'col-2cr' => get_template_directory_uri() . '/functions/images/col-2cr.png',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
return $meta_boxes;
|
||
|
}
|
||
|
add_filter( 'rwmb_meta_boxes', 'halftype_get_meta_box' );
|