| 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
/**
* @return array
* single page config
*/
if ( ! function_exists( 'glaza_meta_page' ) ) {
function glaza_meta_page() {
return array(
'id' => 'glaza_meta_page_options',
'title' => esc_html__( 'PAGE OPTIONS', 'glaza' ),
'post_types' => array( 'page' ),
'priority' => 'high',
'context' => 'normal',
'fields' => array(
array(
'id' => 'glaza_meta_page_title',
'type' => 'select',
'name' => esc_html__( 'Page Title', 'glaza' ),
'desc' => esc_html__( 'enable or disable this page title.', 'glaza' ),
'options' => array(
'default' => esc_html__( 'Default from Theme Options', 'glaza' ),
'show' => esc_html__( 'Show', 'glaza' ),
'none' => esc_html__( 'None', 'glaza' )
),
'std' => 'default'
),
array(
'id' => 'glaza_meta_page_width',
'type' => 'text',
'name' => esc_html__( 'Page Max-Width', 'glaza' ),
'desc' => esc_html__( 'select max-width of this page (px) if you disable the page sidebar. Leave blank or 0 if you want to set as default (1170px).', 'glaza' ),
'std' => '',
),
),
);
}
}