From 8a6a1de432a7a275fe399959688f3c31ce827a3a Mon Sep 17 00:00:00 2001 From: LamGC Date: Mon, 5 Jun 2023 17:42:01 +0800 Subject: [PATCH] refactor(options): Set the option name to a constant. --- wp-asciiplayer.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-asciiplayer.php b/wp-asciiplayer.php index dff6ebb..963f400 100644 --- a/wp-asciiplayer.php +++ b/wp-asciiplayer.php @@ -14,8 +14,10 @@ const PLUGIN_VERSION = "0.1.0"; const ASCIIPLAYER_TAG = "asciiplayer"; +const AP_OPTION_USE_LOCAL_RESOURCES = "ap_use_local_resources"; + // 是否使用本地资源, 如果可以的话, 建议使用 CDN. -add_option("ap_use_local_resources", false); +add_option(AP_OPTION_USE_LOCAL_RESOURCES, false); function handle_asciiplayer_code($attr = [], string $content = null): string {