[ Root System Explorer ]
Location:
Root
/
home
/
svaxkys
/
www
/
AcmaCulot
/
wp-content
/
themes
/
construction
/
inc
/
meta
+ Folder
+ File
Upload
Editing: usage.php
<?php /** * Include and setup custom metaboxes and fields. * * @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later) * @link https://github.com/webdevstudios/Custom-Metaboxes-and-Fields-for-WordPress */ /** * Get the bootstrap! */ if ( file_exists( get_template_directory() . '/inc/meta/init.php' ) ) { require_once get_template_directory() . '/inc/meta/init.php'; } /** * Conditionally displays a field when used as a callback in the 'show_on_cb' field parameter * * @param CMB2_Field object $field Field object * * @return bool True if metabox should show */ function cmb2_hide_if_no_cats( $field ) { // Don't show this field if not in the cats category if ( ! has_tag( 'cats', $field->object_id ) ) { return false; } return true; } add_filter( 'cmb2_meta_boxes', 'cmb2_page_metaboxes' ); /** * Define the metabox and field configurations. * * @param array $meta_boxes * @return array */ function cmb2_page_metaboxes( array $meta_boxes ) { // Start with an underscore to hide fields from custom fields list $prefix = '_wpc_'; /** * Sample metabox to demonstrate each field type included */ $meta_boxes['page_metabox'] = array( 'id' => 'page_metabox', 'title' => __( 'Page Settings', 'wpcharming' ), 'object_types' => array( 'page', 'portfolio' ), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left // 'cmb_styles' => false, // false to disable the CMB stylesheet 'fields' => array( array( 'name' => __( 'Transparent Header', 'wpcharming' ), 'desc' => __( 'Transparent header on this page , it will required a transparent logo from theme option. ( Note: ONLY available for default header style and it will NOT apply for Header Topbar & Header Centered )', 'wpcharming' ), 'id' => $prefix . 'transparent_header', 'type' => 'checkbox' ), array( 'name' => __( 'Page Layout', 'wpcharming' ), 'desc' => __( 'Set the page layout, inherit from Theme Option by default.', 'wpcharming' ), 'id' => $prefix . 'page_layout', 'type' => 'select', 'default' => 'sidebar-default', 'options' => array( 'sidebar-default' => __( 'Default', 'wpcharming' ), 'right-sidebar' => __( 'Right Sidebar', 'wpcharming' ), 'left-sidebar' => __( 'Left Sidebar', 'wpcharming' ), 'no-sidebar' => __( 'No Sidebar', 'wpcharming' ), 'full-screen' => __( 'Full Screen', 'wpcharming' ), ), ), array( 'name' => __( 'Hide page title?', 'wpcharming' ), 'desc' => __( 'Check this box to hide page title.', 'wpcharming' ), 'id' => $prefix . 'hide_page_title', 'type' => 'checkbox' ), array( 'name' => __( 'Hide breadcrumb?', 'wpcharming' ), 'desc' => __( 'Check this box to hide breadcrumb for this page.', 'wpcharming' ), 'id' => $prefix . 'hide_breadcrumb', 'type' => 'checkbox' ), array( 'name' => __( 'Enable Page Header?', 'wpcharming' ), 'desc' => __( 'Check this box to enable page header.', 'wpcharming' ), 'id' => $prefix . 'enable_page_header', 'type' => 'checkbox' ), array( 'name' => __( 'Page Header Title', 'wpcharming' ), 'desc' => __( 'Enter in the page header title here, accept simple HTML code.', 'wpcharming' ), 'id' => $prefix . 'header_title', 'type' => 'textarea_code' ), array( 'name' => __( 'Page Header Subtitle', 'wpcharming' ), 'desc' => __( 'Enter in the page header subtitle here.', 'wpcharming' ), 'id' => $prefix . 'header_subtitle', 'type' => 'text_medium' ), array( 'name' => __( 'Text Alignment', 'wpcharming' ), 'desc' => __( 'Choose how you would like your header text to be aligned', 'wpcharming' ), 'id' => $prefix . 'header_alignment', 'type' => 'radio_inline', 'default' => 'left', 'options' => array( 'left' => __( 'Left', 'wpcharming' ), 'center' => __( 'Center', 'wpcharming' ), 'right' => __( 'Right', 'wpcharming' ), ), ), array( 'name' => __( 'Page Header Image', 'wpcharming' ), 'desc' => __( 'The image should be between 1500px - 2000px wide and have a minimum height of 500px for best results.', 'wpcharming' ), 'id' => $prefix . 'header_bg', 'type' => 'file', ), // array( // 'name' => __( 'Page Header Height', 'wpcharming' ), // 'desc' => __( 'Your header hight in px. <strong>ee.g. 500</strong>', 'wpcharming' ), // 'id' => $prefix . 'header_height', // 'type' => 'text_small', // // 'repeatable' => true, // ), array( 'name' => __( 'Page Header Padding Top', 'wpcharming' ), 'desc' => __( 'Your header padding top in px. <strong>ee.g. 200</strong>, default is 60', 'wpcharming' ), 'id' => $prefix . 'header_padding_top', 'type' => 'text_small', 'default' => '60' // 'repeatable' => true, ), array( 'name' => __( 'Page Header Padding Bottom', 'wpcharming' ), 'desc' => __( 'Your header padding bottom in px. <strong>ee.g. 200</strong>, default is 60', 'wpcharming' ), 'id' => $prefix . 'header_padding_bottom', 'type' => 'text_small', 'default' => '60' // 'repeatable' => true, ), array( 'name' => __( 'Parallax Header?', 'wpcharming' ), 'desc' => __( 'Check this box to have a parallax scroll effect.', 'wpcharming' ), 'id' => $prefix . 'header_parallax', 'type' => 'checkbox' ), array( 'name' => __( 'Parallax Color Overlay', 'wpcharming' ), 'desc' => __( 'Set color overlay for parallax effect.', 'wpcharming' ), 'id' => $prefix . 'parallax_overlay', 'type' => 'colorpicker', //'default' => '' ), array( 'name' => __( 'Page Header Background Color', 'wpcharming' ), 'desc' => __( 'Set header background color if not using background image.', 'wpcharming' ), 'id' => $prefix . 'header_bg_color', 'type' => 'colorpicker', 'default' => '#222222' ), array( 'name' => __( 'Text Color', 'wpcharming' ), 'desc' => __( 'Set header text color.', 'wpcharming' ), 'id' => $prefix . 'header_text_color', 'type' => 'colorpicker', 'default' => '#ffffff' ), ), ); return $meta_boxes; }
SAVE CHANGES
[ CANCEL ]
Name
Type
Actions
.. (Parent Directory)
📄 CHANGELOG.md
FILE
Ren
[EDIT]
DEL
📄 CONTRIBUTING.md
FILE
Ren
[EDIT]
DEL
📄 bootstrap.php
FILE
Ren
[EDIT]
DEL
📁 css/
DIR
Ren
DEL
📁 images/
DIR
Ren
DEL
📁 includes/
DIR
Ren
DEL
📄 index.php
FILE
Ren
[EDIT]
DEL
📄 init.php
FILE
Ren
[EDIT]
DEL
📁 js/
DIR
Ren
DEL
📄 usage.php
FILE
Ren
[EDIT]
DEL