| Server IP : 145.239.37.162 / Your IP : 216.73.216.72 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www1/wp-content/plugins/transpix-common/meta-box/ |
Upload File : |
<?php
/**
* Plugin Name: Meta Box
* Plugin URI: https://metabox.io
* Description: Create custom meta boxes and custom fields in WordPress.
* Version: 5.3.3
* Author: MetaBox.io
* Author URI: https://metabox.io
* License: GPL2+
* Text Domain: meta-box
* Domain Path: /languages/
*
* @package Meta Box
*/
if ( defined( 'ABSPATH' ) && ! defined( 'RWMB_VER' ) ) {
register_activation_hook( __FILE__, 'rwmb_check_php_version' );
/**
* Display notice for old PHP version.
*/
function rwmb_check_php_version() {
if ( version_compare( phpversion(), '5.3', '<' ) ) {
die( esc_html__( 'Meta Box requires PHP version 5.3+. Please contact your host to upgrade.', 'meta-box' ) );
}
}
require_once dirname( __FILE__ ) . '/inc/loader.php';
$rwmb_loader = new RWMB_Loader();
$rwmb_loader->init();
add_filter( 'rwmb_meta_boxes', function ( $meta_boxes ) {
$prefix = '_cmb_';
// Open Code
$meta_boxes[] = array(
'id' => 'post_setting',
'title' => 'Post Setting',
'pages' => array('post'), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
//'show_on' => array( 'key' => 'id', 'value' => array( 2, ), ), // Specific post IDs to display this metabox
'fields' => array(
array(
'name' => 'Featured Image 2',
'desc' => 'Show in sidebar',
'id' => $prefix . 'featured_image_2',
'type' => 'file',
),
array(
'name' => 'Featured Image 3',
'desc' => 'Show in blog grid',
'id' => $prefix . 'featured_image_3',
'type' => 'file',
),
array(
'name' => 'Link facebook',
'desc' => 'Input Link facebook',
'id' => $prefix . 'single_facebook',
'type' => 'text',
),
array(
'name' => 'Link twitter',
'desc' => 'Input Link twitter',
'id' => $prefix . 'single_twitter',
'type' => 'text',
),
array(
'name' => 'Link pinterest',
'desc' => 'Input Link pinterest',
'id' => $prefix . 'single_pinterest',
'type' => 'text',
),
)
);
$meta_boxes[] = array(
'id' => 'service_setting',
'title' => 'Service Setting',
'pages' => array('service'), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
//'show_on' => array( 'key' => 'id', 'value' => array( 2, ), ), // Specific post IDs to display this metabox
'fields' => array(
array(
'name' => 'Featured Image',
'desc' => 'Show in service page and home page.',
'id' => $prefix . 'service_image',
'type' => 'file',
),
array(
'name' => 'Icon',
'desc' => 'show in home page',
'id' => $prefix . 'icon_service',
'type' => 'text',
),
)
);
$meta_boxes[] = array(
'id' => 'gallery_setting',
'title' => 'Gallery Setting',
'pages' => array('gallery'), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
//'show_on' => array( 'key' => 'id', 'value' => array( 2, ), ), // Specific post IDs to display this metabox
'fields' => array(
array(
'name' => 'Masonry Image',
'desc' => 'Show in masonry page and.',
'id' => $prefix . 'masonry_image',
'type' => 'file',
),
)
);
// End Code
return $meta_boxes;
});
}