'image'|'text', 'value' => string] */ public static function get_logo() { $logo = get_option('woonoow_store_logo', ''); if (!empty($logo)) { return [ 'type' => 'image', 'value' => $logo, ]; } return [ 'type' => 'text', 'value' => get_option('blogname', 'WooNooW'), ]; } }