array( 'image', 'title' ), 'bevro-blog-meta-single' => array( 'comments', 'category', 'author', 'date', ), 'bevro-blog-structure-meta' => array( 'image', 'title' ), 'bevro-blog-meta' => array( 'comments', 'category', 'author', 'date', ), ) ); } /** * Get theme options from static array() * * @return array Return array of theme options. */ public static function get_options(){ return self::$db_options; } /** * Update theme static option array. */ public static function refresh() { self::$db_options = wp_parse_args( get_option( BEVRO_THEME_SETTINGS ), self::defaults() ); } } } /** * Kicking this off by calling 'get_instance()' method */ Bevro_Theme_Options::get_instance();