mirror of
https://github.com/WenPai-org/wp-china-yes.git
synced 2025-08-03 11:11:30 +08:00
20 lines
400 B
PHP
20 lines
400 B
PHP
<?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' => 'admin',
|
|
],
|
|
'cravatar' => 'cn',
|
|
'windfonts' => 'off',
|
|
'adblock' => 'off',
|
|
] );
|
|
}
|