|
Server : LiteSpeed System : Linux premium152.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : idesfsze ( 1473) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/idesfsze/pandaexpressketo.com/wp-content/themes/jnews/class/ |
<?php
/**
* @author : Jegtheme
*/
namespace JNews;
/**
* Class Plugin Metabox
*/
Class Metabox {
public function __construct() {
global $pagenow;
if($pagenow === 'post.php' || $pagenow === 'post-new.php' || is_customize_preview() || !is_admin()){
if ( apply_filters( 'jnews_load_default_metabox', false ) ) {
add_action( 'after_setup_theme', array( $this, 'metabox' ) );
}
}
}
public function metabox(){
if( class_exists( 'VP_Metabox' )){
//Blog Metabox
new \VP_Metabox( JNEWS_THEME_DIR . '/class/metabox/post-single.php' );
new \VP_Metabox( JNEWS_THEME_DIR . '/class/metabox/post-primary-category.php' );
//Page Metabox
new \VP_Metabox( JNEWS_THEME_DIR . '/class/metabox/page-loop.php' );
new \VP_Metabox( JNEWS_THEME_DIR . '/class/metabox/page-default.php' );
}
}
}