| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/.trash/wp-content.1/themes/wp-buka/includes/ |
Upload File : |
<?php
// Prevent Direct Access
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Portfolio Meta Boxes
function buka_portfolio_meta_boxes( $meta_boxes ) {
$meta_boxes[] = [
'id' => 'buka_portfolio',
'title' => __('Other Info', 'wp-buka'),
'post_types' => 'portfolio',
'fields' => [
[
'id' => 'portfolio_video',
'name' => __('Send Video', 'wp-buka'),
'desc' => __('If a video is selected, the video will be shown instead of large size image when clicking on the magnifier icon.', 'wp-buka'),
'type' => 'video',
'max_file_uploads' => 1,
'force_delete' => false,
'max_status' => false,
],
[
'id' => 'portfolio_link',
'name' => __('Link', 'wp-buka'),
'type' => 'text',
],
[
'id' => 'portfolio_size',
'name' => __('Show Size', 'wp-buka'),
'type' => 'radio',
'options' => [
'small' => __('Small', 'wp-buka'),
'large' => __('Large', 'wp-buka'),
],
'std' => 'small',
],
]
];
return $meta_boxes;
}
add_filter('rwmb_meta_boxes', 'buka_portfolio_meta_boxes');