BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
plugins
/
porto-functionality
/
soft-mode
📤 Upload
📝 New File
📁 New Folder
Close
Editing: override.php
<?php /** * Bundle of overrided functions. * * @author P-THEMES * @package Porto * @subpackage Core * @since 2.3.0 */ if ( ! defined( 'ABSPATH' ) ) { die(); } if ( ! $legacy_mode ) : // Post page Meta Field function porto_add_post_meta_boxes() { if ( ! function_exists( 'get_current_screen' ) ) { return; } $screen = get_current_screen(); if ( function_exists( 'add_meta_box' ) && $screen && 'post' == $screen->base && 'post' == $screen->id ) { add_meta_box( 'post-meta-box', __( 'Post Options', 'porto-functionality' ), 'porto_post_meta_box', 'post', 'normal', 'high' ); add_meta_box( 'view-meta-box', __( 'Porto View Options', 'porto-functionality' ), 'porto_only_subtitle', 'post', 'normal', 'low' ); } } // Post Taxonomy Related Functions function porto_edit_category_meta_fields() {} function porto_save_category_meta_values() {} function porto_delete_category_meta_values() {} // Product Page Meta Field function porto_add_product_meta_boxes() { if ( ! function_exists( 'get_current_screen' ) ) { return; } $screen = get_current_screen(); if ( function_exists( 'add_meta_box' ) && $screen && 'post' == $screen->base && 'product' == $screen->id ) { add_meta_box( 'product-meta-box', __( 'Product Options', 'porto-functionality' ), 'porto_product_meta_box', 'product', 'normal', 'high' ); add_meta_box( 'video-meta-box', __( 'Porto Video Thumbnail', 'porto-functionality' ), 'porto_product_video_meta_box', 'product', 'side', 'low' ); // Product 360 degree meta box add_meta_box( 'product-360-meta-box', __( 'Porto 360 Degree Gallery', 'porto-functionality' ), 'porto_product_360_degree', 'product', 'side', 'low' ); } } // Product Taxonomy Functions function porto_product_cat_meta_fields() { $meta_fields = array( 'category_icon' => array( 'name' => 'category_icon', 'title' => __( 'Category Icon', 'porto-functionality' ), 'type' => 'text', 'desc' => __( 'Input font icon class such as "fas fa-user". This field is used for porto product categories element when you select "Media Type" option to "Icon" to display icon instead of category thumbnail.', 'porto-functionality' ), ), 'category_image' => array( 'name' => 'category_image', 'title' => __( 'Category Image', 'porto-functionality' ), 'type' => 'upload', ), ); return $meta_fields; } function porto_only_subtitle() { $meta_fields = array( // Page Title 'page_title' => array( 'name' => 'page_title', 'title' => __( 'Page Title', 'porto-functionality' ), 'desc' => sprintf( __( 'Do not show. You can change %1$sglobal%2$s value in theme option.', 'porto-functionality' ), '<a href="' . porto_get_theme_option_url( 'show-pagetitle' ) . '" target="_blank">', '</a>' ), 'type' => 'checkbox', ), // Page Sub Title 'page_sub_title' => array( 'name' => 'page_sub_title', 'title' => __( 'Page Sub Title', 'porto-functionality' ), 'type' => 'text', 'required' => array( 'name' => 'page_title', 'value' => '', ), ), ); porto_show_meta_box( $meta_fields ); } // Portfolio page Meta Field function porto_add_portfolio_meta_boxes() { if ( ! function_exists( 'get_current_screen' ) ) { return; } $screen = get_current_screen(); if ( function_exists( 'add_meta_box' ) && $screen && 'post' == $screen->base && 'portfolio' == $screen->id ) { add_meta_box( 'portfolio-meta-box', __( 'Portfolio Options', 'porto-functionality' ), 'porto_portfolio_meta_box', 'portfolio', 'normal', 'high' ); add_meta_box( 'view-meta-box', __( 'Porto View Options', 'porto-functionality' ), 'porto_only_subtitle', 'portfolio', 'normal', 'low' ); } } // Portfolio Category Functions function porto_portfolio_cat_meta_fields() { // Category Image $meta_fields = array( 'category_image' => array( 'name' => 'category_image', 'title' => __( 'Category Image', 'porto-functionality' ), 'type' => 'upload', ), ); return $meta_fields; } // Member Page Meta Field function porto_add_member_meta_boxes() { if ( ! function_exists( 'get_current_screen' ) ) { return; } $screen = get_current_screen(); if ( function_exists( 'add_meta_box' ) && $screen && 'post' == $screen->base && 'member' == $screen->id ) { add_meta_box( 'member-meta-box', __( 'Member Options', 'porto-functionality' ), 'porto_member_meta_box', 'member', 'normal', 'high' ); add_meta_box( 'view-meta-box', __( 'Porto View Options', 'porto-functionality' ), 'porto_only_subtitle', 'member', 'normal', 'low' ); } } // Member Taxonomy Related Functions function porto_edit_member_cat_meta_fields() {} function porto_save_member_cat_meta_values() {} function porto_delete_member_cat_meta_values() {} // Event Page Meta Field function porto_add_event_meta_boxes() { if ( ! function_exists( 'get_current_screen' ) ) { return; } $screen = get_current_screen(); if ( function_exists( 'add_meta_box' ) && $screen && 'post' == $screen->base && 'event' == $screen->id ) { add_meta_box( 'event-meta-box', __( 'Event Options', 'porto-functionality' ), 'porto_event_meta_box', 'event', 'normal', 'high' ); } } endif;
Save
Cancel