File: //var/www/mussarq_bak/wp-content/themes/catch-vogue/inc/metabox/metabox.php
<?php
/**
* The template for displaying meta box in page/post
*
* This adds Select Sidebar, Header Featured Image Options, Single Page/Post Image Layout
* This is only for the design purpose and not used to save any content
*
* @package Catch Vogue
*/
/**
* Class to Renders and save metabox options
*
* @since Catch Vogue 1.0
*/
class Catch_Vogue_Metabox {
private $meta_box;
private $fields;
/**
* Constructor
*
* @since Catch Vogue 1.0
*
* @access public
*
*/
public function __construct( $meta_box_id, $meta_box_title, $post_type ) {
$this->meta_box = array (
'id' => $meta_box_id,
'title' => $meta_box_title,
'post_type' => $post_type,
);
$this->fields = array(
'catch-vogue-header-image',
'catch-vogue-featured-image',
);
// Add metaboxes
add_action( 'add_meta_boxes', array( $this, 'add' ) );
add_action( 'save_post', array( $this, 'save' ) );
}
/**
* Add Meta Box for multiple post types.
*
* @since Catch Vogue 1.0
*
* @access public
*/
public function add( $post_type ) {
add_meta_box( $this->meta_box['id'], $this->meta_box['title'], array( $this, 'show' ), $post_type, 'side', 'high' );
}
/**
* Renders metabox
*
* @since Catch Vogue 1.0
*
* @access public
*/
public function show() {
global $post;
$header_image_options = array(
'default' => esc_html__( 'Default', 'catch-vogue' ),
'enable' => esc_html__( 'Enable', 'catch-vogue' ),
'disable' => esc_html__( 'Disable', 'catch-vogue' ),
);
$featured_image_options = array(
'disabled' => esc_html__( 'Disabled', 'catch-vogue' ),
'default' => esc_html__( 'Default', 'catch-vogue' ),
'post-thumbnail' => esc_html__( 'Post Thumbnail (1060x596)', 'catch-vogue' ),
'catch-vogue-featured' => esc_html__( 'Featured (664x373)', 'catch-vogue' ),
'full' => esc_html__( 'Original Image Size', 'catch-vogue' ),
);
// Use nonce for verification
wp_nonce_field( basename( __FILE__ ), 'catch_vogue_custom_meta_box_nonce' );
// Begin the field table and loop ?>
<p class="post-attributes-label-wrapper"><label class="post-attributes-label" for="catch-vogue-header-image"><?php esc_html_e( 'Header Featured Image Options', 'catch-vogue' ); ?></label></p>
<select class="widefat" name="catch-vogue-header-image" id="catch-vogue-header-image">
<?php
$meta_value = get_post_meta( $post->ID, 'catch-vogue-header-image', true );
if ( empty( $meta_value ) ){
$meta_value='default';
}
foreach ( $header_image_options as $field =>$label ) {
?>
<option value="<?php echo esc_attr( $field ); ?>" <?php selected( $meta_value, $field ); ?>><?php echo esc_html( $label ); ?></option>
<?php
} // end foreach
?>
</select>
<p class="post-attributes-label-wrapper"><label class="post-attributes-label" for="catch-vogue-featured-image"><?php esc_html_e( 'Single Page/Post Image', 'catch-vogue' ); ?></label></p>
<select class="widefat" name="catch-vogue-featured-image" id="catch-vogue-featured-image">
<?php
$meta_value = get_post_meta( $post->ID, 'catch-vogue-featured-image', true );
if ( empty( $meta_value ) ){
$meta_value='default';
}
foreach ( $featured_image_options as $field =>$label ) {
?>
<option value="<?php echo esc_attr( $field ); ?>" <?php selected( $meta_value, $field ); ?>><?php echo esc_html( $label ); ?></option>
<?php
} // end foreach
?>
</select>
<?php
}
/**
* Save custom metabox data
*
* @action save_post
*
* @since Catch Vogue 1.0
*
* @access public
*/
public function save( $post_id ) {
global $post_type;
$post_type_object = get_post_type_object( $post_type );
if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) // Check Autosave
|| ( ! isset( $_POST['post_ID'] ) || $post_id != $_POST['post_ID'] ) // Check Revision
|| ( ! in_array( $post_type, $this->meta_box['post_type'] ) ) // Check if current post type is supported.
|| ( ! check_admin_referer( basename( __FILE__ ), 'catch_vogue_custom_meta_box_nonce') ) // Check nonce - Security
|| ( ! current_user_can( $post_type_object->cap->edit_post, $post_id ) ) ) // Check permission
{
return $post_id;
}
foreach ( $this->fields as $field ) {
$new = $_POST[ $field ];
delete_post_meta( $post_id, $field );
if ( '' == $new || array() == $new ) {
return;
} else {
if ( ! update_post_meta ( $post_id, $field, sanitize_key( $new ) ) ) {
add_post_meta( $post_id, $field, sanitize_key( $new ), true );
}
}
} // end foreach
}
}
$catch_vogue_metabox = new Catch_Vogue_Metabox(
'catch-vogue-options', //metabox id
esc_html__( 'Catch Vogue Options', 'catch-vogue' ), //metabox title
array( 'page', 'post' ) //metabox post types
);