wp-china-yes/helpers.php

28 lines
748 B
PHP
Raw Permalink Normal View History

2024-03-08 21:48:15 +08:00
<?php
namespace WenPai\ChinaYes;
defined( 'ABSPATH' ) || exit;
// 获取插件设置
function get_settings() {
$settings = is_multisite() ? get_site_option( 'wp_china_yes' ) : get_option( 'wp_china_yes' );
return wp_parse_args( $settings, [
'store' => 'wenpai',
'admincdn' => [ 'admin' ],
'cravatar' => 'cn',
'windfonts' => 'off',
'windfonts_list' => [],
'windfonts_typography' => [],
'adblock' => 'off',
'adblock_rule' => [],
'plane' => 'off',
'plane_rule' => [],
'monitor' => true,
2025-01-02 10:36:40 +08:00
'memory' => true,
'hide' => false,
'custom_name' => 'WP-China-Yes',
2024-03-08 21:48:15 +08:00
] );
}