From ce64b18f4c9d93b74c805ffe86a1857057fadb37 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 10:07:47 +0000 Subject: [PATCH 1/3] Initial plan From 45fc0ba1a5f46ab1e7e584d096e44fb9b34f8579 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 10:11:49 +0000 Subject: [PATCH 2/3] Add common WordPress options documentation with link to Option Reference Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com> --- src/Option_Command.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/Option_Command.php b/src/Option_Command.php index 52a9f109b..2c9133f59 100644 --- a/src/Option_Command.php +++ b/src/Option_Command.php @@ -9,6 +9,21 @@ * * See the [Plugin Settings API](https://developer.wordpress.org/plugins/settings/settings-api/) and the [Theme Options](https://developer.wordpress.org/themes/customize-api/) for more information on adding customized options. * + * ## COMMON OPTIONS + * + * These are some of the most commonly used WordPress options: + * + * * `siteurl` - Site URL, e.g. http://example.com + * * `blogname` - Site title + * * `blogdescription` - Site tagline + * * `admin_email` - Administration email address + * * `default_role` - Default role for new users + * * `timezone_string` - Local timezone, e.g. "America/New_York" + * * `home` - Home URL, e.g. http://example.com + * * `blog_public` - Discourage search engines when set to 0 + * + * For the full list of available options, see the [Option Reference](https://developer.wordpress.org/reference/functions/get_option/) on developer.wordpress.org. + * * ## EXAMPLES * * # Get site URL. From 63ad659cb75c08bab7853b6b27ef17283923e6dd Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Thu, 26 Feb 2026 11:29:47 +0100 Subject: [PATCH 3/3] Update URL --- src/Option_Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Option_Command.php b/src/Option_Command.php index 2c9133f59..7dca46dcd 100644 --- a/src/Option_Command.php +++ b/src/Option_Command.php @@ -22,7 +22,7 @@ * * `home` - Home URL, e.g. http://example.com * * `blog_public` - Discourage search engines when set to 0 * - * For the full list of available options, see the [Option Reference](https://developer.wordpress.org/reference/functions/get_option/) on developer.wordpress.org. + * For the full list of available options, see the [Option Reference](https://developer.wordpress.org/apis/options/). * * ## EXAMPLES *