| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/glaza/metaboxes/ |
Upload File : |
<?php
//load files
require get_theme_file_path( '/metaboxes/panel_post.php' );
require get_theme_file_path( '/metaboxes/panel_page.php' );
require get_theme_file_path( '/metaboxes/panel_sidebar.php' );
require get_theme_file_path('/metaboxes/panel_category.php');
/**
* @return array
* add config
*/
if ( ! function_exists( 'glaza_theme_meta_config' ) ) {
function glaza_theme_meta_config( $meta_boxes ) {
if ( ! isset( $meta_boxes ) ) {
$meta_boxes = array();
}
$meta_boxes[] = glaza_meta_post_tagline();
$meta_boxes[] = glaza_meta_post_options();
$meta_boxes[] = glaza_meta_post_gallery();
$meta_boxes[] = glaza_meta_post_video();
$meta_boxes[] = glaza_meta_post_audio();
$meta_boxes[] = glaza_meta_post_source();
$meta_boxes[] = glaza_meta_post_review();
$meta_boxes[] = glaza_meta_sidebar();
$meta_boxes[] = glaza_meta_page();
if ( class_exists( 'Woocommerce' ) ) {
$meta_boxes[] = glaza_meta_post_shop();
}
return $meta_boxes;
}
add_filter( 'rwmb_meta_boxes', 'glaza_theme_meta_config', 90 );
};
/**
* after post title priority
*/
if ( ! function_exists( 'glaza_meta_priority_top' ) ) {
function glaza_meta_priority_top() {
if ( ! is_admin() ) {
return false;
}
global $post, $wp_meta_boxes;
do_meta_boxes( get_current_screen(), 'top', $post );
unset( $wp_meta_boxes[ get_post_type( $post ) ]['top'] );
return false;
}
add_action( 'edit_form_after_title', 'glaza_meta_priority_top' );
}