├── .github └── workflows │ └── update.yml ├── .gitignore ├── LICENSE.md ├── composer.json ├── composer.lock ├── generate-excludes.inc.php ├── generated ├── exclude-wordpress-classes.json ├── exclude-wordpress-constants.json ├── exclude-wordpress-functions.json └── exclude-wordpress-interfaces.json └── update.sh /.github/workflows/update.yml: -------------------------------------------------------------------------------- 1 | name: Automatic release 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "0 0 * * *" 7 | 8 | jobs: 9 | update: 10 | 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Clone 15 | uses: actions/checkout@v2 16 | 17 | - name: Setup PHP 7.4 18 | uses: shivammathur/setup-php@v2 19 | with: 20 | php-version: '7.4' 21 | tools: composer 22 | 23 | - name: Setup Git 24 | run: | 25 | git config --global user.email "github-bot@snicco.io" 26 | git config --global user.name "Snicco Bot" 27 | 28 | - name: Run update script 29 | run: ./update.sh 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Calvin Alkan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sniccowp/php-scoper-wordpress-excludes", 3 | "description": "A list of all WordPress core classes, functions and constants. Meant to be used with the PHP-Scoper exclusion functionality.", 4 | "minimum-stability": "stable", 5 | "keywords": ["WordPress", "PHP-scoper", "php-scoper", "scoping WordPress"], 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "Calvin Alkan", 10 | "email": "calvin@snicco.de" 11 | },{ 12 | "name": "Marlon Alkan", 13 | "email": "marlon@snicco.de" 14 | } 15 | ], 16 | "require-dev": { 17 | "php": "^7.4", 18 | "sniccowp/php-scoper-excludes" : "dev-master", 19 | "php-stubs/wordpress-stubs": "6.8.1", 20 | "php-stubs/wordpress-globals": "0.2.0" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "6f76ea8827eaa17eca3c8366a1eea79f", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "nikic/php-parser", 12 | "version": "v4.13.2", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/nikic/PHP-Parser.git", 16 | "reference": "210577fe3cf7badcc5814d99455df46564f3c077" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077", 21 | "reference": "210577fe3cf7badcc5814d99455df46564f3c077", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "ext-tokenizer": "*", 26 | "php": ">=7.0" 27 | }, 28 | "require-dev": { 29 | "ircmaxell/php-yacc": "^0.0.7", 30 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" 31 | }, 32 | "bin": [ 33 | "bin/php-parse" 34 | ], 35 | "type": "library", 36 | "extra": { 37 | "branch-alias": { 38 | "dev-master": "4.9-dev" 39 | } 40 | }, 41 | "autoload": { 42 | "psr-4": { 43 | "PhpParser\\": "lib/PhpParser" 44 | } 45 | }, 46 | "notification-url": "https://packagist.org/downloads/", 47 | "license": [ 48 | "BSD-3-Clause" 49 | ], 50 | "authors": [ 51 | { 52 | "name": "Nikita Popov" 53 | } 54 | ], 55 | "description": "A PHP parser written in PHP", 56 | "keywords": [ 57 | "parser", 58 | "php" 59 | ], 60 | "support": { 61 | "issues": "https://github.com/nikic/PHP-Parser/issues", 62 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" 63 | }, 64 | "time": "2021-11-30T19:35:32+00:00" 65 | }, 66 | { 67 | "name": "php-stubs/wordpress-globals", 68 | "version": "v0.2.0", 69 | "source": { 70 | "type": "git", 71 | "url": "https://github.com/php-stubs/wordpress-globals.git", 72 | "reference": "748a1fb2ae8fda94844bd0545935095dbf404b32" 73 | }, 74 | "dist": { 75 | "type": "zip", 76 | "url": "https://api.github.com/repos/php-stubs/wordpress-globals/zipball/748a1fb2ae8fda94844bd0545935095dbf404b32", 77 | "reference": "748a1fb2ae8fda94844bd0545935095dbf404b32", 78 | "shasum": "" 79 | }, 80 | "require-dev": { 81 | "php": "~7.1" 82 | }, 83 | "suggest": { 84 | "php-stubs/wordpress-stubs": "Up-to-date WordPress function and class declaration stubs", 85 | "szepeviktor/phpstan-wordpress": "WordPress extensions for PHPStan" 86 | }, 87 | "type": "library", 88 | "notification-url": "https://packagist.org/downloads/", 89 | "license": [ 90 | "MIT" 91 | ], 92 | "description": "Global variables and global constants from WordPress core.", 93 | "homepage": "https://github.com/php-stubs/wordpress-globals", 94 | "keywords": [ 95 | "PHPStan", 96 | "constants", 97 | "globals", 98 | "static analysis", 99 | "wordpress" 100 | ], 101 | "support": { 102 | "issues": "https://github.com/php-stubs/wordpress-globals/issues", 103 | "source": "https://github.com/php-stubs/wordpress-globals/tree/master" 104 | }, 105 | "time": "2020-01-13T06:12:59+00:00" 106 | }, 107 | { 108 | "name": "php-stubs/wordpress-stubs", 109 | "version": "v6.8.1", 110 | "source": { 111 | "type": "git", 112 | "url": "https://github.com/php-stubs/wordpress-stubs.git", 113 | "reference": "92e444847d94f7c30f88c60004648f507688acd5" 114 | }, 115 | "dist": { 116 | "type": "zip", 117 | "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/92e444847d94f7c30f88c60004648f507688acd5", 118 | "reference": "92e444847d94f7c30f88c60004648f507688acd5", 119 | "shasum": "" 120 | }, 121 | "conflict": { 122 | "phpdocumentor/reflection-docblock": "5.6.1" 123 | }, 124 | "require-dev": { 125 | "dealerdirect/phpcodesniffer-composer-installer": "^1.0", 126 | "nikic/php-parser": "^5.4", 127 | "php": "^7.4 || ^8.0", 128 | "php-stubs/generator": "^0.8.3", 129 | "phpdocumentor/reflection-docblock": "^5.4.1", 130 | "phpstan/phpstan": "^2.1", 131 | "phpunit/phpunit": "^9.5", 132 | "szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset": "^1.1.1", 133 | "wp-coding-standards/wpcs": "3.1.0 as 2.3.0" 134 | }, 135 | "suggest": { 136 | "paragonie/sodium_compat": "Pure PHP implementation of libsodium", 137 | "symfony/polyfill-php80": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 138 | "szepeviktor/phpstan-wordpress": "WordPress extensions for PHPStan" 139 | }, 140 | "type": "library", 141 | "notification-url": "https://packagist.org/downloads/", 142 | "license": [ 143 | "MIT" 144 | ], 145 | "description": "WordPress function and class declaration stubs for static analysis.", 146 | "homepage": "https://github.com/php-stubs/wordpress-stubs", 147 | "keywords": [ 148 | "PHPStan", 149 | "static analysis", 150 | "wordpress" 151 | ], 152 | "support": { 153 | "issues": "https://github.com/php-stubs/wordpress-stubs/issues", 154 | "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.8.1" 155 | }, 156 | "time": "2025-05-02T12:33:34+00:00" 157 | }, 158 | { 159 | "name": "psr/container", 160 | "version": "1.1.2", 161 | "source": { 162 | "type": "git", 163 | "url": "https://github.com/php-fig/container.git", 164 | "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" 165 | }, 166 | "dist": { 167 | "type": "zip", 168 | "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", 169 | "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", 170 | "shasum": "" 171 | }, 172 | "require": { 173 | "php": ">=7.4.0" 174 | }, 175 | "type": "library", 176 | "autoload": { 177 | "psr-4": { 178 | "Psr\\Container\\": "src/" 179 | } 180 | }, 181 | "notification-url": "https://packagist.org/downloads/", 182 | "license": [ 183 | "MIT" 184 | ], 185 | "authors": [ 186 | { 187 | "name": "PHP-FIG", 188 | "homepage": "https://www.php-fig.org/" 189 | } 190 | ], 191 | "description": "Common Container Interface (PHP FIG PSR-11)", 192 | "homepage": "https://github.com/php-fig/container", 193 | "keywords": [ 194 | "PSR-11", 195 | "container", 196 | "container-interface", 197 | "container-interop", 198 | "psr" 199 | ], 200 | "support": { 201 | "issues": "https://github.com/php-fig/container/issues", 202 | "source": "https://github.com/php-fig/container/tree/1.1.2" 203 | }, 204 | "time": "2021-11-05T16:50:12+00:00" 205 | }, 206 | { 207 | "name": "sniccowp/php-scoper-excludes", 208 | "version": "dev-master", 209 | "source": { 210 | "type": "git", 211 | "url": "https://github.com/sniccowp/php-scoper-excludes.git", 212 | "reference": "a094eab86687a40f219c5ceebe9094e3d088fa0a" 213 | }, 214 | "dist": { 215 | "type": "zip", 216 | "url": "https://api.github.com/repos/sniccowp/php-scoper-excludes/zipball/a094eab86687a40f219c5ceebe9094e3d088fa0a", 217 | "reference": "a094eab86687a40f219c5ceebe9094e3d088fa0a", 218 | "shasum": "" 219 | }, 220 | "require": { 221 | "ext-json": "*", 222 | "nikic/php-parser": "^4.0.0", 223 | "php": "^7.4", 224 | "symfony/console": "^5.0" 225 | }, 226 | "require-dev": { 227 | "php-stubs/wordpress-globals": "0.2.0", 228 | "php-stubs/wordpress-stubs": "^5.9", 229 | "phpunit/phpunit": "^9.5", 230 | "symfony/finder": "^5.4" 231 | }, 232 | "default-branch": true, 233 | "bin": [ 234 | "bin/generate-excludes" 235 | ], 236 | "type": "library", 237 | "autoload": { 238 | "psr-4": { 239 | "Snicco\\PhpScoperExcludes\\": "src" 240 | } 241 | }, 242 | "notification-url": "https://packagist.org/downloads/", 243 | "license": [ 244 | "MIT" 245 | ], 246 | "authors": [ 247 | { 248 | "name": "Calvin Alkan", 249 | "email": "calvin@snicco.de" 250 | }, 251 | { 252 | "name": "Marlon Alkan", 253 | "email": "calvin@snicco.de" 254 | } 255 | ], 256 | "support": { 257 | "issues": "https://github.com/sniccowp/php-scoper-excludes/issues", 258 | "source": "https://github.com/sniccowp/php-scoper-excludes/tree/master" 259 | }, 260 | "time": "2022-02-09T15:04:20+00:00" 261 | }, 262 | { 263 | "name": "symfony/console", 264 | "version": "v5.4.3", 265 | "source": { 266 | "type": "git", 267 | "url": "https://github.com/symfony/console.git", 268 | "reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8" 269 | }, 270 | "dist": { 271 | "type": "zip", 272 | "url": "https://api.github.com/repos/symfony/console/zipball/a2a86ec353d825c75856c6fd14fac416a7bdb6b8", 273 | "reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8", 274 | "shasum": "" 275 | }, 276 | "require": { 277 | "php": ">=7.2.5", 278 | "symfony/deprecation-contracts": "^2.1|^3", 279 | "symfony/polyfill-mbstring": "~1.0", 280 | "symfony/polyfill-php73": "^1.9", 281 | "symfony/polyfill-php80": "^1.16", 282 | "symfony/service-contracts": "^1.1|^2|^3", 283 | "symfony/string": "^5.1|^6.0" 284 | }, 285 | "conflict": { 286 | "psr/log": ">=3", 287 | "symfony/dependency-injection": "<4.4", 288 | "symfony/dotenv": "<5.1", 289 | "symfony/event-dispatcher": "<4.4", 290 | "symfony/lock": "<4.4", 291 | "symfony/process": "<4.4" 292 | }, 293 | "provide": { 294 | "psr/log-implementation": "1.0|2.0" 295 | }, 296 | "require-dev": { 297 | "psr/log": "^1|^2", 298 | "symfony/config": "^4.4|^5.0|^6.0", 299 | "symfony/dependency-injection": "^4.4|^5.0|^6.0", 300 | "symfony/event-dispatcher": "^4.4|^5.0|^6.0", 301 | "symfony/lock": "^4.4|^5.0|^6.0", 302 | "symfony/process": "^4.4|^5.0|^6.0", 303 | "symfony/var-dumper": "^4.4|^5.0|^6.0" 304 | }, 305 | "suggest": { 306 | "psr/log": "For using the console logger", 307 | "symfony/event-dispatcher": "", 308 | "symfony/lock": "", 309 | "symfony/process": "" 310 | }, 311 | "type": "library", 312 | "autoload": { 313 | "psr-4": { 314 | "Symfony\\Component\\Console\\": "" 315 | }, 316 | "exclude-from-classmap": [ 317 | "/Tests/" 318 | ] 319 | }, 320 | "notification-url": "https://packagist.org/downloads/", 321 | "license": [ 322 | "MIT" 323 | ], 324 | "authors": [ 325 | { 326 | "name": "Fabien Potencier", 327 | "email": "fabien@symfony.com" 328 | }, 329 | { 330 | "name": "Symfony Community", 331 | "homepage": "https://symfony.com/contributors" 332 | } 333 | ], 334 | "description": "Eases the creation of beautiful and testable command line interfaces", 335 | "homepage": "https://symfony.com", 336 | "keywords": [ 337 | "cli", 338 | "command line", 339 | "console", 340 | "terminal" 341 | ], 342 | "support": { 343 | "source": "https://github.com/symfony/console/tree/v5.4.3" 344 | }, 345 | "funding": [ 346 | { 347 | "url": "https://symfony.com/sponsor", 348 | "type": "custom" 349 | }, 350 | { 351 | "url": "https://github.com/fabpot", 352 | "type": "github" 353 | }, 354 | { 355 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 356 | "type": "tidelift" 357 | } 358 | ], 359 | "time": "2022-01-26T16:28:35+00:00" 360 | }, 361 | { 362 | "name": "symfony/deprecation-contracts", 363 | "version": "v2.5.0", 364 | "source": { 365 | "type": "git", 366 | "url": "https://github.com/symfony/deprecation-contracts.git", 367 | "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8" 368 | }, 369 | "dist": { 370 | "type": "zip", 371 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8", 372 | "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8", 373 | "shasum": "" 374 | }, 375 | "require": { 376 | "php": ">=7.1" 377 | }, 378 | "type": "library", 379 | "extra": { 380 | "branch-alias": { 381 | "dev-main": "2.5-dev" 382 | }, 383 | "thanks": { 384 | "name": "symfony/contracts", 385 | "url": "https://github.com/symfony/contracts" 386 | } 387 | }, 388 | "autoload": { 389 | "files": [ 390 | "function.php" 391 | ] 392 | }, 393 | "notification-url": "https://packagist.org/downloads/", 394 | "license": [ 395 | "MIT" 396 | ], 397 | "authors": [ 398 | { 399 | "name": "Nicolas Grekas", 400 | "email": "p@tchwork.com" 401 | }, 402 | { 403 | "name": "Symfony Community", 404 | "homepage": "https://symfony.com/contributors" 405 | } 406 | ], 407 | "description": "A generic function and convention to trigger deprecation notices", 408 | "homepage": "https://symfony.com", 409 | "support": { 410 | "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0" 411 | }, 412 | "funding": [ 413 | { 414 | "url": "https://symfony.com/sponsor", 415 | "type": "custom" 416 | }, 417 | { 418 | "url": "https://github.com/fabpot", 419 | "type": "github" 420 | }, 421 | { 422 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 423 | "type": "tidelift" 424 | } 425 | ], 426 | "time": "2021-07-12T14:48:14+00:00" 427 | }, 428 | { 429 | "name": "symfony/polyfill-ctype", 430 | "version": "v1.24.0", 431 | "source": { 432 | "type": "git", 433 | "url": "https://github.com/symfony/polyfill-ctype.git", 434 | "reference": "30885182c981ab175d4d034db0f6f469898070ab" 435 | }, 436 | "dist": { 437 | "type": "zip", 438 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab", 439 | "reference": "30885182c981ab175d4d034db0f6f469898070ab", 440 | "shasum": "" 441 | }, 442 | "require": { 443 | "php": ">=7.1" 444 | }, 445 | "provide": { 446 | "ext-ctype": "*" 447 | }, 448 | "suggest": { 449 | "ext-ctype": "For best performance" 450 | }, 451 | "type": "library", 452 | "extra": { 453 | "branch-alias": { 454 | "dev-main": "1.23-dev" 455 | }, 456 | "thanks": { 457 | "name": "symfony/polyfill", 458 | "url": "https://github.com/symfony/polyfill" 459 | } 460 | }, 461 | "autoload": { 462 | "psr-4": { 463 | "Symfony\\Polyfill\\Ctype\\": "" 464 | }, 465 | "files": [ 466 | "bootstrap.php" 467 | ] 468 | }, 469 | "notification-url": "https://packagist.org/downloads/", 470 | "license": [ 471 | "MIT" 472 | ], 473 | "authors": [ 474 | { 475 | "name": "Gert de Pagter", 476 | "email": "BackEndTea@gmail.com" 477 | }, 478 | { 479 | "name": "Symfony Community", 480 | "homepage": "https://symfony.com/contributors" 481 | } 482 | ], 483 | "description": "Symfony polyfill for ctype functions", 484 | "homepage": "https://symfony.com", 485 | "keywords": [ 486 | "compatibility", 487 | "ctype", 488 | "polyfill", 489 | "portable" 490 | ], 491 | "support": { 492 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0" 493 | }, 494 | "funding": [ 495 | { 496 | "url": "https://symfony.com/sponsor", 497 | "type": "custom" 498 | }, 499 | { 500 | "url": "https://github.com/fabpot", 501 | "type": "github" 502 | }, 503 | { 504 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 505 | "type": "tidelift" 506 | } 507 | ], 508 | "time": "2021-10-20T20:35:02+00:00" 509 | }, 510 | { 511 | "name": "symfony/polyfill-intl-grapheme", 512 | "version": "v1.24.0", 513 | "source": { 514 | "type": "git", 515 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 516 | "reference": "81b86b50cf841a64252b439e738e97f4a34e2783" 517 | }, 518 | "dist": { 519 | "type": "zip", 520 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783", 521 | "reference": "81b86b50cf841a64252b439e738e97f4a34e2783", 522 | "shasum": "" 523 | }, 524 | "require": { 525 | "php": ">=7.1" 526 | }, 527 | "suggest": { 528 | "ext-intl": "For best performance" 529 | }, 530 | "type": "library", 531 | "extra": { 532 | "branch-alias": { 533 | "dev-main": "1.23-dev" 534 | }, 535 | "thanks": { 536 | "name": "symfony/polyfill", 537 | "url": "https://github.com/symfony/polyfill" 538 | } 539 | }, 540 | "autoload": { 541 | "files": [ 542 | "bootstrap.php" 543 | ], 544 | "psr-4": { 545 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" 546 | } 547 | }, 548 | "notification-url": "https://packagist.org/downloads/", 549 | "license": [ 550 | "MIT" 551 | ], 552 | "authors": [ 553 | { 554 | "name": "Nicolas Grekas", 555 | "email": "p@tchwork.com" 556 | }, 557 | { 558 | "name": "Symfony Community", 559 | "homepage": "https://symfony.com/contributors" 560 | } 561 | ], 562 | "description": "Symfony polyfill for intl's grapheme_* functions", 563 | "homepage": "https://symfony.com", 564 | "keywords": [ 565 | "compatibility", 566 | "grapheme", 567 | "intl", 568 | "polyfill", 569 | "portable", 570 | "shim" 571 | ], 572 | "support": { 573 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.24.0" 574 | }, 575 | "funding": [ 576 | { 577 | "url": "https://symfony.com/sponsor", 578 | "type": "custom" 579 | }, 580 | { 581 | "url": "https://github.com/fabpot", 582 | "type": "github" 583 | }, 584 | { 585 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 586 | "type": "tidelift" 587 | } 588 | ], 589 | "time": "2021-11-23T21:10:46+00:00" 590 | }, 591 | { 592 | "name": "symfony/polyfill-intl-normalizer", 593 | "version": "v1.24.0", 594 | "source": { 595 | "type": "git", 596 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 597 | "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" 598 | }, 599 | "dist": { 600 | "type": "zip", 601 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", 602 | "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", 603 | "shasum": "" 604 | }, 605 | "require": { 606 | "php": ">=7.1" 607 | }, 608 | "suggest": { 609 | "ext-intl": "For best performance" 610 | }, 611 | "type": "library", 612 | "extra": { 613 | "branch-alias": { 614 | "dev-main": "1.23-dev" 615 | }, 616 | "thanks": { 617 | "name": "symfony/polyfill", 618 | "url": "https://github.com/symfony/polyfill" 619 | } 620 | }, 621 | "autoload": { 622 | "files": [ 623 | "bootstrap.php" 624 | ], 625 | "psr-4": { 626 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" 627 | }, 628 | "classmap": [ 629 | "Resources/stubs" 630 | ] 631 | }, 632 | "notification-url": "https://packagist.org/downloads/", 633 | "license": [ 634 | "MIT" 635 | ], 636 | "authors": [ 637 | { 638 | "name": "Nicolas Grekas", 639 | "email": "p@tchwork.com" 640 | }, 641 | { 642 | "name": "Symfony Community", 643 | "homepage": "https://symfony.com/contributors" 644 | } 645 | ], 646 | "description": "Symfony polyfill for intl's Normalizer class and related functions", 647 | "homepage": "https://symfony.com", 648 | "keywords": [ 649 | "compatibility", 650 | "intl", 651 | "normalizer", 652 | "polyfill", 653 | "portable", 654 | "shim" 655 | ], 656 | "support": { 657 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.24.0" 658 | }, 659 | "funding": [ 660 | { 661 | "url": "https://symfony.com/sponsor", 662 | "type": "custom" 663 | }, 664 | { 665 | "url": "https://github.com/fabpot", 666 | "type": "github" 667 | }, 668 | { 669 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 670 | "type": "tidelift" 671 | } 672 | ], 673 | "time": "2021-02-19T12:13:01+00:00" 674 | }, 675 | { 676 | "name": "symfony/polyfill-mbstring", 677 | "version": "v1.24.0", 678 | "source": { 679 | "type": "git", 680 | "url": "https://github.com/symfony/polyfill-mbstring.git", 681 | "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825" 682 | }, 683 | "dist": { 684 | "type": "zip", 685 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825", 686 | "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825", 687 | "shasum": "" 688 | }, 689 | "require": { 690 | "php": ">=7.1" 691 | }, 692 | "provide": { 693 | "ext-mbstring": "*" 694 | }, 695 | "suggest": { 696 | "ext-mbstring": "For best performance" 697 | }, 698 | "type": "library", 699 | "extra": { 700 | "branch-alias": { 701 | "dev-main": "1.23-dev" 702 | }, 703 | "thanks": { 704 | "name": "symfony/polyfill", 705 | "url": "https://github.com/symfony/polyfill" 706 | } 707 | }, 708 | "autoload": { 709 | "psr-4": { 710 | "Symfony\\Polyfill\\Mbstring\\": "" 711 | }, 712 | "files": [ 713 | "bootstrap.php" 714 | ] 715 | }, 716 | "notification-url": "https://packagist.org/downloads/", 717 | "license": [ 718 | "MIT" 719 | ], 720 | "authors": [ 721 | { 722 | "name": "Nicolas Grekas", 723 | "email": "p@tchwork.com" 724 | }, 725 | { 726 | "name": "Symfony Community", 727 | "homepage": "https://symfony.com/contributors" 728 | } 729 | ], 730 | "description": "Symfony polyfill for the Mbstring extension", 731 | "homepage": "https://symfony.com", 732 | "keywords": [ 733 | "compatibility", 734 | "mbstring", 735 | "polyfill", 736 | "portable", 737 | "shim" 738 | ], 739 | "support": { 740 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0" 741 | }, 742 | "funding": [ 743 | { 744 | "url": "https://symfony.com/sponsor", 745 | "type": "custom" 746 | }, 747 | { 748 | "url": "https://github.com/fabpot", 749 | "type": "github" 750 | }, 751 | { 752 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 753 | "type": "tidelift" 754 | } 755 | ], 756 | "time": "2021-11-30T18:21:41+00:00" 757 | }, 758 | { 759 | "name": "symfony/polyfill-php73", 760 | "version": "v1.24.0", 761 | "source": { 762 | "type": "git", 763 | "url": "https://github.com/symfony/polyfill-php73.git", 764 | "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" 765 | }, 766 | "dist": { 767 | "type": "zip", 768 | "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", 769 | "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", 770 | "shasum": "" 771 | }, 772 | "require": { 773 | "php": ">=7.1" 774 | }, 775 | "type": "library", 776 | "extra": { 777 | "branch-alias": { 778 | "dev-main": "1.23-dev" 779 | }, 780 | "thanks": { 781 | "name": "symfony/polyfill", 782 | "url": "https://github.com/symfony/polyfill" 783 | } 784 | }, 785 | "autoload": { 786 | "files": [ 787 | "bootstrap.php" 788 | ], 789 | "psr-4": { 790 | "Symfony\\Polyfill\\Php73\\": "" 791 | }, 792 | "classmap": [ 793 | "Resources/stubs" 794 | ] 795 | }, 796 | "notification-url": "https://packagist.org/downloads/", 797 | "license": [ 798 | "MIT" 799 | ], 800 | "authors": [ 801 | { 802 | "name": "Nicolas Grekas", 803 | "email": "p@tchwork.com" 804 | }, 805 | { 806 | "name": "Symfony Community", 807 | "homepage": "https://symfony.com/contributors" 808 | } 809 | ], 810 | "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", 811 | "homepage": "https://symfony.com", 812 | "keywords": [ 813 | "compatibility", 814 | "polyfill", 815 | "portable", 816 | "shim" 817 | ], 818 | "support": { 819 | "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0" 820 | }, 821 | "funding": [ 822 | { 823 | "url": "https://symfony.com/sponsor", 824 | "type": "custom" 825 | }, 826 | { 827 | "url": "https://github.com/fabpot", 828 | "type": "github" 829 | }, 830 | { 831 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 832 | "type": "tidelift" 833 | } 834 | ], 835 | "time": "2021-06-05T21:20:04+00:00" 836 | }, 837 | { 838 | "name": "symfony/polyfill-php80", 839 | "version": "v1.24.0", 840 | "source": { 841 | "type": "git", 842 | "url": "https://github.com/symfony/polyfill-php80.git", 843 | "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9" 844 | }, 845 | "dist": { 846 | "type": "zip", 847 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9", 848 | "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9", 849 | "shasum": "" 850 | }, 851 | "require": { 852 | "php": ">=7.1" 853 | }, 854 | "type": "library", 855 | "extra": { 856 | "branch-alias": { 857 | "dev-main": "1.23-dev" 858 | }, 859 | "thanks": { 860 | "name": "symfony/polyfill", 861 | "url": "https://github.com/symfony/polyfill" 862 | } 863 | }, 864 | "autoload": { 865 | "files": [ 866 | "bootstrap.php" 867 | ], 868 | "psr-4": { 869 | "Symfony\\Polyfill\\Php80\\": "" 870 | }, 871 | "classmap": [ 872 | "Resources/stubs" 873 | ] 874 | }, 875 | "notification-url": "https://packagist.org/downloads/", 876 | "license": [ 877 | "MIT" 878 | ], 879 | "authors": [ 880 | { 881 | "name": "Ion Bazan", 882 | "email": "ion.bazan@gmail.com" 883 | }, 884 | { 885 | "name": "Nicolas Grekas", 886 | "email": "p@tchwork.com" 887 | }, 888 | { 889 | "name": "Symfony Community", 890 | "homepage": "https://symfony.com/contributors" 891 | } 892 | ], 893 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 894 | "homepage": "https://symfony.com", 895 | "keywords": [ 896 | "compatibility", 897 | "polyfill", 898 | "portable", 899 | "shim" 900 | ], 901 | "support": { 902 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0" 903 | }, 904 | "funding": [ 905 | { 906 | "url": "https://symfony.com/sponsor", 907 | "type": "custom" 908 | }, 909 | { 910 | "url": "https://github.com/fabpot", 911 | "type": "github" 912 | }, 913 | { 914 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 915 | "type": "tidelift" 916 | } 917 | ], 918 | "time": "2021-09-13T13:58:33+00:00" 919 | }, 920 | { 921 | "name": "symfony/service-contracts", 922 | "version": "v2.5.0", 923 | "source": { 924 | "type": "git", 925 | "url": "https://github.com/symfony/service-contracts.git", 926 | "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc" 927 | }, 928 | "dist": { 929 | "type": "zip", 930 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", 931 | "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", 932 | "shasum": "" 933 | }, 934 | "require": { 935 | "php": ">=7.2.5", 936 | "psr/container": "^1.1", 937 | "symfony/deprecation-contracts": "^2.1" 938 | }, 939 | "conflict": { 940 | "ext-psr": "<1.1|>=2" 941 | }, 942 | "suggest": { 943 | "symfony/service-implementation": "" 944 | }, 945 | "type": "library", 946 | "extra": { 947 | "branch-alias": { 948 | "dev-main": "2.5-dev" 949 | }, 950 | "thanks": { 951 | "name": "symfony/contracts", 952 | "url": "https://github.com/symfony/contracts" 953 | } 954 | }, 955 | "autoload": { 956 | "psr-4": { 957 | "Symfony\\Contracts\\Service\\": "" 958 | } 959 | }, 960 | "notification-url": "https://packagist.org/downloads/", 961 | "license": [ 962 | "MIT" 963 | ], 964 | "authors": [ 965 | { 966 | "name": "Nicolas Grekas", 967 | "email": "p@tchwork.com" 968 | }, 969 | { 970 | "name": "Symfony Community", 971 | "homepage": "https://symfony.com/contributors" 972 | } 973 | ], 974 | "description": "Generic abstractions related to writing services", 975 | "homepage": "https://symfony.com", 976 | "keywords": [ 977 | "abstractions", 978 | "contracts", 979 | "decoupling", 980 | "interfaces", 981 | "interoperability", 982 | "standards" 983 | ], 984 | "support": { 985 | "source": "https://github.com/symfony/service-contracts/tree/v2.5.0" 986 | }, 987 | "funding": [ 988 | { 989 | "url": "https://symfony.com/sponsor", 990 | "type": "custom" 991 | }, 992 | { 993 | "url": "https://github.com/fabpot", 994 | "type": "github" 995 | }, 996 | { 997 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 998 | "type": "tidelift" 999 | } 1000 | ], 1001 | "time": "2021-11-04T16:48:04+00:00" 1002 | }, 1003 | { 1004 | "name": "symfony/string", 1005 | "version": "v5.4.3", 1006 | "source": { 1007 | "type": "git", 1008 | "url": "https://github.com/symfony/string.git", 1009 | "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10" 1010 | }, 1011 | "dist": { 1012 | "type": "zip", 1013 | "url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10", 1014 | "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10", 1015 | "shasum": "" 1016 | }, 1017 | "require": { 1018 | "php": ">=7.2.5", 1019 | "symfony/polyfill-ctype": "~1.8", 1020 | "symfony/polyfill-intl-grapheme": "~1.0", 1021 | "symfony/polyfill-intl-normalizer": "~1.0", 1022 | "symfony/polyfill-mbstring": "~1.0", 1023 | "symfony/polyfill-php80": "~1.15" 1024 | }, 1025 | "conflict": { 1026 | "symfony/translation-contracts": ">=3.0" 1027 | }, 1028 | "require-dev": { 1029 | "symfony/error-handler": "^4.4|^5.0|^6.0", 1030 | "symfony/http-client": "^4.4|^5.0|^6.0", 1031 | "symfony/translation-contracts": "^1.1|^2", 1032 | "symfony/var-exporter": "^4.4|^5.0|^6.0" 1033 | }, 1034 | "type": "library", 1035 | "autoload": { 1036 | "psr-4": { 1037 | "Symfony\\Component\\String\\": "" 1038 | }, 1039 | "files": [ 1040 | "Resources/functions.php" 1041 | ], 1042 | "exclude-from-classmap": [ 1043 | "/Tests/" 1044 | ] 1045 | }, 1046 | "notification-url": "https://packagist.org/downloads/", 1047 | "license": [ 1048 | "MIT" 1049 | ], 1050 | "authors": [ 1051 | { 1052 | "name": "Nicolas Grekas", 1053 | "email": "p@tchwork.com" 1054 | }, 1055 | { 1056 | "name": "Symfony Community", 1057 | "homepage": "https://symfony.com/contributors" 1058 | } 1059 | ], 1060 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", 1061 | "homepage": "https://symfony.com", 1062 | "keywords": [ 1063 | "grapheme", 1064 | "i18n", 1065 | "string", 1066 | "unicode", 1067 | "utf-8", 1068 | "utf8" 1069 | ], 1070 | "support": { 1071 | "source": "https://github.com/symfony/string/tree/v5.4.3" 1072 | }, 1073 | "funding": [ 1074 | { 1075 | "url": "https://symfony.com/sponsor", 1076 | "type": "custom" 1077 | }, 1078 | { 1079 | "url": "https://github.com/fabpot", 1080 | "type": "github" 1081 | }, 1082 | { 1083 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1084 | "type": "tidelift" 1085 | } 1086 | ], 1087 | "time": "2022-01-02T09:53:40+00:00" 1088 | } 1089 | ], 1090 | "aliases": [], 1091 | "minimum-stability": "stable", 1092 | "stability-flags": { 1093 | "sniccowp/php-scoper-excludes": 20 1094 | }, 1095 | "prefer-stable": false, 1096 | "prefer-lowest": false, 1097 | "platform": {}, 1098 | "platform-dev": { 1099 | "php": "^7.4" 1100 | }, 1101 | "plugin-api-version": "2.6.0" 1102 | } 1103 | -------------------------------------------------------------------------------- /generate-excludes.inc.php: -------------------------------------------------------------------------------- 1 | Option::PHP_8_0, 10 | // use the current working directory 11 | Option::OUTPUT_DIR => __DIR__.'/generated', 12 | // pass files as command arguments 13 | Option::FILES => [ 14 | __DIR__.'/vendor/php-stubs/wordpress-stubs/wordpress-stubs.php', 15 | __DIR__.'/vendor/php-stubs/wordpress-globals/wordpress-globals.php' 16 | ], 17 | 18 | Option::PREFER_PHP_VERSION => ParserFactory::PREFER_PHP7, 19 | ]; -------------------------------------------------------------------------------- /generated/exclude-wordpress-classes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "AMFReader", 3 | "AMFStream", 4 | "AtomEntry", 5 | "AtomFeed", 6 | "AtomParser", 7 | "Automatic_Upgrader_Skin", 8 | "AVCSequenceParameterSetReader", 9 | "Avifinfo\\Box", 10 | "Avifinfo\\Chan_Prop", 11 | "Avifinfo\\Dim_Prop", 12 | "Avifinfo\\Features", 13 | "Avifinfo\\Parser", 14 | "Avifinfo\\Prop", 15 | "Avifinfo\\Tile", 16 | "Bulk_Plugin_Upgrader_Skin", 17 | "Bulk_Theme_Upgrader_Skin", 18 | "Bulk_Upgrader_Skin", 19 | "Core_Upgrader", 20 | "Custom_Background", 21 | "Custom_Image_Header", 22 | "File_Upload_Upgrader", 23 | "ftp", 24 | "ftp_base", 25 | "ftp_pure", 26 | "ftp_sockets", 27 | "getID3", 28 | "getid3_ac3", 29 | "getid3_apetag", 30 | "getid3_asf", 31 | "getid3_dts", 32 | "getid3_exception", 33 | "getid3_flac", 34 | "getid3_flv", 35 | "getid3_handler", 36 | "getid3_id3v1", 37 | "getid3_id3v2", 38 | "getid3_lib", 39 | "getid3_lyrics3", 40 | "getid3_matroska", 41 | "getid3_mp3", 42 | "getid3_ogg", 43 | "getid3_quicktime", 44 | "getid3_riff", 45 | "Gettext_Translations", 46 | "IXR_Base64", 47 | "IXR_Client", 48 | "IXR_ClientMulticall", 49 | "IXR_Date", 50 | "IXR_Error", 51 | "IXR_IntrospectionServer", 52 | "IXR_Message", 53 | "IXR_Request", 54 | "IXR_Server", 55 | "IXR_Value", 56 | "Language_Pack_Upgrader", 57 | "Language_Pack_Upgrader_Skin", 58 | "MO", 59 | "NOOP_Translations", 60 | "PasswordHash", 61 | "PclZip", 62 | "PHPMailer\\PHPMailer\\Exception", 63 | "PHPMailer\\PHPMailer\\PHPMailer", 64 | "PHPMailer\\PHPMailer\\SMTP", 65 | "Plugin_Installer_Skin", 66 | "Plugin_Upgrader", 67 | "Plugin_Upgrader_Skin", 68 | "Plural_Forms", 69 | "PO", 70 | "POMO_CachedFileReader", 71 | "POMO_CachedIntFileReader", 72 | "POMO_FileReader", 73 | "POMO_Reader", 74 | "POMO_StringReader", 75 | "POP3", 76 | "Requests", 77 | "SimplePie", 78 | "SimplePie\\Author", 79 | "SimplePie\\Cache", 80 | "SimplePie\\Cache\\BaseDataCache", 81 | "SimplePie\\Cache\\CallableNameFilter", 82 | "SimplePie\\Cache\\DB", 83 | "SimplePie\\Cache\\File", 84 | "SimplePie\\Cache\\Memcache", 85 | "SimplePie\\Cache\\Memcached", 86 | "SimplePie\\Cache\\MySQL", 87 | "SimplePie\\Cache\\Psr16", 88 | "SimplePie\\Cache\\Redis", 89 | "SimplePie\\Caption", 90 | "SimplePie\\Category", 91 | "SimplePie\\Content\\Type\\Sniffer", 92 | "SimplePie\\Copyright", 93 | "SimplePie\\Credit", 94 | "SimplePie\\Enclosure", 95 | "SimplePie\\Exception", 96 | "SimplePie\\File", 97 | "SimplePie\\Gzdecode", 98 | "SimplePie\\HTTP\\Parser", 99 | "SimplePie\\IRI", 100 | "SimplePie\\Item", 101 | "SimplePie\\Locator", 102 | "SimplePie\\Misc", 103 | "SimplePie\\Net\\IPv6", 104 | "SimplePie\\Parser", 105 | "SimplePie\\Parse\\Date", 106 | "SimplePie\\Rating", 107 | "SimplePie\\Registry", 108 | "SimplePie\\Restriction", 109 | "SimplePie\\Sanitize", 110 | "SimplePie\\SimplePie", 111 | "SimplePie\\Source", 112 | "SimplePie\\XML\\Declaration\\Parser", 113 | "SimplePie_Author", 114 | "SimplePie_Autoloader", 115 | "SimplePie_Cache", 116 | "SimplePie_Cache_DB", 117 | "SimplePie_Cache_File", 118 | "SimplePie_Cache_Memcache", 119 | "SimplePie_Cache_Memcached", 120 | "SimplePie_Cache_MySQL", 121 | "SimplePie_Cache_Redis", 122 | "SimplePie_Caption", 123 | "SimplePie_Category", 124 | "SimplePie_Content_Type_Sniffer", 125 | "SimplePie_Copyright", 126 | "SimplePie_Core", 127 | "SimplePie_Credit", 128 | "SimplePie_Decode_HTML_Entities", 129 | "SimplePie_Enclosure", 130 | "SimplePie_Exception", 131 | "SimplePie_File", 132 | "SimplePie_gzdecode", 133 | "SimplePie_HTTP_Parser", 134 | "SimplePie_IRI", 135 | "SimplePie_Item", 136 | "SimplePie_Locator", 137 | "SimplePie_Misc", 138 | "SimplePie_Net_IPv6", 139 | "SimplePie_Parser", 140 | "SimplePie_Parse_Date", 141 | "SimplePie_Rating", 142 | "SimplePie_Registry", 143 | "SimplePie_Restriction", 144 | "SimplePie_Sanitize", 145 | "SimplePie_Source", 146 | "SimplePie_XML_Declaration_Parser", 147 | "Text_Diff", 148 | "Text_Diff_Engine_native", 149 | "Text_Diff_Engine_shell", 150 | "Text_Diff_Engine_string", 151 | "Text_Diff_Engine_xdiff", 152 | "Text_Diff_Op", 153 | "Text_Diff_Op_add", 154 | "Text_Diff_Op_change", 155 | "Text_Diff_Op_copy", 156 | "Text_Diff_Op_delete", 157 | "Text_Diff_Renderer", 158 | "Text_Diff_Renderer_inline", 159 | "Text_Exception", 160 | "Text_MappedDiff", 161 | "Theme_Installer_Skin", 162 | "Theme_Upgrader", 163 | "Theme_Upgrader_Skin", 164 | "Translations", 165 | "Translation_Entry", 166 | "Walker", 167 | "Walker_Category", 168 | "Walker_CategoryDropdown", 169 | "Walker_Category_Checklist", 170 | "Walker_Comment", 171 | "Walker_Nav_Menu", 172 | "Walker_Nav_Menu_Checklist", 173 | "Walker_Nav_Menu_Edit", 174 | "Walker_Page", 175 | "Walker_PageDropdown", 176 | "WP", 177 | "wpdb", 178 | "WpOrg\\Requests\\Auth\\Basic", 179 | "WpOrg\\Requests\\Autoload", 180 | "WpOrg\\Requests\\Cookie", 181 | "WpOrg\\Requests\\Cookie\\Jar", 182 | "WpOrg\\Requests\\Exception", 183 | "WpOrg\\Requests\\Exception\\ArgumentCount", 184 | "WpOrg\\Requests\\Exception\\Http", 185 | "WpOrg\\Requests\\Exception\\Http\\Status304", 186 | "WpOrg\\Requests\\Exception\\Http\\Status305", 187 | "WpOrg\\Requests\\Exception\\Http\\Status306", 188 | "WpOrg\\Requests\\Exception\\Http\\Status400", 189 | "WpOrg\\Requests\\Exception\\Http\\Status401", 190 | "WpOrg\\Requests\\Exception\\Http\\Status402", 191 | "WpOrg\\Requests\\Exception\\Http\\Status403", 192 | "WpOrg\\Requests\\Exception\\Http\\Status404", 193 | "WpOrg\\Requests\\Exception\\Http\\Status405", 194 | "WpOrg\\Requests\\Exception\\Http\\Status406", 195 | "WpOrg\\Requests\\Exception\\Http\\Status407", 196 | "WpOrg\\Requests\\Exception\\Http\\Status408", 197 | "WpOrg\\Requests\\Exception\\Http\\Status409", 198 | "WpOrg\\Requests\\Exception\\Http\\Status410", 199 | "WpOrg\\Requests\\Exception\\Http\\Status411", 200 | "WpOrg\\Requests\\Exception\\Http\\Status412", 201 | "WpOrg\\Requests\\Exception\\Http\\Status413", 202 | "WpOrg\\Requests\\Exception\\Http\\Status414", 203 | "WpOrg\\Requests\\Exception\\Http\\Status415", 204 | "WpOrg\\Requests\\Exception\\Http\\Status416", 205 | "WpOrg\\Requests\\Exception\\Http\\Status417", 206 | "WpOrg\\Requests\\Exception\\Http\\Status418", 207 | "WpOrg\\Requests\\Exception\\Http\\Status428", 208 | "WpOrg\\Requests\\Exception\\Http\\Status429", 209 | "WpOrg\\Requests\\Exception\\Http\\Status431", 210 | "WpOrg\\Requests\\Exception\\Http\\Status500", 211 | "WpOrg\\Requests\\Exception\\Http\\Status501", 212 | "WpOrg\\Requests\\Exception\\Http\\Status502", 213 | "WpOrg\\Requests\\Exception\\Http\\Status503", 214 | "WpOrg\\Requests\\Exception\\Http\\Status504", 215 | "WpOrg\\Requests\\Exception\\Http\\Status505", 216 | "WpOrg\\Requests\\Exception\\Http\\Status511", 217 | "WpOrg\\Requests\\Exception\\Http\\StatusUnknown", 218 | "WpOrg\\Requests\\Exception\\InvalidArgument", 219 | "WpOrg\\Requests\\Exception\\Transport", 220 | "WpOrg\\Requests\\Exception\\Transport\\Curl", 221 | "WpOrg\\Requests\\Hooks", 222 | "WpOrg\\Requests\\IdnaEncoder", 223 | "WpOrg\\Requests\\Ipv6", 224 | "WpOrg\\Requests\\Iri", 225 | "WpOrg\\Requests\\Port", 226 | "WpOrg\\Requests\\Proxy\\Http", 227 | "WpOrg\\Requests\\Requests", 228 | "WpOrg\\Requests\\Response", 229 | "WpOrg\\Requests\\Response\\Headers", 230 | "WpOrg\\Requests\\Session", 231 | "WpOrg\\Requests\\Ssl", 232 | "WpOrg\\Requests\\Transport\\Curl", 233 | "WpOrg\\Requests\\Transport\\Fsockopen", 234 | "WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary", 235 | "WpOrg\\Requests\\Utility\\FilteredIterator", 236 | "WpOrg\\Requests\\Utility\\InputValidator", 237 | "WP_Admin_Bar", 238 | "WP_Ajax_Response", 239 | "WP_Ajax_Upgrader_Skin", 240 | "WP_Application_Passwords", 241 | "WP_Application_Passwords_List_Table", 242 | "wp_atom_server", 243 | "WP_Automatic_Updater", 244 | "WP_Block", 245 | "WP_Block_Bindings_Registry", 246 | "WP_Block_Bindings_Source", 247 | "WP_Block_Editor_Context", 248 | "WP_Block_List", 249 | "WP_Block_Metadata_Registry", 250 | "WP_Block_Parser", 251 | "WP_Block_Parser_Block", 252 | "WP_Block_Parser_Frame", 253 | "WP_Block_Patterns_Registry", 254 | "WP_Block_Pattern_Categories_Registry", 255 | "WP_Block_Styles_Registry", 256 | "WP_Block_Supports", 257 | "WP_Block_Template", 258 | "WP_Block_Templates_Registry", 259 | "WP_Block_Type", 260 | "WP_Block_Type_Registry", 261 | "WP_Classic_To_Block_Menu_Converter", 262 | "WP_Comment", 263 | "WP_Comments_List_Table", 264 | "WP_Comment_Query", 265 | "WP_Community_Events", 266 | "WP_Customize_Background_Image_Control", 267 | "WP_Customize_Background_Image_Setting", 268 | "WP_Customize_Background_Position_Control", 269 | "WP_Customize_Code_Editor_Control", 270 | "WP_Customize_Color_Control", 271 | "WP_Customize_Control", 272 | "WP_Customize_Cropped_Image_Control", 273 | "WP_Customize_Custom_CSS_Setting", 274 | "WP_Customize_Date_Time_Control", 275 | "WP_Customize_Filter_Setting", 276 | "WP_Customize_Header_Image_Control", 277 | "WP_Customize_Header_Image_Setting", 278 | "WP_Customize_Image_Control", 279 | "WP_Customize_Manager", 280 | "WP_Customize_Media_Control", 281 | "WP_Customize_Nav_Menus", 282 | "WP_Customize_Nav_Menus_Panel", 283 | "WP_Customize_Nav_Menu_Auto_Add_Control", 284 | "WP_Customize_Nav_Menu_Control", 285 | "WP_Customize_Nav_Menu_Item_Control", 286 | "WP_Customize_Nav_Menu_Item_Setting", 287 | "WP_Customize_Nav_Menu_Locations_Control", 288 | "WP_Customize_Nav_Menu_Location_Control", 289 | "WP_Customize_Nav_Menu_Name_Control", 290 | "WP_Customize_Nav_Menu_Section", 291 | "WP_Customize_Nav_Menu_Setting", 292 | "WP_Customize_New_Menu_Control", 293 | "WP_Customize_New_Menu_Section", 294 | "WP_Customize_Panel", 295 | "WP_Customize_Partial", 296 | "WP_Customize_Section", 297 | "WP_Customize_Selective_Refresh", 298 | "WP_Customize_Setting", 299 | "WP_Customize_Sidebar_Section", 300 | "WP_Customize_Site_Icon_Control", 301 | "WP_Customize_Themes_Panel", 302 | "WP_Customize_Themes_Section", 303 | "WP_Customize_Theme_Control", 304 | "WP_Customize_Upload_Control", 305 | "WP_Customize_Widgets", 306 | "WP_Date_Query", 307 | "WP_Debug_Data", 308 | "WP_Dependencies", 309 | "WP_Duotone", 310 | "WP_Embed", 311 | "WP_Error", 312 | "WP_Exception", 313 | "WP_Fatal_Error_Handler", 314 | "WP_Feed_Cache", 315 | "WP_Feed_Cache_Transient", 316 | "WP_Filesystem_Base", 317 | "WP_Filesystem_Direct", 318 | "WP_Filesystem_FTPext", 319 | "WP_Filesystem_ftpsockets", 320 | "WP_Filesystem_SSH2", 321 | "WP_Font_Collection", 322 | "WP_Font_Face", 323 | "WP_Font_Face_Resolver", 324 | "WP_Font_Library", 325 | "WP_Font_Utils", 326 | "WP_Hook", 327 | "WP_HTML_Active_Formatting_Elements", 328 | "WP_HTML_Attribute_Token", 329 | "WP_HTML_Decoder", 330 | "WP_HTML_Doctype_Info", 331 | "WP_HTML_Open_Elements", 332 | "WP_HTML_Processor", 333 | "WP_HTML_Processor_State", 334 | "WP_HTML_Span", 335 | "WP_HTML_Stack_Event", 336 | "WP_HTML_Tag_Processor", 337 | "WP_HTML_Text_Replacement", 338 | "WP_HTML_Token", 339 | "WP_HTML_Unsupported_Exception", 340 | "WP_Http", 341 | "WP_Http_Cookie", 342 | "WP_Http_Curl", 343 | "WP_Http_Encoding", 344 | "WP_HTTP_Fsockopen", 345 | "WP_HTTP_IXR_Client", 346 | "WP_HTTP_Proxy", 347 | "WP_HTTP_Requests_Hooks", 348 | "WP_HTTP_Requests_Response", 349 | "WP_HTTP_Response", 350 | "WP_Http_Streams", 351 | "WP_Image_Editor", 352 | "WP_Image_Editor_GD", 353 | "WP_Image_Editor_Imagick", 354 | "WP_Importer", 355 | "WP_Interactivity_API", 356 | "WP_Interactivity_API_Directives_Processor", 357 | "WP_Internal_Pointers", 358 | "WP_Links_List_Table", 359 | "WP_List_Table", 360 | "WP_List_Util", 361 | "WP_Locale", 362 | "WP_Locale_Switcher", 363 | "WP_MatchesMapRegex", 364 | "WP_Media_List_Table", 365 | "WP_Metadata_Lazyloader", 366 | "WP_Meta_Query", 367 | "WP_MS_Sites_List_Table", 368 | "WP_MS_Themes_List_Table", 369 | "WP_MS_Users_List_Table", 370 | "WP_Navigation_Block_Renderer", 371 | "WP_Navigation_Fallback", 372 | "WP_Nav_Menu_Widget", 373 | "WP_Network", 374 | "WP_Network_Query", 375 | "WP_Object_Cache", 376 | "WP_oEmbed", 377 | "WP_oEmbed_Controller", 378 | "WP_Paused_Extensions_Storage", 379 | "WP_PHPMailer", 380 | "WP_Plugins_List_Table", 381 | "WP_Plugin_Dependencies", 382 | "WP_Plugin_Install_List_Table", 383 | "WP_Post", 384 | "WP_Posts_List_Table", 385 | "WP_Post_Comments_List_Table", 386 | "WP_Post_Type", 387 | "WP_Privacy_Data_Export_Requests_List_Table", 388 | "WP_Privacy_Data_Export_Requests_Table", 389 | "WP_Privacy_Data_Removal_Requests_List_Table", 390 | "WP_Privacy_Data_Removal_Requests_Table", 391 | "WP_Privacy_Policy_Content", 392 | "WP_Privacy_Requests_Table", 393 | "WP_Query", 394 | "WP_Recovery_Mode", 395 | "WP_Recovery_Mode_Cookie_Service", 396 | "WP_Recovery_Mode_Email_Service", 397 | "WP_Recovery_Mode_Key_Service", 398 | "WP_Recovery_Mode_Link_Service", 399 | "WP_REST_Application_Passwords_Controller", 400 | "WP_REST_Attachments_Controller", 401 | "WP_REST_Autosaves_Controller", 402 | "WP_REST_Blocks_Controller", 403 | "WP_REST_Block_Directory_Controller", 404 | "WP_REST_Block_Patterns_Controller", 405 | "WP_REST_Block_Pattern_Categories_Controller", 406 | "WP_REST_Block_Renderer_Controller", 407 | "WP_REST_Block_Types_Controller", 408 | "WP_REST_Comments_Controller", 409 | "WP_REST_Comment_Meta_Fields", 410 | "WP_REST_Controller", 411 | "WP_REST_Edit_Site_Export_Controller", 412 | "WP_REST_Font_Collections_Controller", 413 | "WP_REST_Font_Faces_Controller", 414 | "WP_REST_Font_Families_Controller", 415 | "WP_REST_Global_Styles_Controller", 416 | "WP_REST_Global_Styles_Revisions_Controller", 417 | "WP_REST_Menus_Controller", 418 | "WP_REST_Menu_Items_Controller", 419 | "WP_REST_Menu_Locations_Controller", 420 | "WP_REST_Meta_Fields", 421 | "WP_REST_Navigation_Fallback_Controller", 422 | "WP_REST_Pattern_Directory_Controller", 423 | "WP_REST_Plugins_Controller", 424 | "WP_REST_Posts_Controller", 425 | "WP_REST_Post_Format_Search_Handler", 426 | "WP_REST_Post_Meta_Fields", 427 | "WP_REST_Post_Search_Handler", 428 | "WP_REST_Post_Statuses_Controller", 429 | "WP_REST_Post_Types_Controller", 430 | "WP_REST_Request", 431 | "WP_REST_Response", 432 | "WP_REST_Revisions_Controller", 433 | "WP_REST_Search_Controller", 434 | "WP_REST_Search_Handler", 435 | "WP_REST_Server", 436 | "WP_REST_Settings_Controller", 437 | "WP_REST_Sidebars_Controller", 438 | "WP_REST_Site_Health_Controller", 439 | "WP_REST_Taxonomies_Controller", 440 | "WP_REST_Templates_Controller", 441 | "WP_REST_Template_Autosaves_Controller", 442 | "WP_REST_Template_Revisions_Controller", 443 | "WP_REST_Terms_Controller", 444 | "WP_REST_Term_Meta_Fields", 445 | "WP_REST_Term_Search_Handler", 446 | "WP_REST_Themes_Controller", 447 | "WP_REST_URL_Details_Controller", 448 | "WP_REST_Users_Controller", 449 | "WP_REST_User_Meta_Fields", 450 | "WP_REST_Widgets_Controller", 451 | "WP_REST_Widget_Types_Controller", 452 | "WP_Rewrite", 453 | "WP_Role", 454 | "WP_Roles", 455 | "WP_Screen", 456 | "WP_Scripts", 457 | "WP_Script_Modules", 458 | "WP_Session_Tokens", 459 | "WP_Sidebar_Block_Editor_Control", 460 | "WP_SimplePie_File", 461 | "WP_SimplePie_Sanitize_KSES", 462 | "WP_Site", 463 | "WP_Sitemaps", 464 | "WP_Sitemaps_Index", 465 | "WP_Sitemaps_Posts", 466 | "WP_Sitemaps_Provider", 467 | "WP_Sitemaps_Registry", 468 | "WP_Sitemaps_Renderer", 469 | "WP_Sitemaps_Stylesheet", 470 | "WP_Sitemaps_Taxonomies", 471 | "WP_Sitemaps_Users", 472 | "WP_Site_Health", 473 | "WP_Site_Health_Auto_Updates", 474 | "WP_Site_Icon", 475 | "WP_Site_Query", 476 | "WP_Speculation_Rules", 477 | "WP_Styles", 478 | "WP_Style_Engine", 479 | "WP_Style_Engine_CSS_Declarations", 480 | "WP_Style_Engine_CSS_Rule", 481 | "WP_Style_Engine_CSS_Rules_Store", 482 | "WP_Style_Engine_Processor", 483 | "WP_Taxonomy", 484 | "WP_Tax_Query", 485 | "WP_Term", 486 | "WP_Terms_List_Table", 487 | "WP_Term_Query", 488 | "WP_Textdomain_Registry", 489 | "WP_Text_Diff_Renderer_inline", 490 | "WP_Text_Diff_Renderer_Table", 491 | "WP_Theme", 492 | "WP_Themes_List_Table", 493 | "WP_Theme_Install_List_Table", 494 | "WP_Theme_JSON", 495 | "WP_Theme_JSON_Data", 496 | "WP_Theme_JSON_Resolver", 497 | "WP_Theme_JSON_Schema", 498 | "WP_Token_Map", 499 | "WP_Translations", 500 | "WP_Translation_Controller", 501 | "WP_Translation_File", 502 | "WP_Translation_File_MO", 503 | "WP_Translation_File_PHP", 504 | "WP_Upgrader", 505 | "WP_Upgrader_Skin", 506 | "WP_URL_Pattern_Prefixer", 507 | "WP_User", 508 | "WP_Users_List_Table", 509 | "WP_User_Meta_Session_Tokens", 510 | "WP_User_Query", 511 | "WP_User_Request", 512 | "WP_User_Search", 513 | "WP_Widget", 514 | "WP_Widget_Archives", 515 | "WP_Widget_Area_Customize_Control", 516 | "WP_Widget_Block", 517 | "WP_Widget_Calendar", 518 | "WP_Widget_Categories", 519 | "WP_Widget_Custom_HTML", 520 | "WP_Widget_Factory", 521 | "WP_Widget_Form_Customize_Control", 522 | "WP_Widget_Links", 523 | "WP_Widget_Media", 524 | "WP_Widget_Media_Audio", 525 | "WP_Widget_Media_Gallery", 526 | "WP_Widget_Media_Image", 527 | "WP_Widget_Media_Video", 528 | "WP_Widget_Meta", 529 | "WP_Widget_Pages", 530 | "WP_Widget_Recent_Comments", 531 | "WP_Widget_Recent_Posts", 532 | "WP_Widget_RSS", 533 | "WP_Widget_Search", 534 | "WP_Widget_Tag_Cloud", 535 | "WP_Widget_Text", 536 | "wp_xmlrpc_server", 537 | "_WP_Dependency", 538 | "_WP_Editors", 539 | "_WP_List_Table_Compat" 540 | ] -------------------------------------------------------------------------------- /generated/exclude-wordpress-constants.json: -------------------------------------------------------------------------------- 1 | [ 2 | "ABSPATH", 3 | "ADMIN_COOKIE_PATH", 4 | "ARRAY_A", 5 | "ARRAY_N", 6 | "ATOM", 7 | "AUTH_COOKIE", 8 | "AUTH_KEY", 9 | "AUTH_SALT", 10 | "AUTOSAVE_INTERVAL", 11 | "BACKGROUND_COLOR", 12 | "BACKGROUND_IMAGE", 13 | "BLOGUPLOADDIR", 14 | "BLOG_ID_CURRENT_SITE", 15 | "COMMENTS_TEMPLATE", 16 | "COMPRESS_CSS", 17 | "COMPRESS_SCRIPTS", 18 | "CONCATENATE_SCRIPTS", 19 | "COOKIEHASH", 20 | "COOKIEPATH", 21 | "COOKIE_DOMAIN", 22 | "CRLF", 23 | "CUSTOM_TAGS", 24 | "DAY_IN_SECONDS", 25 | "DB_CHARSET", 26 | "DB_COLLATE", 27 | "DB_HOST", 28 | "DB_NAME", 29 | "DB_PASSWORD", 30 | "DB_USER", 31 | "DOING_AJAX", 32 | "DOING_AUTOSAVE", 33 | "DOING_CRON", 34 | "DOMAIN_CURRENT_SITE", 35 | "EBML_ID_ASPECTRATIOTYPE", 36 | "EBML_ID_ATTACHEDFILE", 37 | "EBML_ID_ATTACHMENTLINK", 38 | "EBML_ID_ATTACHMENTS", 39 | "EBML_ID_AUDIO", 40 | "EBML_ID_BITDEPTH", 41 | "EBML_ID_CHANNELPOSITIONS", 42 | "EBML_ID_CHANNELS", 43 | "EBML_ID_CHAPCOUNTRY", 44 | "EBML_ID_CHAPLANGUAGE", 45 | "EBML_ID_CHAPPROCESS", 46 | "EBML_ID_CHAPPROCESSCODECID", 47 | "EBML_ID_CHAPPROCESSCOMMAND", 48 | "EBML_ID_CHAPPROCESSDATA", 49 | "EBML_ID_CHAPPROCESSPRIVATE", 50 | "EBML_ID_CHAPPROCESSTIME", 51 | "EBML_ID_CHAPSTRING", 52 | "EBML_ID_CHAPTERATOM", 53 | "EBML_ID_CHAPTERDISPLAY", 54 | "EBML_ID_CHAPTERFLAGENABLED", 55 | "EBML_ID_CHAPTERFLAGHIDDEN", 56 | "EBML_ID_CHAPTERPHYSICALEQUIV", 57 | "EBML_ID_CHAPTERS", 58 | "EBML_ID_CHAPTERSEGMENTEDITIONUID", 59 | "EBML_ID_CHAPTERSEGMENTUID", 60 | "EBML_ID_CHAPTERTIMEEND", 61 | "EBML_ID_CHAPTERTIMESTART", 62 | "EBML_ID_CHAPTERTRACK", 63 | "EBML_ID_CHAPTERTRACKNUMBER", 64 | "EBML_ID_CHAPTERTRANSLATE", 65 | "EBML_ID_CHAPTERTRANSLATECODEC", 66 | "EBML_ID_CHAPTERTRANSLATEEDITIONUID", 67 | "EBML_ID_CHAPTERTRANSLATEID", 68 | "EBML_ID_CHAPTERUID", 69 | "EBML_ID_CLUSTER", 70 | "EBML_ID_CLUSTERBLOCK", 71 | "EBML_ID_CLUSTERBLOCKADDID", 72 | "EBML_ID_CLUSTERBLOCKADDITIONAL", 73 | "EBML_ID_CLUSTERBLOCKADDITIONID", 74 | "EBML_ID_CLUSTERBLOCKADDITIONS", 75 | "EBML_ID_CLUSTERBLOCKDURATION", 76 | "EBML_ID_CLUSTERBLOCKGROUP", 77 | "EBML_ID_CLUSTERBLOCKMORE", 78 | "EBML_ID_CLUSTERBLOCKVIRTUAL", 79 | "EBML_ID_CLUSTERCODECSTATE", 80 | "EBML_ID_CLUSTERDELAY", 81 | "EBML_ID_CLUSTERDURATION", 82 | "EBML_ID_CLUSTERENCRYPTEDBLOCK", 83 | "EBML_ID_CLUSTERFRAMENUMBER", 84 | "EBML_ID_CLUSTERLACENUMBER", 85 | "EBML_ID_CLUSTERPOSITION", 86 | "EBML_ID_CLUSTERPREVSIZE", 87 | "EBML_ID_CLUSTERREFERENCEBLOCK", 88 | "EBML_ID_CLUSTERREFERENCEPRIORITY", 89 | "EBML_ID_CLUSTERREFERENCEVIRTUAL", 90 | "EBML_ID_CLUSTERSILENTTRACKNUMBER", 91 | "EBML_ID_CLUSTERSILENTTRACKS", 92 | "EBML_ID_CLUSTERSIMPLEBLOCK", 93 | "EBML_ID_CLUSTERSLICES", 94 | "EBML_ID_CLUSTERTIMECODE", 95 | "EBML_ID_CLUSTERTIMESLICE", 96 | "EBML_ID_CODECDECODEALL", 97 | "EBML_ID_CODECDOWNLOADURL", 98 | "EBML_ID_CODECID", 99 | "EBML_ID_CODECINFOURL", 100 | "EBML_ID_CODECNAME", 101 | "EBML_ID_CODECPRIVATE", 102 | "EBML_ID_CODECSETTINGS", 103 | "EBML_ID_COLOURSPACE", 104 | "EBML_ID_CONTENTCOMPALGO", 105 | "EBML_ID_CONTENTCOMPRESSION", 106 | "EBML_ID_CONTENTCOMPSETTINGS", 107 | "EBML_ID_CONTENTENCALGO", 108 | "EBML_ID_CONTENTENCKEYID", 109 | "EBML_ID_CONTENTENCODING", 110 | "EBML_ID_CONTENTENCODINGORDER", 111 | "EBML_ID_CONTENTENCODINGS", 112 | "EBML_ID_CONTENTENCODINGSCOPE", 113 | "EBML_ID_CONTENTENCODINGTYPE", 114 | "EBML_ID_CONTENTENCRYPTION", 115 | "EBML_ID_CONTENTSIGALGO", 116 | "EBML_ID_CONTENTSIGHASHALGO", 117 | "EBML_ID_CONTENTSIGKEYID", 118 | "EBML_ID_CONTENTSIGNATURE", 119 | "EBML_ID_CRC32", 120 | "EBML_ID_CUEBLOCKNUMBER", 121 | "EBML_ID_CUECLUSTERPOSITION", 122 | "EBML_ID_CUECODECSTATE", 123 | "EBML_ID_CUEPOINT", 124 | "EBML_ID_CUEREFCLUSTER", 125 | "EBML_ID_CUEREFCODECSTATE", 126 | "EBML_ID_CUEREFERENCE", 127 | "EBML_ID_CUEREFNUMBER", 128 | "EBML_ID_CUEREFTIME", 129 | "EBML_ID_CUES", 130 | "EBML_ID_CUETIME", 131 | "EBML_ID_CUETRACK", 132 | "EBML_ID_CUETRACKPOSITIONS", 133 | "EBML_ID_DATEUTC", 134 | "EBML_ID_DEFAULTDURATION", 135 | "EBML_ID_DISPLAYHEIGHT", 136 | "EBML_ID_DISPLAYUNIT", 137 | "EBML_ID_DISPLAYWIDTH", 138 | "EBML_ID_DOCTYPE", 139 | "EBML_ID_DOCTYPEREADVERSION", 140 | "EBML_ID_DOCTYPEVERSION", 141 | "EBML_ID_DURATION", 142 | "EBML_ID_EBML", 143 | "EBML_ID_EBMLMAXIDLENGTH", 144 | "EBML_ID_EBMLMAXSIZELENGTH", 145 | "EBML_ID_EBMLREADVERSION", 146 | "EBML_ID_EBMLVERSION", 147 | "EBML_ID_EDITIONENTRY", 148 | "EBML_ID_EDITIONFLAGDEFAULT", 149 | "EBML_ID_EDITIONFLAGHIDDEN", 150 | "EBML_ID_EDITIONFLAGORDERED", 151 | "EBML_ID_EDITIONUID", 152 | "EBML_ID_FILEDATA", 153 | "EBML_ID_FILEDESCRIPTION", 154 | "EBML_ID_FILEMIMETYPE", 155 | "EBML_ID_FILENAME", 156 | "EBML_ID_FILEREFERRAL", 157 | "EBML_ID_FILEUID", 158 | "EBML_ID_FLAGDEFAULT", 159 | "EBML_ID_FLAGENABLED", 160 | "EBML_ID_FLAGFORCED", 161 | "EBML_ID_FLAGINTERLACED", 162 | "EBML_ID_FLAGLACING", 163 | "EBML_ID_GAMMAVALUE", 164 | "EBML_ID_INFO", 165 | "EBML_ID_LANGUAGE", 166 | "EBML_ID_MAXBLOCKADDITIONID", 167 | "EBML_ID_MAXCACHE", 168 | "EBML_ID_MINCACHE", 169 | "EBML_ID_MUXINGAPP", 170 | "EBML_ID_NAME", 171 | "EBML_ID_NEXTFILENAME", 172 | "EBML_ID_NEXTUID", 173 | "EBML_ID_OLDSTEREOMODE", 174 | "EBML_ID_OUTPUTSAMPLINGFREQUENCY", 175 | "EBML_ID_PIXELCROPBOTTOM", 176 | "EBML_ID_PIXELCROPLEFT", 177 | "EBML_ID_PIXELCROPRIGHT", 178 | "EBML_ID_PIXELCROPTOP", 179 | "EBML_ID_PIXELHEIGHT", 180 | "EBML_ID_PIXELWIDTH", 181 | "EBML_ID_PREVFILENAME", 182 | "EBML_ID_PREVUID", 183 | "EBML_ID_SAMPLINGFREQUENCY", 184 | "EBML_ID_SEEK", 185 | "EBML_ID_SEEKHEAD", 186 | "EBML_ID_SEEKID", 187 | "EBML_ID_SEEKPOSITION", 188 | "EBML_ID_SEGMENT", 189 | "EBML_ID_SEGMENTFAMILY", 190 | "EBML_ID_SEGMENTFILENAME", 191 | "EBML_ID_SEGMENTUID", 192 | "EBML_ID_SIMPLETAG", 193 | "EBML_ID_STEREOMODE", 194 | "EBML_ID_TAG", 195 | "EBML_ID_TAGATTACHMENTUID", 196 | "EBML_ID_TAGBINARY", 197 | "EBML_ID_TAGCHAPTERUID", 198 | "EBML_ID_TAGDEFAULT", 199 | "EBML_ID_TAGEDITIONUID", 200 | "EBML_ID_TAGLANGUAGE", 201 | "EBML_ID_TAGNAME", 202 | "EBML_ID_TAGS", 203 | "EBML_ID_TAGSTRING", 204 | "EBML_ID_TAGTRACKUID", 205 | "EBML_ID_TARGETS", 206 | "EBML_ID_TARGETTYPE", 207 | "EBML_ID_TARGETTYPEVALUE", 208 | "EBML_ID_TIMECODESCALE", 209 | "EBML_ID_TITLE", 210 | "EBML_ID_TRACKENTRY", 211 | "EBML_ID_TRACKNUMBER", 212 | "EBML_ID_TRACKOFFSET", 213 | "EBML_ID_TRACKOVERLAY", 214 | "EBML_ID_TRACKS", 215 | "EBML_ID_TRACKTIMECODESCALE", 216 | "EBML_ID_TRACKTRANSLATE", 217 | "EBML_ID_TRACKTRANSLATECODEC", 218 | "EBML_ID_TRACKTRANSLATEEDITIONUID", 219 | "EBML_ID_TRACKTRANSLATETRACKID", 220 | "EBML_ID_TRACKTYPE", 221 | "EBML_ID_TRACKUID", 222 | "EBML_ID_VIDEO", 223 | "EBML_ID_VOID", 224 | "EBML_ID_WRITINGAPP", 225 | "EMPTY_TRASH_DAYS", 226 | "ENFORCE_GZIP", 227 | "ENT_SUBSTITUTE", 228 | "EP_ALL", 229 | "EP_ALL_ARCHIVES", 230 | "EP_ATTACHMENT", 231 | "EP_AUTHORS", 232 | "EP_CATEGORIES", 233 | "EP_COMMENTS", 234 | "EP_DATE", 235 | "EP_DAY", 236 | "EP_MONTH", 237 | "EP_NONE", 238 | "EP_PAGES", 239 | "EP_PERMALINK", 240 | "EP_ROOT", 241 | "EP_SEARCH", 242 | "EP_TAGS", 243 | "EP_YEAR", 244 | "EZSQL_VERSION", 245 | "FORCE_SSL_ADMIN", 246 | "FS_CHMOD_DIR", 247 | "FS_CHMOD_FILE", 248 | "FS_CONNECT_TIMEOUT", 249 | "FS_TIMEOUT", 250 | "FTP_ASCII", 251 | "FTP_AUTOASCII", 252 | "FTP_BINARY", 253 | "FTP_FORCE", 254 | "FTP_OS_Mac", 255 | "FTP_OS_Unix", 256 | "FTP_OS_Windows", 257 | "GB_IN_BYTES", 258 | "GETID3_FLV_TAG_AUDIO", 259 | "GETID3_FLV_TAG_META", 260 | "GETID3_FLV_TAG_VIDEO", 261 | "GETID3_FLV_VIDEO_H263", 262 | "GETID3_FLV_VIDEO_H264", 263 | "GETID3_FLV_VIDEO_SCREEN", 264 | "GETID3_FLV_VIDEO_SCREENV2", 265 | "GETID3_FLV_VIDEO_VP6FLV", 266 | "GETID3_FLV_VIDEO_VP6FLV_ALPHA", 267 | "GETID3_HELPERAPPSDIR", 268 | "GETID3_INCLUDEPATH", 269 | "GETID3_MP3_VALID_CHECK_FRAMES", 270 | "GETID3_OS_ISWINDOWS", 271 | "GETID3_TEMP_DIR", 272 | "H264_AVC_SEQUENCE_HEADER", 273 | "H264_PROFILE_BASELINE", 274 | "H264_PROFILE_EXTENDED", 275 | "H264_PROFILE_HIGH", 276 | "H264_PROFILE_HIGH10", 277 | "H264_PROFILE_HIGH422", 278 | "H264_PROFILE_HIGH444", 279 | "H264_PROFILE_HIGH444_PREDICTIVE", 280 | "H264_PROFILE_MAIN", 281 | "HEADER_IMAGE", 282 | "HEADER_IMAGE_HEIGHT", 283 | "HEADER_IMAGE_WIDTH", 284 | "HEADER_TEXTCOLOR", 285 | "HOUR_IN_SECONDS", 286 | "IFRAME_REQUEST", 287 | "IMG_JPG", 288 | "IS_PROFILE_PAGE", 289 | "KB_IN_BYTES", 290 | "LANGDIR", 291 | "LOGGED_IN_COOKIE", 292 | "LOGGED_IN_KEY", 293 | "LOGGED_IN_SALT", 294 | "MAGPIE_CACHE_AGE", 295 | "MAGPIE_CACHE_DIR", 296 | "MAGPIE_CACHE_FRESH_ONLY", 297 | "MAGPIE_CACHE_ON", 298 | "MAGPIE_DEBUG", 299 | "MAGPIE_FETCH_TIME_OUT", 300 | "MAGPIE_INITALIZED", 301 | "MAGPIE_USER_AGENT", 302 | "MAGPIE_USE_GZIP", 303 | "MB_IN_BYTES", 304 | "MEDIA_TRASH", 305 | "MINUTE_IN_SECONDS", 306 | "MONTH_IN_SECONDS", 307 | "MULTISITE", 308 | "NONCE_KEY", 309 | "NONCE_SALT", 310 | "NO_HEADER_TEXT", 311 | "OBJECT", 312 | "OBJECT_K", 313 | "PASS_COOKIE", 314 | "PATH_CURRENT_SITE", 315 | "PCLZIP_ATT_FILE_COMMENT", 316 | "PCLZIP_ATT_FILE_CONTENT", 317 | "PCLZIP_ATT_FILE_MTIME", 318 | "PCLZIP_ATT_FILE_NAME", 319 | "PCLZIP_ATT_FILE_NEW_FULL_NAME", 320 | "PCLZIP_ATT_FILE_NEW_SHORT_NAME", 321 | "PCLZIP_CB_POST_ADD", 322 | "PCLZIP_CB_POST_DELETE", 323 | "PCLZIP_CB_POST_EXTRACT", 324 | "PCLZIP_CB_POST_LIST", 325 | "PCLZIP_CB_PRE_ADD", 326 | "PCLZIP_CB_PRE_DELETE", 327 | "PCLZIP_CB_PRE_EXTRACT", 328 | "PCLZIP_CB_PRE_LIST", 329 | "PCLZIP_ERROR_EXTERNAL", 330 | "PCLZIP_ERR_ALREADY_A_DIRECTORY", 331 | "PCLZIP_ERR_BAD_CHECKSUM", 332 | "PCLZIP_ERR_BAD_EXTENSION", 333 | "PCLZIP_ERR_BAD_EXTRACTED_FILE", 334 | "PCLZIP_ERR_BAD_FORMAT", 335 | "PCLZIP_ERR_DELETE_FILE_FAIL", 336 | "PCLZIP_ERR_DIRECTORY_RESTRICTION", 337 | "PCLZIP_ERR_DIR_CREATE_FAIL", 338 | "PCLZIP_ERR_FILENAME_TOO_LONG", 339 | "PCLZIP_ERR_INVALID_ARCHIVE_ZIP", 340 | "PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE", 341 | "PCLZIP_ERR_INVALID_OPTION_VALUE", 342 | "PCLZIP_ERR_INVALID_PARAMETER", 343 | "PCLZIP_ERR_INVALID_ZIP", 344 | "PCLZIP_ERR_MISSING_FILE", 345 | "PCLZIP_ERR_MISSING_OPTION_VALUE", 346 | "PCLZIP_ERR_NO_ERROR", 347 | "PCLZIP_ERR_READ_OPEN_FAIL", 348 | "PCLZIP_ERR_RENAME_FILE_FAIL", 349 | "PCLZIP_ERR_UNSUPPORTED_COMPRESSION", 350 | "PCLZIP_ERR_UNSUPPORTED_ENCRYPTION", 351 | "PCLZIP_ERR_USER_ABORTED", 352 | "PCLZIP_ERR_WRITE_OPEN_FAIL", 353 | "PCLZIP_OPT_ADD_COMMENT", 354 | "PCLZIP_OPT_ADD_PATH", 355 | "PCLZIP_OPT_ADD_TEMP_FILE_OFF", 356 | "PCLZIP_OPT_ADD_TEMP_FILE_ON", 357 | "PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD", 358 | "PCLZIP_OPT_BY_EREG", 359 | "PCLZIP_OPT_BY_INDEX", 360 | "PCLZIP_OPT_BY_NAME", 361 | "PCLZIP_OPT_BY_PREG", 362 | "PCLZIP_OPT_COMMENT", 363 | "PCLZIP_OPT_CRYPT", 364 | "PCLZIP_OPT_EXTRACT_AS_STRING", 365 | "PCLZIP_OPT_EXTRACT_DIR_RESTRICTION", 366 | "PCLZIP_OPT_EXTRACT_IN_OUTPUT", 367 | "PCLZIP_OPT_NO_COMPRESSION", 368 | "PCLZIP_OPT_PATH", 369 | "PCLZIP_OPT_PREPEND_COMMENT", 370 | "PCLZIP_OPT_REMOVE_ALL_PATH", 371 | "PCLZIP_OPT_REMOVE_PATH", 372 | "PCLZIP_OPT_REPLACE_NEWER", 373 | "PCLZIP_OPT_SET_CHMOD", 374 | "PCLZIP_OPT_STOP_ON_ERROR", 375 | "PCLZIP_OPT_TEMP_FILE_OFF", 376 | "PCLZIP_OPT_TEMP_FILE_ON", 377 | "PCLZIP_OPT_TEMP_FILE_THRESHOLD", 378 | "PCLZIP_READ_BLOCK_SIZE", 379 | "PCLZIP_SEPARATOR", 380 | "PCLZIP_TEMPORARY_DIR", 381 | "PCLZIP_TEMPORARY_FILE_RATIO", 382 | "PLUGINDIR", 383 | "PLUGINS_COOKIE_PATH", 384 | "PO_MAX_LINE_LEN", 385 | "RECOVERY_MODE_COOKIE", 386 | "REST_API_VERSION", 387 | "REST_REQUEST", 388 | "RSS", 389 | "SCRIPT_DEBUG", 390 | "SECURE_AUTH_COOKIE", 391 | "SECURE_AUTH_KEY", 392 | "SECURE_AUTH_SALT", 393 | "SHORTINIT", 394 | "SIMPLEPIE_BUILD", 395 | "SIMPLEPIE_CONSTRUCT_ALL", 396 | "SIMPLEPIE_CONSTRUCT_BASE64", 397 | "SIMPLEPIE_CONSTRUCT_HTML", 398 | "SIMPLEPIE_CONSTRUCT_IRI", 399 | "SIMPLEPIE_CONSTRUCT_MAYBE_HTML", 400 | "SIMPLEPIE_CONSTRUCT_NONE", 401 | "SIMPLEPIE_CONSTRUCT_TEXT", 402 | "SIMPLEPIE_CONSTRUCT_XHTML", 403 | "SIMPLEPIE_FILE_SOURCE_CURL", 404 | "SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS", 405 | "SIMPLEPIE_FILE_SOURCE_FSOCKOPEN", 406 | "SIMPLEPIE_FILE_SOURCE_LOCAL", 407 | "SIMPLEPIE_FILE_SOURCE_NONE", 408 | "SIMPLEPIE_FILE_SOURCE_REMOTE", 409 | "SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY", 410 | "SIMPLEPIE_LINKBACK", 411 | "SIMPLEPIE_LOCATOR_ALL", 412 | "SIMPLEPIE_LOCATOR_AUTODISCOVERY", 413 | "SIMPLEPIE_LOCATOR_LOCAL_BODY", 414 | "SIMPLEPIE_LOCATOR_LOCAL_EXTENSION", 415 | "SIMPLEPIE_LOCATOR_NONE", 416 | "SIMPLEPIE_LOCATOR_REMOTE_BODY", 417 | "SIMPLEPIE_LOCATOR_REMOTE_EXTENSION", 418 | "SIMPLEPIE_LOWERCASE", 419 | "SIMPLEPIE_NAME", 420 | "SIMPLEPIE_NAMESPACE_ATOM_03", 421 | "SIMPLEPIE_NAMESPACE_ATOM_10", 422 | "SIMPLEPIE_NAMESPACE_DC_10", 423 | "SIMPLEPIE_NAMESPACE_DC_11", 424 | "SIMPLEPIE_NAMESPACE_GEORSS", 425 | "SIMPLEPIE_NAMESPACE_ITUNES", 426 | "SIMPLEPIE_NAMESPACE_MEDIARSS", 427 | "SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG", 428 | "SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG2", 429 | "SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG3", 430 | "SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG4", 431 | "SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG5", 432 | "SIMPLEPIE_NAMESPACE_RDF", 433 | "SIMPLEPIE_NAMESPACE_RSS_090", 434 | "SIMPLEPIE_NAMESPACE_RSS_10", 435 | "SIMPLEPIE_NAMESPACE_RSS_10_MODULES_CONTENT", 436 | "SIMPLEPIE_NAMESPACE_RSS_20", 437 | "SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO", 438 | "SIMPLEPIE_NAMESPACE_XHTML", 439 | "SIMPLEPIE_NAMESPACE_XML", 440 | "SIMPLEPIE_PCRE_HTML_ATTRIBUTE", 441 | "SIMPLEPIE_PCRE_XML_ATTRIBUTE", 442 | "SIMPLEPIE_SAME_CASE", 443 | "SIMPLEPIE_TYPE_ALL", 444 | "SIMPLEPIE_TYPE_ATOM_03", 445 | "SIMPLEPIE_TYPE_ATOM_10", 446 | "SIMPLEPIE_TYPE_ATOM_ALL", 447 | "SIMPLEPIE_TYPE_NONE", 448 | "SIMPLEPIE_TYPE_RSS_090", 449 | "SIMPLEPIE_TYPE_RSS_091", 450 | "SIMPLEPIE_TYPE_RSS_091_NETSCAPE", 451 | "SIMPLEPIE_TYPE_RSS_091_USERLAND", 452 | "SIMPLEPIE_TYPE_RSS_092", 453 | "SIMPLEPIE_TYPE_RSS_093", 454 | "SIMPLEPIE_TYPE_RSS_094", 455 | "SIMPLEPIE_TYPE_RSS_10", 456 | "SIMPLEPIE_TYPE_RSS_20", 457 | "SIMPLEPIE_TYPE_RSS_ALL", 458 | "SIMPLEPIE_TYPE_RSS_RDF", 459 | "SIMPLEPIE_TYPE_RSS_SYNDICATION", 460 | "SIMPLEPIE_UPPERCASE", 461 | "SIMPLEPIE_URL", 462 | "SIMPLEPIE_USERAGENT", 463 | "SIMPLEPIE_VERSION", 464 | "SITECOOKIEPATH", 465 | "SITE_ID_CURRENT_SITE", 466 | "STYLESHEETPATH", 467 | "SUBDOMAIN_INSTALL", 468 | "TB_IN_BYTES", 469 | "TEMPLATEPATH", 470 | "TEST_COOKIE", 471 | "UPLOADBLOGSDIR", 472 | "UPLOADS", 473 | "USER_COOKIE", 474 | "VHOST", 475 | "WEEK_IN_SECONDS", 476 | "WPINC", 477 | "WPMU_ACCEL_REDIRECT", 478 | "WPMU_PLUGIN_DIR", 479 | "WPMU_PLUGIN_URL", 480 | "WPMU_SENDFILE", 481 | "WP_ADMIN", 482 | "WP_BLOG_ADMIN", 483 | "WP_CACHE", 484 | "WP_CONTENT_DIR", 485 | "WP_CONTENT_URL", 486 | "WP_CRON_LOCK_TIMEOUT", 487 | "WP_DEBUG", 488 | "WP_DEBUG_DISPLAY", 489 | "WP_DEBUG_LOG", 490 | "WP_DEFAULT_THEME", 491 | "WP_FEATURE_BETTER_PASSWORDS", 492 | "WP_IMPORTING", 493 | "WP_INSTALLING", 494 | "WP_INSTALLING_NETWORK", 495 | "WP_LANG_DIR", 496 | "WP_LOAD_IMPORTERS", 497 | "WP_MAIL_INTERVAL", 498 | "WP_MAX_MEMORY_LIMIT", 499 | "WP_MEMORY_LIMIT", 500 | "WP_NETWORK_ADMIN", 501 | "WP_PLUGIN_DIR", 502 | "WP_PLUGIN_URL", 503 | "WP_POST_REVISIONS", 504 | "WP_PROXY_BYPASS_HOSTS", 505 | "WP_PROXY_HOST", 506 | "WP_PROXY_PORT", 507 | "WP_REPAIRING", 508 | "WP_SANDBOX_SCRAPING", 509 | "WP_START_TIMESTAMP", 510 | "WP_UNINSTALL_PLUGIN", 511 | "WP_USER_ADMIN", 512 | "WP_USE_THEMES", 513 | "WXR_VERSION", 514 | "XMLRPC_REQUEST", 515 | "YEAR_IN_SECONDS" 516 | ] -------------------------------------------------------------------------------- /generated/exclude-wordpress-functions.json: -------------------------------------------------------------------------------- 1 | [ 2 | "absint", 3 | "activate_plugin", 4 | "activate_plugins", 5 | "activate_sitewide_plugin", 6 | "addslashes_gpc", 7 | "addslashes_strings_only", 8 | "add_action", 9 | "add_allowed_options", 10 | "add_blog_option", 11 | "add_clean_index", 12 | "add_comments_page", 13 | "add_comment_meta", 14 | "add_contextual_help", 15 | "add_cssclass", 16 | "add_custom_background", 17 | "add_custom_image_header", 18 | "add_dashboard_page", 19 | "add_editor_style", 20 | "add_existing_user_to_blog", 21 | "add_feed", 22 | "add_filter", 23 | "add_image_size", 24 | "add_link", 25 | "add_links_page", 26 | "add_magic_quotes", 27 | "add_management_page", 28 | "add_media_page", 29 | "add_menu_classes", 30 | "add_menu_page", 31 | "add_meta", 32 | "add_metadata", 33 | "add_meta_box", 34 | "add_network_option", 35 | "add_new_user_to_blog", 36 | "add_object_page", 37 | "add_option", 38 | "add_options_page", 39 | "add_option_update_handler", 40 | "add_option_whitelist", 41 | "add_pages_page", 42 | "add_permastruct", 43 | "add_ping", 44 | "add_plugins_page", 45 | "add_posts_page", 46 | "add_post_meta", 47 | "add_post_type_support", 48 | "add_query_arg", 49 | "add_rewrite_endpoint", 50 | "add_rewrite_rule", 51 | "add_rewrite_tag", 52 | "add_role", 53 | "add_screen_option", 54 | "add_settings_error", 55 | "add_settings_field", 56 | "add_settings_section", 57 | "add_shortcode", 58 | "add_site_meta", 59 | "add_site_option", 60 | "add_submenu_page", 61 | "add_term_meta", 62 | "add_theme_page", 63 | "add_theme_support", 64 | "add_thickbox", 65 | "add_user", 66 | "add_users_page", 67 | "add_user_meta", 68 | "add_user_to_blog", 69 | "add_utility_page", 70 | "adjacent_image_link", 71 | "adjacent_posts_rel_link", 72 | "adjacent_posts_rel_link_wp_head", 73 | "adjacent_post_link", 74 | "admin_color_scheme_picker", 75 | "admin_created_user_email", 76 | "admin_url", 77 | "allowed_http_request_hosts", 78 | "allowed_tags", 79 | "allow_subdirectory_install", 80 | "allow_subdomain_install", 81 | "antispambot", 82 | "apache_mod_loaded", 83 | "apply_block_core_search_border_style", 84 | "apply_block_core_search_border_styles", 85 | "apply_block_hooks_to_content", 86 | "apply_block_hooks_to_content_from_post_object", 87 | "apply_filters", 88 | "apply_filters_deprecated", 89 | "apply_filters_ref_array", 90 | "apply_shortcodes", 91 | "atom_enclosure", 92 | "atom_site_icon", 93 | "attachment_id3_data_meta_box", 94 | "attachment_submitbox_metadata", 95 | "attachment_submit_meta_box", 96 | "attachment_url_to_postid", 97 | "attribute_escape", 98 | "author_can", 99 | "auth_redirect", 100 | "automatic_feed_links", 101 | "Avifinfo\\read", 102 | "Avifinfo\\read_big_endian", 103 | "Avifinfo\\skip", 104 | "avoid_blog_page_permalink_collision", 105 | "background_color", 106 | "background_image", 107 | "backslashit", 108 | "balanceTags", 109 | "before_last_bar", 110 | "block_core_calendar_has_published_posts", 111 | "block_core_calendar_update_has_published_posts", 112 | "block_core_calendar_update_has_published_post_on_delete", 113 | "block_core_calendar_update_has_published_post_on_transition_post_status", 114 | "block_core_comment_template_render_comments", 115 | "block_core_file_ensure_interactivity_dependency", 116 | "block_core_gallery_data_id_backcompatibility", 117 | "block_core_gallery_render", 118 | "block_core_heading_render", 119 | "block_core_home_link_build_css_colors", 120 | "block_core_home_link_build_css_font_sizes", 121 | "block_core_home_link_build_li_wrapper_attributes", 122 | "block_core_image_ensure_interactivity_dependency", 123 | "block_core_image_get_lightbox_settings", 124 | "block_core_image_print_lightbox_overlay", 125 | "block_core_image_render_lightbox", 126 | "block_core_latest_posts_get_excerpt_length", 127 | "block_core_latest_posts_migrate_categories", 128 | "block_core_list_render", 129 | "block_core_navigation_add_directives_to_submenu", 130 | "block_core_navigation_block_contains_core_navigation", 131 | "block_core_navigation_build_css_colors", 132 | "block_core_navigation_build_css_font_sizes", 133 | "block_core_navigation_filter_out_empty_blocks", 134 | "block_core_navigation_from_block_get_post_ids", 135 | "block_core_navigation_get_classic_menu_fallback", 136 | "block_core_navigation_get_classic_menu_fallback_blocks", 137 | "block_core_navigation_get_fallback_blocks", 138 | "block_core_navigation_get_inner_blocks_from_unstable_location", 139 | "block_core_navigation_get_menu_items_at_location", 140 | "block_core_navigation_get_most_recently_published_navigation", 141 | "block_core_navigation_get_post_ids", 142 | "block_core_navigation_link_build_css_colors", 143 | "block_core_navigation_link_build_css_font_sizes", 144 | "block_core_navigation_link_build_variations", 145 | "block_core_navigation_link_filter_variations", 146 | "block_core_navigation_link_maybe_urldecode", 147 | "block_core_navigation_link_render_submenu_icon", 148 | "block_core_navigation_maybe_use_classic_menu_fallback", 149 | "block_core_navigation_parse_blocks_from_menu_items", 150 | "block_core_navigation_render_submenu_icon", 151 | "block_core_navigation_sort_menu_items_by_parent_id", 152 | "block_core_navigation_submenu_build_css_colors", 153 | "block_core_navigation_submenu_build_css_font_sizes", 154 | "block_core_navigation_submenu_render_submenu_icon", 155 | "block_core_navigation_typographic_presets_backcompatibility", 156 | "block_core_page_list_build_css_colors", 157 | "block_core_page_list_build_css_font_sizes", 158 | "block_core_page_list_nest_pages", 159 | "block_core_page_list_render_nested_page_list", 160 | "block_core_post_template_uses_featured_image", 161 | "block_core_post_terms_build_variations", 162 | "block_core_query_disable_enhanced_pagination", 163 | "block_core_query_ensure_interactivity_dependency", 164 | "block_core_social_link_get_color_classes", 165 | "block_core_social_link_get_color_styles", 166 | "block_core_social_link_get_icon", 167 | "block_core_social_link_get_name", 168 | "block_core_social_link_services", 169 | "block_editor_rest_api_preload", 170 | "block_footer_area", 171 | "block_has_support", 172 | "block_header_area", 173 | "block_template_part", 174 | "block_version", 175 | "bloginfo", 176 | "bloginfo_rss", 177 | "body_class", 178 | "bool_from_yn", 179 | "build_comment_query_vars_from_block", 180 | "build_dropdown_script_block_core_categories", 181 | "build_query", 182 | "build_query_vars_from_query_block", 183 | "build_template_part_block_area_variations", 184 | "build_template_part_block_instance_variations", 185 | "build_template_part_block_variations", 186 | "build_variation_for_navigation_link", 187 | "bulk_edit_posts", 188 | "cache_javascript_headers", 189 | "cache_users", 190 | "calendar_week_mod", 191 | "cancel_comment_reply_link", 192 | "can_edit_network", 193 | "capital_P_dangit", 194 | "category_description", 195 | "category_exists", 196 | "cat_is_ancestor_of", 197 | "checked", 198 | "check_admin_referer", 199 | "check_ajax_referer", 200 | "check_and_publish_future_post", 201 | "check_comment", 202 | "check_comment_flood_db", 203 | "check_import_new_users", 204 | "check_password_reset_key", 205 | "check_theme_switched", 206 | "check_upload_mimes", 207 | "check_upload_size", 208 | "choose_primary_blog", 209 | "classnames_for_block_core_search", 210 | "clean_attachment_cache", 211 | "clean_blog_cache", 212 | "clean_bookmark_cache", 213 | "clean_category_cache", 214 | "clean_comment_cache", 215 | "clean_dirsize_cache", 216 | "clean_network_cache", 217 | "clean_object_term_cache", 218 | "clean_page_cache", 219 | "clean_post_cache", 220 | "clean_pre", 221 | "clean_site_details_cache", 222 | "clean_taxonomy_cache", 223 | "clean_term_cache", 224 | "clean_url", 225 | "clean_user_cache", 226 | "clear_global_post_cache", 227 | "codepress_footer_js", 228 | "codepress_get_lang", 229 | "comments_block_form_defaults", 230 | "comments_link", 231 | "comments_link_feed", 232 | "comments_number", 233 | "comments_open", 234 | "comments_popup_link", 235 | "comments_popup_script", 236 | "comments_rss", 237 | "comments_rss_link", 238 | "comments_template", 239 | "comment_author", 240 | "comment_author_email", 241 | "comment_author_email_link", 242 | "comment_author_IP", 243 | "comment_author_link", 244 | "comment_author_rss", 245 | "comment_author_url", 246 | "comment_author_url_link", 247 | "comment_class", 248 | "comment_date", 249 | "comment_excerpt", 250 | "comment_exists", 251 | "comment_footer_die", 252 | "comment_form", 253 | "comment_form_title", 254 | "comment_guid", 255 | "comment_ID", 256 | "comment_id_fields", 257 | "comment_link", 258 | "comment_reply_link", 259 | "comment_text", 260 | "comment_text_rss", 261 | "comment_time", 262 | "comment_type", 263 | "compression_test", 264 | "confirm_another_blog_signup", 265 | "confirm_blog_signup", 266 | "confirm_delete_users", 267 | "confirm_user_signup", 268 | "content_url", 269 | "convert_chars", 270 | "convert_invalid_entities", 271 | "convert_smilies", 272 | "convert_to_screen", 273 | "copy_dir", 274 | "core_auto_updates_settings", 275 | "core_update_footer", 276 | "core_upgrade_preamble", 277 | "count_many_users_posts", 278 | "count_users", 279 | "count_user_posts", 280 | "create_empty_blog", 281 | "create_initial_post_types", 282 | "create_initial_rest_routes", 283 | "create_initial_taxonomies", 284 | "create_initial_theme_features", 285 | "create_user", 286 | "current_action", 287 | "current_datetime", 288 | "current_filter", 289 | "current_theme_info", 290 | "current_theme_supports", 291 | "current_time", 292 | "current_user_can", 293 | "current_user_can_for_blog", 294 | "current_user_can_for_site", 295 | "customize_themes_print_templates", 296 | "dashboard_browser_nag_class", 297 | "dashboard_php_nag_class", 298 | "date_i18n", 299 | "dbDelta", 300 | "deactivated_plugins_notice", 301 | "deactivate_plugins", 302 | "deactivate_sitewide_plugin", 303 | "dead_db", 304 | "debug_fclose", 305 | "debug_fopen", 306 | "debug_fwrite", 307 | "default_password_nag", 308 | "default_password_nag_edit_user", 309 | "default_password_nag_handler", 310 | "default_topic_count_scale", 311 | "default_topic_count_text", 312 | "delete_all_user_settings", 313 | "delete_blog_option", 314 | "delete_comment_meta", 315 | "delete_expired_transients", 316 | "delete_get_calendar_cache", 317 | "delete_meta", 318 | "delete_metadata", 319 | "delete_metadata_by_mid", 320 | "delete_network_option", 321 | "delete_option", 322 | "delete_plugins", 323 | "delete_post_meta", 324 | "delete_post_meta_by_key", 325 | "delete_post_thumbnail", 326 | "delete_site_meta", 327 | "delete_site_meta_by_key", 328 | "delete_site_option", 329 | "delete_site_transient", 330 | "delete_term_meta", 331 | "delete_theme", 332 | "delete_transient", 333 | "delete_usermeta", 334 | "delete_users_add_js", 335 | "delete_user_meta", 336 | "delete_user_option", 337 | "delete_user_setting", 338 | "deslash", 339 | "determine_locale", 340 | "did_action", 341 | "did_filter", 342 | "disabled", 343 | "discard_sidebar_being_rendered", 344 | "discover_pingback_server_uri", 345 | "dismissed_updates", 346 | "dismiss_core_update", 347 | "display_header", 348 | "display_header_text", 349 | "display_plugins_table", 350 | "display_setup_form", 351 | "display_space_usage", 352 | "display_theme", 353 | "display_themes", 354 | "documentation_link", 355 | "doing_action", 356 | "doing_filter", 357 | "domain_exists", 358 | "download_url", 359 | "do_accordion_sections", 360 | "do_action", 361 | "do_action_deprecated", 362 | "do_action_ref_array", 363 | "do_activate_header", 364 | "do_all_enclosures", 365 | "do_all_pingbacks", 366 | "do_all_pings", 367 | "do_all_trackbacks", 368 | "do_blocks", 369 | "do_block_editor_incompatible_meta_box", 370 | "do_core_upgrade", 371 | "do_dismiss_core_update", 372 | "do_enclose", 373 | "do_favicon", 374 | "do_feed", 375 | "do_feed_atom", 376 | "do_feed_rdf", 377 | "do_feed_rss", 378 | "do_feed_rss2", 379 | "do_meta_boxes", 380 | "do_robots", 381 | "do_settings_fields", 382 | "do_settings_sections", 383 | "do_shortcode", 384 | "do_shortcodes_in_html_tags", 385 | "do_shortcode_tag", 386 | "do_signup_header", 387 | "do_trackbacks", 388 | "do_undismiss_core_update", 389 | "dropdown_categories", 390 | "dropdown_cats", 391 | "dropdown_link_categories", 392 | "drop_index", 393 | "dynamic_sidebar", 394 | "edit_bookmark_link", 395 | "edit_comment", 396 | "edit_comment_link", 397 | "edit_form_image_editor", 398 | "edit_link", 399 | "edit_post", 400 | "edit_post_link", 401 | "edit_tag_link", 402 | "edit_term_link", 403 | "edit_user", 404 | "email_exists", 405 | "endElement", 406 | "enqueue_block_styles_assets", 407 | "enqueue_comment_hotkeys_js", 408 | "enqueue_editor_block_styles_assets", 409 | "enqueue_embed_scripts", 410 | "enqueue_legacy_post_comments_block_styles", 411 | "ent2ncr", 412 | "esc_attr", 413 | "esc_attr_e", 414 | "esc_attr_x", 415 | "esc_attr__", 416 | "esc_html", 417 | "esc_html_e", 418 | "esc_html_x", 419 | "esc_html__", 420 | "esc_js", 421 | "esc_sql", 422 | "esc_textarea", 423 | "esc_url", 424 | "esc_url_raw", 425 | "esc_xml", 426 | "excerpt_remove_blocks", 427 | "excerpt_remove_footnotes", 428 | "export_add_js", 429 | "export_date_options", 430 | "export_wp", 431 | "extract_from_markers", 432 | "extract_serialized_parent_block", 433 | "favorite_actions", 434 | "feed_content_type", 435 | "feed_links", 436 | "feed_links_extra", 437 | "fetch_feed", 438 | "file_is_displayable_image", 439 | "file_is_valid_image", 440 | "filter_block_content", 441 | "filter_block_core_template_part_attributes", 442 | "filter_block_kses", 443 | "filter_block_kses_value", 444 | "filter_default_metadata", 445 | "filter_default_option", 446 | "filter_SSL", 447 | "find_core_auto_update", 448 | "find_core_update", 449 | "find_posts_div", 450 | "fix_import_form_size", 451 | "fix_phpmailer_messageid", 452 | "floated_admin_avatar", 453 | "flush_rewrite_rules", 454 | "force_balance_tags", 455 | "force_ssl_admin", 456 | "force_ssl_content", 457 | "force_ssl_login", 458 | "format_code_lang", 459 | "format_for_editor", 460 | "format_to_edit", 461 | "format_to_post", 462 | "form_option", 463 | "funky_javascript_callback", 464 | "funky_javascript_fix", 465 | "gallery_shortcode", 466 | "gd_edit_image_support", 467 | "generate_block_asset_handle", 468 | "generate_postdata", 469 | "generate_random_password", 470 | "generic_ping", 471 | "get_404_template", 472 | "get_active_blog_for_user", 473 | "get_adjacent_image_link", 474 | "get_adjacent_post", 475 | "get_adjacent_post_link", 476 | "get_adjacent_post_rel_link", 477 | "get_admin_page_parent", 478 | "get_admin_page_title", 479 | "get_admin_url", 480 | "get_admin_users_for_domain", 481 | "get_alloptions", 482 | "get_alloptions_110", 483 | "get_allowed_block_template_part_areas", 484 | "get_allowed_block_types", 485 | "get_allowed_http_origins", 486 | "get_allowed_mime_types", 487 | "get_allowed_themes", 488 | "get_all_category_ids", 489 | "get_all_page_ids", 490 | "get_all_post_type_supports", 491 | "get_all_registered_block_bindings_sources", 492 | "get_all_user_settings", 493 | "get_ancestors", 494 | "get_approved_comments", 495 | "get_archives", 496 | "get_archives_link", 497 | "get_archive_template", 498 | "get_attached_file", 499 | "get_attached_media", 500 | "get_attachment_fields_to_edit", 501 | "get_attachment_icon", 502 | "get_attachment_icon_src", 503 | "get_attachment_innerHTML", 504 | "get_attachment_link", 505 | "get_attachment_taxonomies", 506 | "get_attachment_template", 507 | "get_author_feed_link", 508 | "get_author_link", 509 | "get_author_name", 510 | "get_author_posts_url", 511 | "get_author_rss_link", 512 | "get_author_template", 513 | "get_author_user_ids", 514 | "get_autotoggle", 515 | "get_available_languages", 516 | "get_available_post_mime_types", 517 | "get_available_post_statuses", 518 | "get_avatar", 519 | "get_avatar_data", 520 | "get_avatar_url", 521 | "get_background_color", 522 | "get_background_image", 523 | "get_block_asset_url", 524 | "get_block_bindings_source", 525 | "get_block_categories", 526 | "get_block_core_avatar_border_attributes", 527 | "get_block_core_post_featured_image_border_attributes", 528 | "get_block_core_post_featured_image_overlay_element_markup", 529 | "get_block_editor_server_block_settings", 530 | "get_block_editor_settings", 531 | "get_block_editor_theme_styles", 532 | "get_block_file_template", 533 | "get_block_metadata_i18n_schema", 534 | "get_block_template", 535 | "get_block_templates", 536 | "get_block_theme_folders", 537 | "get_block_wrapper_attributes", 538 | "get_blogaddress_by_domain", 539 | "get_blogaddress_by_id", 540 | "get_blogaddress_by_name", 541 | "get_bloginfo", 542 | "get_bloginfo_rss", 543 | "get_blogs_of_user", 544 | "get_blog_count", 545 | "get_blog_details", 546 | "get_blog_id_from_url", 547 | "get_blog_list", 548 | "get_blog_option", 549 | "get_blog_permalink", 550 | "get_blog_post", 551 | "get_blog_status", 552 | "get_body_class", 553 | "get_bookmark", 554 | "get_bookmarks", 555 | "get_bookmark_field", 556 | "get_border_color_classes_for_block_core_search", 557 | "get_boundary_post", 558 | "get_boundary_post_rel_link", 559 | "get_broken_themes", 560 | "get_calendar", 561 | "get_cancel_comment_reply_link", 562 | "get_categories", 563 | "get_category", 564 | "get_category_by_path", 565 | "get_category_by_slug", 566 | "get_category_children", 567 | "get_category_feed_link", 568 | "get_category_link", 569 | "get_category_parents", 570 | "get_category_rss_link", 571 | "get_category_template", 572 | "get_category_to_edit", 573 | "get_catname", 574 | "get_cat_ID", 575 | "get_cat_name", 576 | "get_children", 577 | "get_classic_theme_supports_block_editor_settings", 578 | "get_clean_basedomain", 579 | "get_cli_args", 580 | "get_color_classes_for_block_core_search", 581 | "get_column_headers", 582 | "get_comment", 583 | "get_commentdata", 584 | "get_comments", 585 | "get_comments_link", 586 | "get_comments_number", 587 | "get_comments_number_text", 588 | "get_comments_pagenum_link", 589 | "get_comments_pagination_arrow", 590 | "get_comments_popup_template", 591 | "get_comment_author", 592 | "get_comment_author_email", 593 | "get_comment_author_email_link", 594 | "get_comment_author_IP", 595 | "get_comment_author_link", 596 | "get_comment_author_rss", 597 | "get_comment_author_url", 598 | "get_comment_author_url_link", 599 | "get_comment_class", 600 | "get_comment_count", 601 | "get_comment_date", 602 | "get_comment_delimited_block_content", 603 | "get_comment_excerpt", 604 | "get_comment_guid", 605 | "get_comment_ID", 606 | "get_comment_id_fields", 607 | "get_comment_link", 608 | "get_comment_meta", 609 | "get_comment_pages_count", 610 | "get_comment_reply_link", 611 | "get_comment_statuses", 612 | "get_comment_text", 613 | "get_comment_time", 614 | "get_comment_to_edit", 615 | "get_comment_type", 616 | "get_compat_media_markup", 617 | "get_core_checksums", 618 | "get_core_updates", 619 | "get_currentuserinfo", 620 | "get_current_blog_id", 621 | "get_current_network_id", 622 | "get_current_screen", 623 | "get_current_site", 624 | "get_current_site_name", 625 | "get_current_theme", 626 | "get_current_user_id", 627 | "get_custom_header", 628 | "get_custom_header_markup", 629 | "get_custom_logo", 630 | "get_dashboard_blog", 631 | "get_dashboard_url", 632 | "get_date_from_gmt", 633 | "get_date_template", 634 | "get_day_link", 635 | "get_default_block_categories", 636 | "get_default_block_editor_settings", 637 | "get_default_block_template_types", 638 | "get_default_comment_status", 639 | "get_default_feed", 640 | "get_default_link_to_edit", 641 | "get_default_page_to_edit", 642 | "get_default_post_to_edit", 643 | "get_delete_post_link", 644 | "get_dirsize", 645 | "get_dropins", 646 | "get_dynamic_block_names", 647 | "get_editable_authors", 648 | "get_editable_roles", 649 | "get_editable_user_ids", 650 | "get_editor_stylesheets", 651 | "get_edit_bookmark_link", 652 | "get_edit_comment_link", 653 | "get_edit_post_link", 654 | "get_edit_profile_url", 655 | "get_edit_tag_link", 656 | "get_edit_term_link", 657 | "get_edit_user_link", 658 | "get_embed_template", 659 | "get_enclosed", 660 | "get_extended", 661 | "get_feed_build_date", 662 | "get_feed_link", 663 | "get_file", 664 | "get_filesystem_method", 665 | "get_file_data", 666 | "get_file_description", 667 | "get_footer", 668 | "get_front_page_template", 669 | "get_gmt_from_date", 670 | "get_header", 671 | "get_header_image", 672 | "get_header_image_tag", 673 | "get_header_textcolor", 674 | "get_header_video_settings", 675 | "get_header_video_url", 676 | "get_hidden_columns", 677 | "get_hidden_meta_boxes", 678 | "get_home_path", 679 | "get_home_template", 680 | "get_home_url", 681 | "get_hooked_blocks", 682 | "get_html_split_regex", 683 | "get_http_origin", 684 | "get_id_from_blogname", 685 | "get_image_send_to_editor", 686 | "get_image_tag", 687 | "get_importers", 688 | "get_index_rel_link", 689 | "get_index_template", 690 | "get_inline_data", 691 | "get_intermediate_image_sizes", 692 | "get_language_attributes", 693 | "get_lastcommentmodified", 694 | "get_lastpostdate", 695 | "get_lastpostmodified", 696 | "get_last_updated", 697 | "get_legacy_widget_block_editor_settings", 698 | "get_link", 699 | "get_linkcatname", 700 | "get_linkobjects", 701 | "get_linkobjectsbyname", 702 | "get_linkrating", 703 | "get_links", 704 | "get_linksbyname", 705 | "get_linksbyname_withrating", 706 | "get_links_list", 707 | "get_links_withrating", 708 | "get_link_to_edit", 709 | "get_locale", 710 | "get_locale_stylesheet_uri", 711 | "get_main_network_id", 712 | "get_main_site_id", 713 | "get_media_embedded_in_content", 714 | "get_media_item", 715 | "get_media_items", 716 | "get_media_states", 717 | "get_metadata", 718 | "get_metadata_by_mid", 719 | "get_metadata_default", 720 | "get_metadata_raw", 721 | "get_meta_keys", 722 | "get_meta_sql", 723 | "get_month_link", 724 | "get_most_active_blogs", 725 | "get_most_recent_post_of_user", 726 | "get_mu_plugins", 727 | "get_nav_menu_locations", 728 | "get_network", 729 | "get_networks", 730 | "get_network_by_path", 731 | "get_network_option", 732 | "get_next_comments_link", 733 | "get_next_image_link", 734 | "get_next_post", 735 | "get_next_posts_link", 736 | "get_next_posts_page_link", 737 | "get_next_post_link", 738 | "get_nonauthor_user_ids", 739 | "get_num_queries", 740 | "get_objects_in_term", 741 | "get_object_subtype", 742 | "get_object_taxonomies", 743 | "get_object_term_cache", 744 | "get_oembed_endpoint_url", 745 | "get_oembed_response_data", 746 | "get_oembed_response_data_for_url", 747 | "get_oembed_response_data_rich", 748 | "get_option", 749 | "get_options", 750 | "get_others_drafts", 751 | "get_others_pending", 752 | "get_others_unpublished_posts", 753 | "get_page", 754 | "get_paged_template", 755 | "get_pagenum_link", 756 | "get_pages", 757 | "get_page_by_path", 758 | "get_page_by_title", 759 | "get_page_children", 760 | "get_page_hierarchy", 761 | "get_page_link", 762 | "get_page_of_comment", 763 | "get_page_statuses", 764 | "get_page_template", 765 | "get_page_templates", 766 | "get_page_template_slug", 767 | "get_page_uri", 768 | "get_parent_post_rel_link", 769 | "get_parent_theme_file_path", 770 | "get_parent_theme_file_uri", 771 | "get_password_reset_key", 772 | "get_pending_comments_num", 773 | "get_permalink", 774 | "get_plugins", 775 | "get_plugin_data", 776 | "get_plugin_files", 777 | "get_plugin_page_hook", 778 | "get_plugin_page_hookname", 779 | "get_plugin_updates", 780 | "get_post", 781 | "get_postdata", 782 | "get_posts", 783 | "get_posts_by_author_sql", 784 | "get_posts_nav_link", 785 | "get_post_ancestors", 786 | "get_post_class", 787 | "get_post_comments_feed_link", 788 | "get_post_custom", 789 | "get_post_custom_keys", 790 | "get_post_custom_values", 791 | "get_post_datetime", 792 | "get_post_embed_html", 793 | "get_post_embed_url", 794 | "get_post_field", 795 | "get_post_format", 796 | "get_post_format_link", 797 | "get_post_format_slugs", 798 | "get_post_format_string", 799 | "get_post_format_strings", 800 | "get_post_galleries", 801 | "get_post_galleries_images", 802 | "get_post_gallery", 803 | "get_post_gallery_images", 804 | "get_post_meta", 805 | "get_post_meta_by_id", 806 | "get_post_mime_type", 807 | "get_post_mime_types", 808 | "get_post_modified_time", 809 | "get_post_parent", 810 | "get_post_permalink", 811 | "get_post_reply_link", 812 | "get_post_states", 813 | "get_post_stati", 814 | "get_post_status", 815 | "get_post_statuses", 816 | "get_post_status_object", 817 | "get_post_taxonomies", 818 | "get_post_thumbnail_id", 819 | "get_post_time", 820 | "get_post_timestamp", 821 | "get_post_to_edit", 822 | "get_post_type", 823 | "get_post_types", 824 | "get_post_types_by_support", 825 | "get_post_type_archive_feed_link", 826 | "get_post_type_archive_link", 827 | "get_post_type_archive_template", 828 | "get_post_type_capabilities", 829 | "get_post_type_labels", 830 | "get_post_type_object", 831 | "get_preferred_from_update_core", 832 | "get_preview_post_link", 833 | "get_previous_comments_link", 834 | "get_previous_image_link", 835 | "get_previous_post", 836 | "get_previous_posts_link", 837 | "get_previous_posts_page_link", 838 | "get_previous_post_link", 839 | "get_privacy_policy_template", 840 | "get_privacy_policy_url", 841 | "get_private_posts_cap_sql", 842 | "get_profile", 843 | "get_pung", 844 | "get_queried_object", 845 | "get_queried_object_id", 846 | "get_query_pagination_arrow", 847 | "get_query_template", 848 | "get_query_var", 849 | "get_random_header_image", 850 | "get_raw_theme_root", 851 | "get_real_file_to_edit", 852 | "get_registered_metadata", 853 | "get_registered_meta_keys", 854 | "get_registered_nav_menus", 855 | "get_registered_settings", 856 | "get_registered_theme_feature", 857 | "get_registered_theme_features", 858 | "get_rest_url", 859 | "get_role", 860 | "get_sample_permalink", 861 | "get_sample_permalink_html", 862 | "get_screen_icon", 863 | "get_search_comments_feed_link", 864 | "get_search_feed_link", 865 | "get_search_form", 866 | "get_search_link", 867 | "get_search_query", 868 | "get_search_template", 869 | "get_self_link", 870 | "get_settings", 871 | "get_settings_errors", 872 | "get_shortcode_atts_regex", 873 | "get_shortcode_regex", 874 | "get_shortcode_tags_in_content", 875 | "get_shortcut_link", 876 | "get_sidebar", 877 | "get_single_template", 878 | "get_singular_template", 879 | "get_site", 880 | "get_sitemap_url", 881 | "get_sites", 882 | "get_sitestats", 883 | "get_site_allowed_themes", 884 | "get_site_by_path", 885 | "get_site_icon_url", 886 | "get_site_meta", 887 | "get_site_option", 888 | "get_site_screen_help_sidebar_content", 889 | "get_site_screen_help_tab_args", 890 | "get_site_transient", 891 | "get_site_url", 892 | "get_space_allowed", 893 | "get_space_used", 894 | "get_status_header_desc", 895 | "get_stylesheet", 896 | "get_stylesheet_directory", 897 | "get_stylesheet_directory_uri", 898 | "get_stylesheet_uri", 899 | "get_subdirectory_reserved_names", 900 | "get_submit_button", 901 | "get_super_admins", 902 | "get_tag", 903 | "get_tags", 904 | "get_tags_to_edit", 905 | "get_tag_feed_link", 906 | "get_tag_link", 907 | "get_tag_regex", 908 | "get_tag_template", 909 | "get_taxonomies", 910 | "get_taxonomies_for_attachments", 911 | "get_taxonomy", 912 | "get_taxonomy_labels", 913 | "get_taxonomy_template", 914 | "get_tax_sql", 915 | "get_template", 916 | "get_template_directory", 917 | "get_template_directory_uri", 918 | "get_template_hierarchy", 919 | "get_template_part", 920 | "get_temp_dir", 921 | "get_term", 922 | "get_terms", 923 | "get_terms_to_edit", 924 | "get_term_by", 925 | "get_term_children", 926 | "get_term_feed_link", 927 | "get_term_field", 928 | "get_term_link", 929 | "get_term_meta", 930 | "get_term_parents_list", 931 | "get_term_to_edit", 932 | "get_theme", 933 | "get_themes", 934 | "get_theme_data", 935 | "get_theme_feature_list", 936 | "get_theme_file_path", 937 | "get_theme_file_uri", 938 | "get_theme_mod", 939 | "get_theme_mods", 940 | "get_theme_root", 941 | "get_theme_roots", 942 | "get_theme_root_uri", 943 | "get_theme_starter_content", 944 | "get_theme_support", 945 | "get_theme_updates", 946 | "get_theme_update_available", 947 | "get_the_archive_description", 948 | "get_the_archive_title", 949 | "get_the_attachment_link", 950 | "get_the_author", 951 | "get_the_author_aim", 952 | "get_the_author_description", 953 | "get_the_author_email", 954 | "get_the_author_firstname", 955 | "get_the_author_icq", 956 | "get_the_author_ID", 957 | "get_the_author_lastname", 958 | "get_the_author_link", 959 | "get_the_author_login", 960 | "get_the_author_meta", 961 | "get_the_author_msn", 962 | "get_the_author_nickname", 963 | "get_the_author_posts", 964 | "get_the_author_posts_link", 965 | "get_the_author_url", 966 | "get_the_author_yim", 967 | "get_the_block_template_html", 968 | "get_the_category", 969 | "get_the_category_by_ID", 970 | "get_the_category_list", 971 | "get_the_category_rss", 972 | "get_the_comments_navigation", 973 | "get_the_comments_pagination", 974 | "get_the_content", 975 | "get_the_content_feed", 976 | "get_the_date", 977 | "get_the_excerpt", 978 | "get_the_generator", 979 | "get_the_guid", 980 | "get_the_ID", 981 | "get_the_modified_author", 982 | "get_the_modified_date", 983 | "get_the_modified_time", 984 | "get_the_password_form", 985 | "get_the_permalink", 986 | "get_the_posts_navigation", 987 | "get_the_posts_pagination", 988 | "get_the_post_navigation", 989 | "get_the_post_thumbnail", 990 | "get_the_post_thumbnail_caption", 991 | "get_the_post_thumbnail_url", 992 | "get_the_post_type_description", 993 | "get_the_privacy_policy_link", 994 | "get_the_tags", 995 | "get_the_tag_list", 996 | "get_the_taxonomies", 997 | "get_the_terms", 998 | "get_the_term_list", 999 | "get_the_time", 1000 | "get_the_title", 1001 | "get_the_title_rss", 1002 | "get_to_ping", 1003 | "get_trackback_url", 1004 | "get_transient", 1005 | "get_translations_for_domain", 1006 | "get_typography_classes_for_block_core_search", 1007 | "get_typography_styles_for_block_core_search", 1008 | "get_udims", 1009 | "get_uploaded_header_images", 1010 | "get_upload_iframe_src", 1011 | "get_upload_space_available", 1012 | "get_url_in_content", 1013 | "get_user", 1014 | "get_userdata", 1015 | "get_userdatabylogin", 1016 | "get_usermeta", 1017 | "get_usernumposts", 1018 | "get_users", 1019 | "get_users_drafts", 1020 | "get_users_of_blog", 1021 | "get_user_by", 1022 | "get_user_by_email", 1023 | "get_user_count", 1024 | "get_user_details", 1025 | "get_user_id_from_string", 1026 | "get_user_locale", 1027 | "get_user_meta", 1028 | "get_user_metavalues", 1029 | "get_user_option", 1030 | "get_user_setting", 1031 | "get_user_to_edit", 1032 | "get_weekstartend", 1033 | "get_wp_title_rss", 1034 | "get_year_link", 1035 | "global_terms", 1036 | "global_terms_enabled", 1037 | "got_mod_rewrite", 1038 | "got_url_rewrite", 1039 | "graceful_fail", 1040 | "grant_super_admin", 1041 | "gzip_compression", 1042 | "handle_legacy_widget_preview_iframe", 1043 | "has_action", 1044 | "has_block", 1045 | "has_blocks", 1046 | "has_category", 1047 | "has_custom_header", 1048 | "has_custom_logo", 1049 | "has_excerpt", 1050 | "has_filter", 1051 | "has_header_image", 1052 | "has_header_video", 1053 | "has_image_size", 1054 | "has_meta", 1055 | "has_nav_menu", 1056 | "has_post_format", 1057 | "has_post_parent", 1058 | "has_post_thumbnail", 1059 | "has_shortcode", 1060 | "has_site_icon", 1061 | "has_tag", 1062 | "has_term", 1063 | "has_term_meta", 1064 | "has_translation", 1065 | "have_comments", 1066 | "have_posts", 1067 | "header_image", 1068 | "header_textcolor", 1069 | "heartbeat_autosave", 1070 | "home_url", 1071 | "htmlentities2", 1072 | "html_type_rss", 1073 | "human_readable_duration", 1074 | "human_time_diff", 1075 | "iframe_footer", 1076 | "iframe_header", 1077 | "iis7_add_rewrite_rule", 1078 | "iis7_delete_rewrite_rule", 1079 | "iis7_rewrite_rule_exists", 1080 | "iis7_save_url_rewrite_rules", 1081 | "iis7_supports_permalinks", 1082 | "image_add_caption", 1083 | "image_align_input_fields", 1084 | "image_attachment_fields_to_edit", 1085 | "image_attachment_fields_to_save", 1086 | "image_constrain_size_for_editor", 1087 | "image_downsize", 1088 | "image_edit_apply_changes", 1089 | "image_get_intermediate_size", 1090 | "image_hwstring", 1091 | "image_link_input_fields", 1092 | "image_make_intermediate_size", 1093 | "image_media_send_to_editor", 1094 | "image_resize", 1095 | "image_resize_dimensions", 1096 | "image_size_input_fields", 1097 | "img_caption_shortcode", 1098 | "includes_url", 1099 | "index_rel_link", 1100 | "inject_ignored_hooked_blocks_metadata_attributes", 1101 | "insert_blog", 1102 | "insert_hooked_blocks", 1103 | "insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata", 1104 | "insert_hooked_blocks_into_rest_response", 1105 | "insert_with_markers", 1106 | "install_blog", 1107 | "install_blog_defaults", 1108 | "install_dashboard", 1109 | "install_global_terms", 1110 | "install_network", 1111 | "install_plugins_favorites_form", 1112 | "install_plugins_upload", 1113 | "install_plugin_information", 1114 | "install_plugin_install_status", 1115 | "install_popular_tags", 1116 | "install_search_form", 1117 | "install_themes_dashboard", 1118 | "install_themes_feature_list", 1119 | "install_themes_upload", 1120 | "install_theme_information", 1121 | "install_theme_search_form", 1122 | "in_category", 1123 | "in_the_loop", 1124 | "iso8601_timezone_to_offset", 1125 | "iso8601_to_datetime", 1126 | "is_404", 1127 | "is_active_sidebar", 1128 | "is_active_widget", 1129 | "is_admin", 1130 | "is_admin_bar_showing", 1131 | "is_allowed_http_origin", 1132 | "is_archive", 1133 | "is_archived", 1134 | "is_attachment", 1135 | "is_author", 1136 | "is_avatar_comment_type", 1137 | "is_blog_admin", 1138 | "is_blog_installed", 1139 | "is_blog_user", 1140 | "is_category", 1141 | "is_child_theme", 1142 | "is_comments_popup", 1143 | "is_comment_feed", 1144 | "is_customize_preview", 1145 | "is_date", 1146 | "is_day", 1147 | "is_dynamic_sidebar", 1148 | "is_email", 1149 | "is_email_address_unsafe", 1150 | "is_embed", 1151 | "is_favicon", 1152 | "is_feed", 1153 | "is_front_page", 1154 | "is_gd_image", 1155 | "is_header_video_active", 1156 | "is_home", 1157 | "is_lighttpd_before_150", 1158 | "is_locale_switched", 1159 | "is_local_attachment", 1160 | "is_login", 1161 | "is_main_blog", 1162 | "is_main_network", 1163 | "is_main_query", 1164 | "is_main_site", 1165 | "is_month", 1166 | "is_multisite", 1167 | "is_multi_author", 1168 | "is_nav_menu", 1169 | "is_nav_menu_item", 1170 | "is_network_admin", 1171 | "is_network_only_plugin", 1172 | "is_new_day", 1173 | "is_object_in_taxonomy", 1174 | "is_object_in_term", 1175 | "is_page", 1176 | "is_paged", 1177 | "is_page_template", 1178 | "is_php_version_compatible", 1179 | "is_plugin_active", 1180 | "is_plugin_active_for_network", 1181 | "is_plugin_inactive", 1182 | "is_plugin_page", 1183 | "is_plugin_paused", 1184 | "is_post_embeddable", 1185 | "is_post_publicly_viewable", 1186 | "is_post_status_viewable", 1187 | "is_post_type_archive", 1188 | "is_post_type_hierarchical", 1189 | "is_post_type_viewable", 1190 | "is_preview", 1191 | "is_privacy_policy", 1192 | "is_protected_ajax_action", 1193 | "is_protected_endpoint", 1194 | "is_protected_meta", 1195 | "is_random_header_image", 1196 | "is_registered_sidebar", 1197 | "is_robots", 1198 | "is_rtl", 1199 | "is_search", 1200 | "is_serialized", 1201 | "is_serialized_string", 1202 | "is_single", 1203 | "is_singular", 1204 | "is_site_admin", 1205 | "is_site_meta_supported", 1206 | "is_ssl", 1207 | "is_sticky", 1208 | "is_subdomain_install", 1209 | "is_super_admin", 1210 | "is_tag", 1211 | "is_tax", 1212 | "is_taxonomy", 1213 | "is_taxonomy_hierarchical", 1214 | "is_taxonomy_viewable", 1215 | "is_term", 1216 | "is_term_publicly_viewable", 1217 | "is_textdomain_loaded", 1218 | "is_theme_paused", 1219 | "is_time", 1220 | "is_trackback", 1221 | "is_uninstallable_plugin", 1222 | "is_upload_space_available", 1223 | "is_user_admin", 1224 | "is_user_logged_in", 1225 | "is_user_member_of_blog", 1226 | "is_user_option_local", 1227 | "is_user_spammy", 1228 | "is_utf8_charset", 1229 | "is_wpmu_sitewide_plugin", 1230 | "is_wp_error", 1231 | "is_wp_version_compatible", 1232 | "is_year", 1233 | "js_escape", 1234 | "kses_init", 1235 | "kses_init_filters", 1236 | "kses_remove_filters", 1237 | "language_attributes", 1238 | "like_escape", 1239 | "links_add_base_url", 1240 | "links_add_target", 1241 | "links_popup_script", 1242 | "link_advanced_meta_box", 1243 | "link_categories_meta_box", 1244 | "link_pages", 1245 | "link_submit_meta_box", 1246 | "link_target_meta_box", 1247 | "link_xfn_meta_box", 1248 | "list_authors", 1249 | "list_cats", 1250 | "list_core_update", 1251 | "list_files", 1252 | "list_meta", 1253 | "list_plugin_updates", 1254 | "list_theme_updates", 1255 | "list_translation_updates", 1256 | "load_child_theme_textdomain", 1257 | "load_default_textdomain", 1258 | "load_image_to_edit", 1259 | "load_muplugin_textdomain", 1260 | "load_plugin_textdomain", 1261 | "load_script_textdomain", 1262 | "load_script_translations", 1263 | "load_template", 1264 | "load_textdomain", 1265 | "load_theme_textdomain", 1266 | "locale_stylesheet", 1267 | "locate_block_template", 1268 | "locate_template", 1269 | "login_footer", 1270 | "login_header", 1271 | "logIO", 1272 | "maintenance_nag", 1273 | "make_after_block_visitor", 1274 | "make_before_block_visitor", 1275 | "make_clickable", 1276 | "make_db_current", 1277 | "make_db_current_silent", 1278 | "make_site_theme", 1279 | "make_site_theme_from_default", 1280 | "make_site_theme_from_oldschool", 1281 | "make_url_footnote", 1282 | "map_deep", 1283 | "map_meta_cap", 1284 | "maybe_add_column", 1285 | "maybe_add_existing_user_to_blog", 1286 | "maybe_convert_table_to_utf8mb4", 1287 | "maybe_create_table", 1288 | "maybe_disable_automattic_widgets", 1289 | "maybe_disable_link_manager", 1290 | "maybe_hash_hex_color", 1291 | "maybe_redirect_404", 1292 | "maybe_serialize", 1293 | "maybe_unserialize", 1294 | "mbstring_binary_safe_encoding", 1295 | "media_buttons", 1296 | "media_handle_sideload", 1297 | "media_handle_upload", 1298 | "media_post_single_attachment_fields_to_edit", 1299 | "media_send_to_editor", 1300 | "media_sideload_image", 1301 | "media_single_attachment_fields_to_edit", 1302 | "media_upload_audio", 1303 | "media_upload_file", 1304 | "media_upload_flash_bypass", 1305 | "media_upload_form", 1306 | "media_upload_form_handler", 1307 | "media_upload_gallery", 1308 | "media_upload_gallery_form", 1309 | "media_upload_header", 1310 | "media_upload_html_bypass", 1311 | "media_upload_image", 1312 | "media_upload_library", 1313 | "media_upload_library_form", 1314 | "media_upload_max_image_resize", 1315 | "media_upload_tabs", 1316 | "media_upload_text_after", 1317 | "media_upload_type_form", 1318 | "media_upload_type_url_form", 1319 | "media_upload_video", 1320 | "menu_page_url", 1321 | "metadata_exists", 1322 | "meta_box_prefs", 1323 | "meta_form", 1324 | "move_dir", 1325 | "ms_allowed_http_request_hosts", 1326 | "ms_cookie_constants", 1327 | "ms_deprecated_blogs_file", 1328 | "ms_file_constants", 1329 | "ms_is_switched", 1330 | "ms_load_current_site_and_network", 1331 | "ms_not_installed", 1332 | "ms_site_check", 1333 | "ms_subdomain_constants", 1334 | "ms_upload_constants", 1335 | "multisite_over_quota_message", 1336 | "mu_dropdown_languages", 1337 | "mu_options", 1338 | "mysql2date", 1339 | "mysql_to_rfc3339", 1340 | "network_admin_url", 1341 | "network_domain_check", 1342 | "network_edit_site_nav", 1343 | "network_home_url", 1344 | "network_settings_add_js", 1345 | "network_site_url", 1346 | "network_step1", 1347 | "network_step2", 1348 | "newblog_notify_siteadmin", 1349 | "newuser_notify_siteadmin", 1350 | "new_user_email_admin_notice", 1351 | "next_comments_link", 1352 | "next_image_link", 1353 | "next_post", 1354 | "next_posts", 1355 | "next_posts_link", 1356 | "next_post_link", 1357 | "next_post_rel_link", 1358 | "next_widget_id_number", 1359 | "nocache_headers", 1360 | "noindex", 1361 | "normalize_whitespace", 1362 | "note_sidebar_being_rendered", 1363 | "number_format_i18n", 1364 | "options_discussion_add_js", 1365 | "options_general_add_js", 1366 | "options_permalink_add_js", 1367 | "options_reading_add_js", 1368 | "options_reading_blog_charset", 1369 | "option_update_filter", 1370 | "page_attributes_meta_box", 1371 | "page_template_dropdown", 1372 | "paginate_comments_links", 1373 | "paginate_links", 1374 | "parent_dropdown", 1375 | "parent_post_rel_link", 1376 | "parse_blocks", 1377 | "path_is_absolute", 1378 | "path_join", 1379 | "paused_plugins_notice", 1380 | "paused_themes_notice", 1381 | "PclZipUtilCopyBlock", 1382 | "PclZipUtilOptionText", 1383 | "PclZipUtilPathInclusion", 1384 | "PclZipUtilPathReduction", 1385 | "PclZipUtilRename", 1386 | "PclZipUtilTranslateWinPath", 1387 | "permalink_anchor", 1388 | "permalink_link", 1389 | "permalink_single_rss", 1390 | "pingback", 1391 | "pingback_ping_source_uri", 1392 | "pings_open", 1393 | "plugins_api", 1394 | "plugins_url", 1395 | "plugin_basename", 1396 | "plugin_dir_path", 1397 | "plugin_dir_url", 1398 | "plugin_sandbox_scrape", 1399 | "populate_network", 1400 | "populate_network_meta", 1401 | "populate_options", 1402 | "populate_roles", 1403 | "populate_roles_160", 1404 | "populate_roles_210", 1405 | "populate_roles_230", 1406 | "populate_roles_250", 1407 | "populate_roles_260", 1408 | "populate_roles_270", 1409 | "populate_roles_280", 1410 | "populate_roles_300", 1411 | "populate_site_meta", 1412 | "popuplinks", 1413 | "postbox_classes", 1414 | "posts_nav_link", 1415 | "post_author_meta_box", 1416 | "post_categories_meta_box", 1417 | "post_class", 1418 | "post_comments_feed_link", 1419 | "post_comments_form_block_form_defaults", 1420 | "post_comment_meta_box", 1421 | "post_comment_meta_box_thead", 1422 | "post_comment_status_meta_box", 1423 | "post_custom", 1424 | "post_custom_meta_box", 1425 | "post_excerpt_meta_box", 1426 | "post_exists", 1427 | "post_format_meta_box", 1428 | "post_form_autocomplete_off", 1429 | "post_password_required", 1430 | "post_permalink", 1431 | "post_preview", 1432 | "post_reply_link", 1433 | "post_revisions_meta_box", 1434 | "post_slug_meta_box", 1435 | "post_submit_meta_box", 1436 | "post_tags_meta_box", 1437 | "post_thumbnail_meta_box", 1438 | "post_trackback_meta_box", 1439 | "post_type_archive_title", 1440 | "post_type_exists", 1441 | "post_type_supports", 1442 | "prepend_attachment", 1443 | "prep_atom_text_construct", 1444 | "preview_theme", 1445 | "preview_theme_ob_filter", 1446 | "preview_theme_ob_filter_callback", 1447 | "previous_comments_link", 1448 | "previous_image_link", 1449 | "previous_post", 1450 | "previous_posts", 1451 | "previous_posts_link", 1452 | "previous_post_link", 1453 | "prev_post_rel_link", 1454 | "pre_schema_upgrade", 1455 | "print_admin_styles", 1456 | "print_column_headers", 1457 | "print_embed_comments_button", 1458 | "print_embed_scripts", 1459 | "print_embed_sharing_button", 1460 | "print_embed_sharing_dialog", 1461 | "print_embed_styles", 1462 | "print_emoji_detection_script", 1463 | "print_emoji_styles", 1464 | "print_footer_scripts", 1465 | "print_head_scripts", 1466 | "print_late_styles", 1467 | "privacy_ping_filter", 1468 | "query_posts", 1469 | "rawurlencode_deep", 1470 | "recurse_dirsize", 1471 | "redirect_canonical", 1472 | "redirect_guess_404_permalink", 1473 | "redirect_post", 1474 | "redirect_this_site", 1475 | "refresh_blog_details", 1476 | "refresh_user_details", 1477 | "registered_meta_key_exists", 1478 | "register_activation_hook", 1479 | "register_admin_color_schemes", 1480 | "register_and_do_post_meta_boxes", 1481 | "register_block_bindings_source", 1482 | "register_block_core_archives", 1483 | "register_block_core_avatar", 1484 | "register_block_core_block", 1485 | "register_block_core_button", 1486 | "register_block_core_calendar", 1487 | "register_block_core_categories", 1488 | "register_block_core_comments", 1489 | "register_block_core_comments_pagination", 1490 | "register_block_core_comments_pagination_next", 1491 | "register_block_core_comments_pagination_numbers", 1492 | "register_block_core_comments_pagination_previous", 1493 | "register_block_core_comments_title", 1494 | "register_block_core_comment_author_name", 1495 | "register_block_core_comment_content", 1496 | "register_block_core_comment_date", 1497 | "register_block_core_comment_edit_link", 1498 | "register_block_core_comment_reply_link", 1499 | "register_block_core_comment_template", 1500 | "register_block_core_cover", 1501 | "register_block_core_file", 1502 | "register_block_core_footnotes", 1503 | "register_block_core_footnotes_post_meta", 1504 | "register_block_core_gallery", 1505 | "register_block_core_heading", 1506 | "register_block_core_home_link", 1507 | "register_block_core_image", 1508 | "register_block_core_latest_comments", 1509 | "register_block_core_latest_posts", 1510 | "register_block_core_legacy_widget", 1511 | "register_block_core_list", 1512 | "register_block_core_loginout", 1513 | "register_block_core_media_text", 1514 | "register_block_core_navigation", 1515 | "register_block_core_navigation_link", 1516 | "register_block_core_navigation_submenu", 1517 | "register_block_core_page_list", 1518 | "register_block_core_page_list_item", 1519 | "register_block_core_pattern", 1520 | "register_block_core_post_author", 1521 | "register_block_core_post_author_biography", 1522 | "register_block_core_post_author_name", 1523 | "register_block_core_post_comments_form", 1524 | "register_block_core_post_content", 1525 | "register_block_core_post_date", 1526 | "register_block_core_post_excerpt", 1527 | "register_block_core_post_featured_image", 1528 | "register_block_core_post_navigation_link", 1529 | "register_block_core_post_template", 1530 | "register_block_core_post_terms", 1531 | "register_block_core_post_title", 1532 | "register_block_core_query", 1533 | "register_block_core_query_no_results", 1534 | "register_block_core_query_pagination", 1535 | "register_block_core_query_pagination_next", 1536 | "register_block_core_query_pagination_numbers", 1537 | "register_block_core_query_pagination_previous", 1538 | "register_block_core_query_title", 1539 | "register_block_core_query_total", 1540 | "register_block_core_read_more", 1541 | "register_block_core_rss", 1542 | "register_block_core_search", 1543 | "register_block_core_shortcode", 1544 | "register_block_core_site_icon_setting", 1545 | "register_block_core_site_logo", 1546 | "register_block_core_site_logo_setting", 1547 | "register_block_core_site_tagline", 1548 | "register_block_core_site_title", 1549 | "register_block_core_social_link", 1550 | "register_block_core_tag_cloud", 1551 | "register_block_core_template_part", 1552 | "register_block_core_term_description", 1553 | "register_block_core_widget_group", 1554 | "register_block_pattern", 1555 | "register_block_pattern_category", 1556 | "register_block_script_handle", 1557 | "register_block_script_module_id", 1558 | "register_block_style", 1559 | "register_block_style_handle", 1560 | "register_block_template", 1561 | "register_block_type", 1562 | "register_block_type_from_metadata", 1563 | "register_column_headers", 1564 | "register_core_block_style_handles", 1565 | "register_core_block_types_from_metadata", 1566 | "register_deactivation_hook", 1567 | "register_default_headers", 1568 | "register_importer", 1569 | "register_initial_settings", 1570 | "register_legacy_post_comments_block", 1571 | "register_meta", 1572 | "register_nav_menu", 1573 | "register_nav_menus", 1574 | "register_new_user", 1575 | "register_post_meta", 1576 | "register_post_status", 1577 | "register_post_type", 1578 | "register_rest_field", 1579 | "register_rest_route", 1580 | "register_setting", 1581 | "register_sidebar", 1582 | "register_sidebars", 1583 | "register_sidebar_widget", 1584 | "register_taxonomy", 1585 | "register_taxonomy_for_object_type", 1586 | "register_term_meta", 1587 | "register_theme_directory", 1588 | "register_theme_feature", 1589 | "register_uninstall_hook", 1590 | "register_widget", 1591 | "register_widget_control", 1592 | "rel_canonical", 1593 | "remove_accents", 1594 | "remove_action", 1595 | "remove_allowed_options", 1596 | "remove_all_actions", 1597 | "remove_all_filters", 1598 | "remove_all_shortcodes", 1599 | "remove_block_asset_path_prefix", 1600 | "remove_custom_background", 1601 | "remove_custom_image_header", 1602 | "remove_editor_styles", 1603 | "remove_filter", 1604 | "remove_image_size", 1605 | "remove_menu_page", 1606 | "remove_meta_box", 1607 | "remove_option_update_handler", 1608 | "remove_option_whitelist", 1609 | "remove_permastruct", 1610 | "remove_post_type_support", 1611 | "remove_query_arg", 1612 | "remove_rewrite_tag", 1613 | "remove_role", 1614 | "remove_serialized_parent_block", 1615 | "remove_shortcode", 1616 | "remove_submenu_page", 1617 | "remove_theme_mod", 1618 | "remove_theme_mods", 1619 | "remove_theme_support", 1620 | "remove_user_from_blog", 1621 | "render_block", 1622 | "render_block_core_archives", 1623 | "render_block_core_avatar", 1624 | "render_block_core_block", 1625 | "render_block_core_button", 1626 | "render_block_core_calendar", 1627 | "render_block_core_categories", 1628 | "render_block_core_comments", 1629 | "render_block_core_comments_pagination", 1630 | "render_block_core_comments_pagination_next", 1631 | "render_block_core_comments_pagination_numbers", 1632 | "render_block_core_comments_pagination_previous", 1633 | "render_block_core_comments_title", 1634 | "render_block_core_comment_author_name", 1635 | "render_block_core_comment_content", 1636 | "render_block_core_comment_date", 1637 | "render_block_core_comment_edit_link", 1638 | "render_block_core_comment_reply_link", 1639 | "render_block_core_comment_template", 1640 | "render_block_core_cover", 1641 | "render_block_core_file", 1642 | "render_block_core_footnotes", 1643 | "render_block_core_home_link", 1644 | "render_block_core_image", 1645 | "render_block_core_latest_comments", 1646 | "render_block_core_latest_posts", 1647 | "render_block_core_legacy_widget", 1648 | "render_block_core_loginout", 1649 | "render_block_core_media_text", 1650 | "render_block_core_navigation", 1651 | "render_block_core_navigation_link", 1652 | "render_block_core_navigation_submenu", 1653 | "render_block_core_page_list", 1654 | "render_block_core_pattern", 1655 | "render_block_core_post_author", 1656 | "render_block_core_post_author_biography", 1657 | "render_block_core_post_author_name", 1658 | "render_block_core_post_comments_form", 1659 | "render_block_core_post_content", 1660 | "render_block_core_post_date", 1661 | "render_block_core_post_excerpt", 1662 | "render_block_core_post_featured_image", 1663 | "render_block_core_post_navigation_link", 1664 | "render_block_core_post_template", 1665 | "render_block_core_post_terms", 1666 | "render_block_core_post_title", 1667 | "render_block_core_query", 1668 | "render_block_core_query_no_results", 1669 | "render_block_core_query_pagination", 1670 | "render_block_core_query_pagination_next", 1671 | "render_block_core_query_pagination_numbers", 1672 | "render_block_core_query_pagination_previous", 1673 | "render_block_core_query_title", 1674 | "render_block_core_query_total", 1675 | "render_block_core_read_more", 1676 | "render_block_core_rss", 1677 | "render_block_core_search", 1678 | "render_block_core_shortcode", 1679 | "render_block_core_site_logo", 1680 | "render_block_core_site_tagline", 1681 | "render_block_core_site_title", 1682 | "render_block_core_social_link", 1683 | "render_block_core_tag_cloud", 1684 | "render_block_core_template_part", 1685 | "render_block_core_term_description", 1686 | "render_block_core_widget_group", 1687 | "request_filesystem_credentials", 1688 | "require_if_theme_supports", 1689 | "require_wp_db", 1690 | "reset_mbstring_encoding", 1691 | "reset_password", 1692 | "resolve_block_template", 1693 | "resolve_pattern_blocks", 1694 | "restore_current_blog", 1695 | "restore_current_locale", 1696 | "restore_previous_locale", 1697 | "rest_add_application_passwords_to_index", 1698 | "rest_api_default_filters", 1699 | "rest_api_init", 1700 | "rest_api_loaded", 1701 | "rest_api_register_rewrites", 1702 | "rest_application_password_check_errors", 1703 | "rest_application_password_collect_status", 1704 | "rest_are_values_equal", 1705 | "rest_authorization_required_code", 1706 | "rest_convert_error_to_response", 1707 | "rest_cookie_check_errors", 1708 | "rest_cookie_collect_status", 1709 | "rest_default_additional_properties_to_false", 1710 | "rest_do_request", 1711 | "rest_ensure_request", 1712 | "rest_ensure_response", 1713 | "rest_filter_response_by_context", 1714 | "rest_filter_response_fields", 1715 | "rest_find_any_matching_schema", 1716 | "rest_find_matching_pattern_property_schema", 1717 | "rest_find_one_matching_schema", 1718 | "rest_format_combining_operation_error", 1719 | "rest_get_allowed_schema_keywords", 1720 | "rest_get_authenticated_app_password", 1721 | "rest_get_avatar_sizes", 1722 | "rest_get_avatar_urls", 1723 | "rest_get_best_type_for_value", 1724 | "rest_get_combining_operation_error", 1725 | "rest_get_date_with_gmt", 1726 | "rest_get_endpoint_args_for_schema", 1727 | "rest_get_queried_resource_route", 1728 | "rest_get_route_for_post", 1729 | "rest_get_route_for_post_type_items", 1730 | "rest_get_route_for_taxonomy_items", 1731 | "rest_get_route_for_term", 1732 | "rest_get_server", 1733 | "rest_get_url_prefix", 1734 | "rest_handle_deprecated_argument", 1735 | "rest_handle_deprecated_function", 1736 | "rest_handle_doing_it_wrong", 1737 | "rest_handle_multi_type_schema", 1738 | "rest_handle_options_request", 1739 | "rest_is_array", 1740 | "rest_is_boolean", 1741 | "rest_is_field_included", 1742 | "rest_is_integer", 1743 | "rest_is_ip_address", 1744 | "rest_is_object", 1745 | "rest_output_link_header", 1746 | "rest_output_link_wp_head", 1747 | "rest_output_rsd", 1748 | "rest_parse_date", 1749 | "rest_parse_embed_param", 1750 | "rest_parse_hex_color", 1751 | "rest_parse_request_arg", 1752 | "rest_preload_api_request", 1753 | "rest_sanitize_array", 1754 | "rest_sanitize_boolean", 1755 | "rest_sanitize_object", 1756 | "rest_sanitize_request_arg", 1757 | "rest_sanitize_value_from_schema", 1758 | "rest_send_allow_header", 1759 | "rest_send_cors_headers", 1760 | "rest_stabilize_value", 1761 | "rest_url", 1762 | "rest_validate_array_contains_unique_items", 1763 | "rest_validate_array_value_from_schema", 1764 | "rest_validate_boolean_value_from_schema", 1765 | "rest_validate_enum", 1766 | "rest_validate_integer_value_from_schema", 1767 | "rest_validate_json_schema_pattern", 1768 | "rest_validate_null_value_from_schema", 1769 | "rest_validate_number_value_from_schema", 1770 | "rest_validate_object_value_from_schema", 1771 | "rest_validate_request_arg", 1772 | "rest_validate_string_value_from_schema", 1773 | "rest_validate_value_from_schema", 1774 | "resume_plugin", 1775 | "resume_theme", 1776 | "retrieve_password", 1777 | "retrieve_widgets", 1778 | "revoke_super_admin", 1779 | "rewind_posts", 1780 | "rich_edit_exists", 1781 | "rsd_link", 1782 | "rss2_site_icon", 1783 | "rss_enclosure", 1784 | "safecss_filter_attr", 1785 | "sanitize_bookmark", 1786 | "sanitize_bookmark_field", 1787 | "sanitize_category", 1788 | "sanitize_category_field", 1789 | "sanitize_comment_cookies", 1790 | "sanitize_email", 1791 | "sanitize_file_name", 1792 | "sanitize_hex_color", 1793 | "sanitize_hex_color_no_hash", 1794 | "sanitize_html_class", 1795 | "sanitize_key", 1796 | "sanitize_locale_name", 1797 | "sanitize_meta", 1798 | "sanitize_mime_type", 1799 | "sanitize_option", 1800 | "sanitize_post", 1801 | "sanitize_post_field", 1802 | "sanitize_sql_orderby", 1803 | "sanitize_term", 1804 | "sanitize_term_field", 1805 | "sanitize_textarea_field", 1806 | "sanitize_text_field", 1807 | "sanitize_title", 1808 | "sanitize_title_for_query", 1809 | "sanitize_title_with_dashes", 1810 | "sanitize_trackback_urls", 1811 | "sanitize_url", 1812 | "sanitize_user", 1813 | "sanitize_user_field", 1814 | "sanitize_user_object", 1815 | "saveDomDocument", 1816 | "save_mod_rewrite_rules", 1817 | "screen_icon", 1818 | "screen_layout", 1819 | "screen_meta", 1820 | "screen_options", 1821 | "script_concat_settings", 1822 | "search_theme_directories", 1823 | "seems_utf8", 1824 | "selected", 1825 | "self_admin_url", 1826 | "self_link", 1827 | "send_confirmation_on_profile_email", 1828 | "send_frame_options_header", 1829 | "send_nosniff_header", 1830 | "send_origin_headers", 1831 | "separate_comments", 1832 | "serialize_block", 1833 | "serialize_blocks", 1834 | "serialize_block_attributes", 1835 | "settings_errors", 1836 | "settings_fields", 1837 | "setup_config_display_header", 1838 | "setup_postdata", 1839 | "setup_userdata", 1840 | "set_current_screen", 1841 | "set_current_user", 1842 | "set_ignored_hooked_blocks_metadata", 1843 | "set_post_format", 1844 | "set_post_thumbnail", 1845 | "set_post_thumbnail_size", 1846 | "set_post_type", 1847 | "set_query_var", 1848 | "set_screen_options", 1849 | "set_site_transient", 1850 | "set_theme_mod", 1851 | "set_transient", 1852 | "set_url_scheme", 1853 | "set_user_setting", 1854 | "shortcode_atts", 1855 | "shortcode_exists", 1856 | "shortcode_parse_atts", 1857 | "shortcode_unautop", 1858 | "show_admin_bar", 1859 | "show_blog_form", 1860 | "show_message", 1861 | "show_user_form", 1862 | "shutdown_action_hook", 1863 | "signup_another_blog", 1864 | "signup_blog", 1865 | "signup_get_available_languages", 1866 | "signup_nonce_check", 1867 | "signup_nonce_fields", 1868 | "signup_user", 1869 | "single_cat_title", 1870 | "single_month_title", 1871 | "single_post_title", 1872 | "single_tag_title", 1873 | "single_term_title", 1874 | "site_admin_notice", 1875 | "site_icon_url", 1876 | "site_url", 1877 | "size_format", 1878 | "smilies_init", 1879 | "sort_menu", 1880 | "spawn_cron", 1881 | "startElement", 1882 | "start_post_rel_link", 1883 | "start_wp", 1884 | "status_header", 1885 | "sticky_class", 1886 | "stick_post", 1887 | "stream_preview_image", 1888 | "stripslashes_deep", 1889 | "stripslashes_from_strings_only", 1890 | "strip_core_block_namespace", 1891 | "strip_fragment_from_url", 1892 | "strip_shortcodes", 1893 | "strip_shortcode_tag", 1894 | "styles_for_block_core_search", 1895 | "submit_button", 1896 | "switch_theme", 1897 | "switch_to_blog", 1898 | "switch_to_locale", 1899 | "switch_to_user_locale", 1900 | "sync_category_tag_slugs", 1901 | "tag_description", 1902 | "tag_escape", 1903 | "tag_exists", 1904 | "taxonomy_exists", 1905 | "taxonomy_meta_box_sanitize_cb_checkboxes", 1906 | "taxonomy_meta_box_sanitize_cb_input", 1907 | "term_description", 1908 | "term_exists", 1909 | "term_is_ancestor_of", 1910 | "themes_api", 1911 | "theme_update_available", 1912 | "the_archive_description", 1913 | "the_archive_title", 1914 | "the_attachment_link", 1915 | "the_attachment_links", 1916 | "the_author", 1917 | "the_author_aim", 1918 | "the_author_description", 1919 | "the_author_email", 1920 | "the_author_firstname", 1921 | "the_author_icq", 1922 | "the_author_ID", 1923 | "the_author_lastname", 1924 | "the_author_link", 1925 | "the_author_login", 1926 | "the_author_meta", 1927 | "the_author_msn", 1928 | "the_author_nickname", 1929 | "the_author_posts", 1930 | "the_author_posts_link", 1931 | "the_author_url", 1932 | "the_author_yim", 1933 | "the_block_editor_meta_boxes", 1934 | "the_block_editor_meta_box_post_form_hidden_fields", 1935 | "the_block_template_skip_link", 1936 | "the_category", 1937 | "the_category_head", 1938 | "the_category_ID", 1939 | "the_category_rss", 1940 | "the_comment", 1941 | "the_comments_navigation", 1942 | "the_comments_pagination", 1943 | "the_content", 1944 | "the_content_feed", 1945 | "the_content_rss", 1946 | "the_custom_header_markup", 1947 | "the_custom_logo", 1948 | "the_date", 1949 | "the_date_xml", 1950 | "the_editor", 1951 | "the_embed_site_title", 1952 | "the_excerpt", 1953 | "the_excerpt_embed", 1954 | "the_excerpt_rss", 1955 | "the_feed_link", 1956 | "the_generator", 1957 | "the_guid", 1958 | "the_header_image_tag", 1959 | "the_header_video_url", 1960 | "the_ID", 1961 | "the_media_upload_tabs", 1962 | "the_meta", 1963 | "the_modified_author", 1964 | "the_modified_date", 1965 | "the_modified_time", 1966 | "the_permalink", 1967 | "the_permalink_rss", 1968 | "the_post", 1969 | "the_posts_navigation", 1970 | "the_posts_pagination", 1971 | "the_post_navigation", 1972 | "the_post_password", 1973 | "the_post_thumbnail", 1974 | "the_post_thumbnail_caption", 1975 | "the_post_thumbnail_url", 1976 | "the_privacy_policy_link", 1977 | "the_search_query", 1978 | "the_shortlink", 1979 | "the_tags", 1980 | "the_taxonomies", 1981 | "the_terms", 1982 | "the_time", 1983 | "the_title", 1984 | "the_title_attribute", 1985 | "the_title_rss", 1986 | "the_weekday", 1987 | "the_weekday_date", 1988 | "the_widget", 1989 | "timer_float", 1990 | "timer_start", 1991 | "timer_stop", 1992 | "tinymce_include", 1993 | "touch_time", 1994 | "trackback", 1995 | "trackback_rdf", 1996 | "trackback_response", 1997 | "trackback_url", 1998 | "trackback_url_list", 1999 | "trailingslashit", 2000 | "translate", 2001 | "translate_level_to_role", 2002 | "translate_nooped_plural", 2003 | "translate_settings_using_i18n_schema", 2004 | "translate_smiley", 2005 | "translate_user_role", 2006 | "translate_with_context", 2007 | "translate_with_gettext_context", 2008 | "translations_api", 2009 | "traverse_and_serialize_block", 2010 | "traverse_and_serialize_blocks", 2011 | "type_url_form_audio", 2012 | "type_url_form_file", 2013 | "type_url_form_image", 2014 | "type_url_form_video", 2015 | "undismiss_core_update", 2016 | "unescape_invalid_shortcodes", 2017 | "uninstall_plugin", 2018 | "unload_textdomain", 2019 | "unregister_block_bindings_source", 2020 | "unregister_block_pattern", 2021 | "unregister_block_pattern_category", 2022 | "unregister_block_style", 2023 | "unregister_block_template", 2024 | "unregister_block_type", 2025 | "unregister_default_headers", 2026 | "unregister_meta_key", 2027 | "unregister_nav_menu", 2028 | "unregister_post_meta", 2029 | "unregister_post_type", 2030 | "unregister_setting", 2031 | "unregister_sidebar", 2032 | "unregister_sidebar_widget", 2033 | "unregister_taxonomy", 2034 | "unregister_taxonomy_for_object_type", 2035 | "unregister_term_meta", 2036 | "unregister_widget", 2037 | "unregister_widget_control", 2038 | "unstick_post", 2039 | "untrailingslashit", 2040 | "unzip_file", 2041 | "update_archived", 2042 | "update_attached_file", 2043 | "update_blog_details", 2044 | "update_blog_option", 2045 | "update_blog_public", 2046 | "update_blog_status", 2047 | "update_category_cache", 2048 | "update_comment_cache", 2049 | "update_comment_meta", 2050 | "update_core", 2051 | "update_gallery_tab", 2052 | "update_home_siteurl", 2053 | "update_ignored_hooked_blocks_postmeta", 2054 | "update_menu_item_cache", 2055 | "update_meta", 2056 | "update_metadata", 2057 | "update_metadata_by_mid", 2058 | "update_meta_cache", 2059 | "update_nag", 2060 | "update_network_cache", 2061 | "update_network_option", 2062 | "update_network_option_new_admin_email", 2063 | "update_object_term_cache", 2064 | "update_option", 2065 | "update_option_new_admin_email", 2066 | "update_page_cache", 2067 | "update_postmeta_cache", 2068 | "update_posts_count", 2069 | "update_post_author_caches", 2070 | "update_post_cache", 2071 | "update_post_caches", 2072 | "update_post_meta", 2073 | "update_post_parent_caches", 2074 | "update_post_thumbnail_cache", 2075 | "update_recently_edited", 2076 | "update_right_now_message", 2077 | "update_sitemeta_cache", 2078 | "update_site_cache", 2079 | "update_site_meta", 2080 | "update_site_option", 2081 | "update_termmeta_cache", 2082 | "update_term_cache", 2083 | "update_term_meta", 2084 | "update_usermeta", 2085 | "update_user_caches", 2086 | "update_user_meta", 2087 | "update_user_option", 2088 | "update_user_status", 2089 | "upgrade_100", 2090 | "upgrade_101", 2091 | "upgrade_110", 2092 | "upgrade_130", 2093 | "upgrade_160", 2094 | "upgrade_210", 2095 | "upgrade_230", 2096 | "upgrade_230_old_tables", 2097 | "upgrade_230_options_table", 2098 | "upgrade_250", 2099 | "upgrade_252", 2100 | "upgrade_260", 2101 | "upgrade_270", 2102 | "upgrade_280", 2103 | "upgrade_290", 2104 | "upgrade_300", 2105 | "upgrade_330", 2106 | "upgrade_340", 2107 | "upgrade_350", 2108 | "upgrade_370", 2109 | "upgrade_372", 2110 | "upgrade_380", 2111 | "upgrade_400", 2112 | "upgrade_420", 2113 | "upgrade_430", 2114 | "upgrade_430_fix_comments", 2115 | "upgrade_431", 2116 | "upgrade_440", 2117 | "upgrade_450", 2118 | "upgrade_460", 2119 | "upgrade_500", 2120 | "upgrade_510", 2121 | "upgrade_530", 2122 | "upgrade_550", 2123 | "upgrade_560", 2124 | "upgrade_590", 2125 | "upgrade_600", 2126 | "upgrade_630", 2127 | "upgrade_640", 2128 | "upgrade_650", 2129 | "upgrade_670", 2130 | "upgrade_all", 2131 | "upgrade_network", 2132 | "upgrade_old_slugs", 2133 | "upload_is_file_too_big", 2134 | "upload_is_user_over_quota", 2135 | "upload_size_limit_filter", 2136 | "upload_space_setting", 2137 | "urldecode_deep", 2138 | "urlencode_deep", 2139 | "url_is_accessable_via_ssl", 2140 | "url_shorten", 2141 | "url_to_postid", 2142 | "username_exists", 2143 | "users_can_register_signup_filter", 2144 | "user_admin_url", 2145 | "user_can", 2146 | "user_can_access_admin_page", 2147 | "user_can_create_draft", 2148 | "user_can_create_post", 2149 | "user_can_delete_post", 2150 | "user_can_delete_post_comments", 2151 | "user_can_edit_post", 2152 | "user_can_edit_post_comments", 2153 | "user_can_edit_post_date", 2154 | "user_can_edit_user", 2155 | "user_can_for_site", 2156 | "user_can_richedit", 2157 | "user_can_set_post_date", 2158 | "user_pass_ok", 2159 | "user_trailingslashit", 2160 | "use_block_editor_for_post", 2161 | "use_block_editor_for_post_type", 2162 | "use_codepress", 2163 | "use_ssl_preference", 2164 | "utf8_uri_encode", 2165 | "validate_active_plugins", 2166 | "validate_another_blog_signup", 2167 | "validate_blog_form", 2168 | "validate_blog_signup", 2169 | "validate_current_theme", 2170 | "validate_email", 2171 | "validate_file", 2172 | "validate_file_to_edit", 2173 | "validate_plugin", 2174 | "validate_plugin_requirements", 2175 | "validate_theme_requirements", 2176 | "validate_username", 2177 | "validate_user_form", 2178 | "validate_user_signup", 2179 | "valid_unicode", 2180 | "verify_file_md5", 2181 | "verify_file_signature", 2182 | "walk_category_dropdown_tree", 2183 | "walk_category_tree", 2184 | "walk_nav_menu_tree", 2185 | "walk_page_dropdown_tree", 2186 | "walk_page_tree", 2187 | "weblog_ping", 2188 | "welcome_user_msg_filter", 2189 | "win_is_writable", 2190 | "wlwmanifest_link", 2191 | "wp", 2192 | "wpautop", 2193 | "wpmu_activate_signup", 2194 | "wpmu_activate_stylesheet", 2195 | "wpmu_admin_do_redirect", 2196 | "wpmu_admin_redirect_add_updated_param", 2197 | "wpmu_checkAvailableSpace", 2198 | "wpmu_create_blog", 2199 | "wpmu_create_user", 2200 | "wpmu_current_site", 2201 | "wpmu_delete_blog", 2202 | "wpmu_delete_user", 2203 | "wpmu_get_blog_allowedthemes", 2204 | "wpmu_log_new_registrations", 2205 | "wpmu_menu", 2206 | "wpmu_new_site_admin_notification", 2207 | "wpmu_signup_blog", 2208 | "wpmu_signup_blog_notification", 2209 | "wpmu_signup_stylesheet", 2210 | "wpmu_signup_user", 2211 | "wpmu_signup_user_notification", 2212 | "wpmu_update_blogs_date", 2213 | "wpmu_validate_blog_signup", 2214 | "wpmu_validate_user_signup", 2215 | "wpmu_welcome_notification", 2216 | "wpmu_welcome_user_notification", 2217 | "wptexturize", 2218 | "wptexturize_primes", 2219 | "wpview_media_sandbox_styles", 2220 | "wp_add_dashboard_widget", 2221 | "wp_add_editor_classic_theme_styles", 2222 | "wp_add_footnotes_to_revision", 2223 | "wp_add_global_styles_for_blocks", 2224 | "wp_add_id3_tag_data", 2225 | "wp_add_iframed_editor_assets_html", 2226 | "wp_add_inline_script", 2227 | "wp_add_inline_style", 2228 | "wp_add_object_terms", 2229 | "wp_add_parent_layout_to_parsed_block", 2230 | "wp_add_post_tags", 2231 | "wp_add_privacy_policy_content", 2232 | "wp_add_trashed_suffix_to_post_name_for_post", 2233 | "wp_add_trashed_suffix_to_post_name_for_trashed_posts", 2234 | "wp_admin_bar_add_secondary_groups", 2235 | "wp_admin_bar_appearance_menu", 2236 | "wp_admin_bar_comments_menu", 2237 | "wp_admin_bar_customize_menu", 2238 | "wp_admin_bar_dashboard_view_site_menu", 2239 | "wp_admin_bar_edit_menu", 2240 | "wp_admin_bar_edit_site_menu", 2241 | "wp_admin_bar_header", 2242 | "wp_admin_bar_my_account_item", 2243 | "wp_admin_bar_my_account_menu", 2244 | "wp_admin_bar_my_sites_menu", 2245 | "wp_admin_bar_new_content_menu", 2246 | "wp_admin_bar_recovery_mode_menu", 2247 | "wp_admin_bar_render", 2248 | "wp_admin_bar_search_menu", 2249 | "wp_admin_bar_shortlink_menu", 2250 | "wp_admin_bar_sidebar_toggle", 2251 | "wp_admin_bar_site_menu", 2252 | "wp_admin_bar_updates_menu", 2253 | "wp_admin_bar_wp_menu", 2254 | "wp_admin_canonical_url", 2255 | "wp_admin_css", 2256 | "wp_admin_css_color", 2257 | "wp_admin_css_uri", 2258 | "wp_admin_headers", 2259 | "wp_admin_notice", 2260 | "wp_admin_viewport_meta", 2261 | "wp_after_insert_post", 2262 | "wp_ajax_activate_plugin", 2263 | "wp_ajax_add_link_category", 2264 | "wp_ajax_add_menu_item", 2265 | "wp_ajax_add_meta", 2266 | "wp_ajax_add_tag", 2267 | "wp_ajax_add_user", 2268 | "wp_ajax_ajax_tag_search", 2269 | "wp_ajax_autocomplete_user", 2270 | "wp_ajax_closed_postboxes", 2271 | "wp_ajax_crop_image", 2272 | "wp_ajax_dashboard_widgets", 2273 | "wp_ajax_date_format", 2274 | "wp_ajax_delete_comment", 2275 | "wp_ajax_delete_inactive_widgets", 2276 | "wp_ajax_delete_link", 2277 | "wp_ajax_delete_meta", 2278 | "wp_ajax_delete_page", 2279 | "wp_ajax_delete_plugin", 2280 | "wp_ajax_delete_post", 2281 | "wp_ajax_delete_tag", 2282 | "wp_ajax_delete_theme", 2283 | "wp_ajax_destroy_sessions", 2284 | "wp_ajax_dim_comment", 2285 | "wp_ajax_dismiss_wp_pointer", 2286 | "wp_ajax_edit_comment", 2287 | "wp_ajax_edit_theme_plugin_file", 2288 | "wp_ajax_fetch_list", 2289 | "wp_ajax_find_posts", 2290 | "wp_ajax_generate_password", 2291 | "wp_ajax_get_attachment", 2292 | "wp_ajax_get_comments", 2293 | "wp_ajax_get_community_events", 2294 | "wp_ajax_get_permalink", 2295 | "wp_ajax_get_post_thumbnail_html", 2296 | "wp_ajax_get_revision_diffs", 2297 | "wp_ajax_get_tagcloud", 2298 | "wp_ajax_health_check_background_updates", 2299 | "wp_ajax_health_check_dotorg_communication", 2300 | "wp_ajax_health_check_get_sizes", 2301 | "wp_ajax_health_check_loopback_requests", 2302 | "wp_ajax_health_check_site_status_result", 2303 | "wp_ajax_heartbeat", 2304 | "wp_ajax_hidden_columns", 2305 | "wp_ajax_image_editor", 2306 | "wp_ajax_imgedit_preview", 2307 | "wp_ajax_inline_save", 2308 | "wp_ajax_inline_save_tax", 2309 | "wp_ajax_install_plugin", 2310 | "wp_ajax_install_theme", 2311 | "wp_ajax_logged_in", 2312 | "wp_ajax_media_create_image_subsizes", 2313 | "wp_ajax_menu_get_metabox", 2314 | "wp_ajax_menu_locations_save", 2315 | "wp_ajax_menu_quick_search", 2316 | "wp_ajax_meta_box_order", 2317 | "wp_ajax_nopriv_generate_password", 2318 | "wp_ajax_nopriv_heartbeat", 2319 | "wp_ajax_oembed_cache", 2320 | "wp_ajax_parse_embed", 2321 | "wp_ajax_parse_media_shortcode", 2322 | "wp_ajax_press_this_add_category", 2323 | "wp_ajax_press_this_save_post", 2324 | "wp_ajax_query_attachments", 2325 | "wp_ajax_query_themes", 2326 | "wp_ajax_replyto_comment", 2327 | "wp_ajax_rest_nonce", 2328 | "wp_ajax_sample_permalink", 2329 | "wp_ajax_save_attachment", 2330 | "wp_ajax_save_attachment_compat", 2331 | "wp_ajax_save_attachment_order", 2332 | "wp_ajax_save_user_color_scheme", 2333 | "wp_ajax_save_widget", 2334 | "wp_ajax_save_wporg_username", 2335 | "wp_ajax_search_install_plugins", 2336 | "wp_ajax_search_plugins", 2337 | "wp_ajax_send_attachment_to_editor", 2338 | "wp_ajax_send_link_to_editor", 2339 | "wp_ajax_send_password_reset", 2340 | "wp_ajax_set_attachment_thumbnail", 2341 | "wp_ajax_set_post_thumbnail", 2342 | "wp_ajax_time_format", 2343 | "wp_ajax_toggle_auto_updates", 2344 | "wp_ajax_trash_post", 2345 | "wp_ajax_untrash_post", 2346 | "wp_ajax_update_plugin", 2347 | "wp_ajax_update_theme", 2348 | "wp_ajax_update_welcome_panel", 2349 | "wp_ajax_update_widget", 2350 | "wp_ajax_upload_attachment", 2351 | "wp_ajax_widgets_order", 2352 | "wp_ajax_wp_compression_test", 2353 | "wp_ajax_wp_fullscreen_save_post", 2354 | "wp_ajax_wp_link_ajax", 2355 | "wp_ajax_wp_privacy_erase_personal_data", 2356 | "wp_ajax_wp_privacy_export_personal_data", 2357 | "wp_ajax_wp_remove_post_lock", 2358 | "wp_allowed_protocols", 2359 | "wp_allow_comment", 2360 | "wp_apply_alignment_support", 2361 | "wp_apply_aria_label_support", 2362 | "wp_apply_border_support", 2363 | "wp_apply_colors_support", 2364 | "wp_apply_custom_classname_support", 2365 | "wp_apply_dimensions_support", 2366 | "wp_apply_generated_classname_support", 2367 | "wp_apply_shadow_support", 2368 | "wp_apply_spacing_support", 2369 | "wp_apply_typography_support", 2370 | "wp_array_slice_assoc", 2371 | "wp_assign_widget_to_sidebar", 2372 | "wp_attachment_is", 2373 | "wp_attachment_is_image", 2374 | "wp_attach_theme_preview_middleware", 2375 | "wp_audio_shortcode", 2376 | "wp_authenticate", 2377 | "wp_authenticate_application_password", 2378 | "wp_authenticate_cookie", 2379 | "wp_authenticate_email_password", 2380 | "wp_authenticate_spam_check", 2381 | "wp_authenticate_username_password", 2382 | "wp_auth_check", 2383 | "wp_auth_check_html", 2384 | "wp_auth_check_load", 2385 | "wp_autoload_values_to_autoload", 2386 | "wp_autosave", 2387 | "wp_autosave_post_revisioned_meta_fields", 2388 | "wp_basename", 2389 | "wp_blacklist_check", 2390 | "wp_block_theme_activate_nonce", 2391 | "wp_body_open", 2392 | "wp_cache_add", 2393 | "wp_cache_add_global_groups", 2394 | "wp_cache_add_multiple", 2395 | "wp_cache_add_non_persistent_groups", 2396 | "wp_cache_close", 2397 | "wp_cache_decr", 2398 | "wp_cache_delete", 2399 | "wp_cache_delete_multiple", 2400 | "wp_cache_flush", 2401 | "wp_cache_flush_group", 2402 | "wp_cache_flush_runtime", 2403 | "wp_cache_get", 2404 | "wp_cache_get_last_changed", 2405 | "wp_cache_get_multiple", 2406 | "wp_cache_incr", 2407 | "wp_cache_init", 2408 | "wp_cache_replace", 2409 | "wp_cache_reset", 2410 | "wp_cache_set", 2411 | "wp_cache_set_comments_last_changed", 2412 | "wp_cache_set_last_changed", 2413 | "wp_cache_set_multiple", 2414 | "wp_cache_set_posts_last_changed", 2415 | "wp_cache_set_sites_last_changed", 2416 | "wp_cache_set_terms_last_changed", 2417 | "wp_cache_set_users_last_changed", 2418 | "wp_cache_supports", 2419 | "wp_cache_switch_to_blog", 2420 | "wp_calculate_image_sizes", 2421 | "wp_calculate_image_srcset", 2422 | "wp_can_install_language_pack", 2423 | "wp_caption_input_textarea", 2424 | "wp_category_checklist", 2425 | "wp_checkdate", 2426 | "wp_check_browser_version", 2427 | "wp_check_comment_data", 2428 | "wp_check_comment_data_max_lengths", 2429 | "wp_check_comment_disallowed_list", 2430 | "wp_check_comment_flood", 2431 | "wp_check_filetype", 2432 | "wp_check_filetype_and_ext", 2433 | "wp_check_for_changed_dates", 2434 | "wp_check_for_changed_slugs", 2435 | "wp_check_invalid_utf8", 2436 | "wp_check_jsonp_callback", 2437 | "wp_check_locked_posts", 2438 | "wp_check_mysql_version", 2439 | "wp_check_password", 2440 | "wp_check_php_mysql_versions", 2441 | "wp_check_php_version", 2442 | "wp_check_post_hierarchy_for_loops", 2443 | "wp_check_post_lock", 2444 | "wp_check_revisioned_meta_fields_have_changed", 2445 | "wp_check_site_meta_support_prefilter", 2446 | "wp_check_term_hierarchy_for_loops", 2447 | "wp_check_term_meta_support_prefilter", 2448 | "wp_check_widget_editor_deps", 2449 | "wp_clean_plugins_cache", 2450 | "wp_clean_themes_cache", 2451 | "wp_clean_theme_json_cache", 2452 | "wp_clean_update_cache", 2453 | "wp_clearcookie", 2454 | "wp_clear_auth_cookie", 2455 | "wp_clear_scheduled_hook", 2456 | "wp_clone", 2457 | "wp_color_scheme_settings", 2458 | "wp_comments_personal_data_eraser", 2459 | "wp_comments_personal_data_exporter", 2460 | "wp_comment_form_unfiltered_html_nonce", 2461 | "wp_comment_reply", 2462 | "wp_comment_trashnotice", 2463 | "wp_common_block_scripts_and_styles", 2464 | "wp_constrain_dimensions", 2465 | "wp_convert_bytes_to_hr", 2466 | "wp_convert_hr_to_bytes", 2467 | "wp_convert_widget_settings", 2468 | "wp_cookie_constants", 2469 | "wp_copy_parent_attachment_properties", 2470 | "wp_count_attachments", 2471 | "wp_count_comments", 2472 | "wp_count_posts", 2473 | "wp_count_sites", 2474 | "wp_count_terms", 2475 | "wp_create_block_style_variation_instance_name", 2476 | "wp_create_categories", 2477 | "wp_create_category", 2478 | "wp_create_image_subsizes", 2479 | "wp_create_initial_post_meta", 2480 | "wp_create_nav_menu", 2481 | "wp_create_nonce", 2482 | "wp_create_post_autosave", 2483 | "wp_create_tag", 2484 | "wp_create_term", 2485 | "wp_create_thumbnail", 2486 | "wp_create_user", 2487 | "wp_create_user_request", 2488 | "wp_credits", 2489 | "wp_credits_section_list", 2490 | "wp_credits_section_title", 2491 | "wp_cron", 2492 | "wp_crop_image", 2493 | "wp_customize_support_script", 2494 | "wp_customize_url", 2495 | "wp_custom_css_cb", 2496 | "wp_dashboard", 2497 | "wp_dashboard_browser_nag", 2498 | "wp_dashboard_cached_rss_widget", 2499 | "wp_dashboard_empty", 2500 | "wp_dashboard_events_news", 2501 | "wp_dashboard_incoming_links", 2502 | "wp_dashboard_incoming_links_control", 2503 | "wp_dashboard_incoming_links_output", 2504 | "wp_dashboard_php_nag", 2505 | "wp_dashboard_plugins", 2506 | "wp_dashboard_plugins_output", 2507 | "wp_dashboard_primary", 2508 | "wp_dashboard_primary_control", 2509 | "wp_dashboard_primary_output", 2510 | "wp_dashboard_quick_press", 2511 | "wp_dashboard_quick_press_output", 2512 | "wp_dashboard_quota", 2513 | "wp_dashboard_recent_comments", 2514 | "wp_dashboard_recent_comments_control", 2515 | "wp_dashboard_recent_drafts", 2516 | "wp_dashboard_recent_posts", 2517 | "wp_dashboard_right_now", 2518 | "wp_dashboard_rss_control", 2519 | "wp_dashboard_rss_output", 2520 | "wp_dashboard_secondary", 2521 | "wp_dashboard_secondary_control", 2522 | "wp_dashboard_secondary_output", 2523 | "wp_dashboard_setup", 2524 | "wp_dashboard_site_activity", 2525 | "wp_dashboard_site_health", 2526 | "wp_dashboard_trigger_widget_control", 2527 | "wp_date", 2528 | "wp_debug_backtrace_summary", 2529 | "wp_debug_mode", 2530 | "wp_default_editor", 2531 | "wp_default_packages", 2532 | "wp_default_packages_inline_scripts", 2533 | "wp_default_packages_scripts", 2534 | "wp_default_packages_vendor", 2535 | "wp_default_scripts", 2536 | "wp_default_script_modules", 2537 | "wp_default_styles", 2538 | "wp_defer_comment_counting", 2539 | "wp_defer_term_counting", 2540 | "wp_delete_all_temp_backups", 2541 | "wp_delete_attachment", 2542 | "wp_delete_attachment_files", 2543 | "wp_delete_auto_drafts", 2544 | "wp_delete_category", 2545 | "wp_delete_comment", 2546 | "wp_delete_file", 2547 | "wp_delete_file_from_directory", 2548 | "wp_delete_link", 2549 | "wp_delete_nav_menu", 2550 | "wp_delete_object_term_relationships", 2551 | "wp_delete_post", 2552 | "wp_delete_post_revision", 2553 | "wp_delete_signup_on_user_delete", 2554 | "wp_delete_site", 2555 | "wp_delete_term", 2556 | "wp_delete_user", 2557 | "wp_dependencies_unique_hosts", 2558 | "wp_dequeue_script", 2559 | "wp_dequeue_script_module", 2560 | "wp_dequeue_style", 2561 | "wp_deregister_script", 2562 | "wp_deregister_script_module", 2563 | "wp_deregister_style", 2564 | "wp_destroy_all_sessions", 2565 | "wp_destroy_current_session", 2566 | "wp_destroy_other_sessions", 2567 | "wp_determine_option_autoload_value", 2568 | "wp_die", 2569 | "wp_direct_php_update_button", 2570 | "wp_doc_link_parse", 2571 | "wp_doing_ajax", 2572 | "wp_doing_cron", 2573 | "wp_download_language_pack", 2574 | "wp_dropdown_categories", 2575 | "wp_dropdown_cats", 2576 | "wp_dropdown_languages", 2577 | "wp_dropdown_pages", 2578 | "wp_dropdown_roles", 2579 | "wp_dropdown_users", 2580 | "wp_editor", 2581 | "wp_edit_attachments_query", 2582 | "wp_edit_attachments_query_vars", 2583 | "wp_edit_posts_query", 2584 | "wp_edit_theme_plugin_file", 2585 | "wp_embed_defaults", 2586 | "wp_embed_excerpt_attachment", 2587 | "wp_embed_excerpt_more", 2588 | "wp_embed_handler_audio", 2589 | "wp_embed_handler_googlevideo", 2590 | "wp_embed_handler_video", 2591 | "wp_embed_handler_youtube", 2592 | "wp_embed_register_handler", 2593 | "wp_embed_unregister_handler", 2594 | "wp_enable_block_templates", 2595 | "wp_encode_emoji", 2596 | "wp_enqueue_admin_bar_bump_styles", 2597 | "wp_enqueue_admin_bar_header_styles", 2598 | "wp_enqueue_block_style", 2599 | "wp_enqueue_block_style_variation_styles", 2600 | "wp_enqueue_block_support_styles", 2601 | "wp_enqueue_block_template_skip_link", 2602 | "wp_enqueue_classic_theme_styles", 2603 | "wp_enqueue_code_editor", 2604 | "wp_enqueue_editor", 2605 | "wp_enqueue_editor_block_directory_assets", 2606 | "wp_enqueue_editor_format_library_assets", 2607 | "wp_enqueue_embed_styles", 2608 | "wp_enqueue_emoji_styles", 2609 | "wp_enqueue_global_styles", 2610 | "wp_enqueue_global_styles_css_custom_properties", 2611 | "wp_enqueue_global_styles_custom_css", 2612 | "wp_enqueue_media", 2613 | "wp_enqueue_registered_block_scripts_and_styles", 2614 | "wp_enqueue_script", 2615 | "wp_enqueue_scripts", 2616 | "wp_enqueue_script_module", 2617 | "wp_enqueue_stored_styles", 2618 | "wp_enqueue_style", 2619 | "wp_ensure_editable_role", 2620 | "wp_exif_date2ts", 2621 | "wp_exif_frac2dec", 2622 | "wp_expand_dimensions", 2623 | "wp_explain_nonce", 2624 | "wp_ext2type", 2625 | "wp_extract_urls", 2626 | "wp_fast_hash", 2627 | "wp_favicon_request", 2628 | "wp_filesize", 2629 | "WP_Filesystem", 2630 | "wp_filter_comment", 2631 | "wp_filter_content_tags", 2632 | "wp_filter_default_autoload_value_via_option_size", 2633 | "wp_filter_global_styles_post", 2634 | "wp_filter_kses", 2635 | "wp_filter_nohtml_kses", 2636 | "wp_filter_object_list", 2637 | "wp_filter_oembed_iframe_title_attribute", 2638 | "wp_filter_oembed_result", 2639 | "wp_filter_out_block_nodes", 2640 | "wp_filter_post_kses", 2641 | "wp_filter_pre_oembed_result", 2642 | "wp_filter_wp_template_unique_post_slug", 2643 | "wp_finalize_scraping_edited_file_errors", 2644 | "wp_find_hierarchy_loop", 2645 | "wp_find_hierarchy_loop_tortoise_hare", 2646 | "wp_find_widgets_sidebar", 2647 | "wp_fix_server_vars", 2648 | "wp_font_dir", 2649 | "wp_footer", 2650 | "wp_force_plain_post_permalink", 2651 | "wp_functionality_constants", 2652 | "wp_fuzzy_number_match", 2653 | "wp_generate_attachment_metadata", 2654 | "wp_generate_auth_cookie", 2655 | "wp_generate_block_templates_export_file", 2656 | "wp_generate_password", 2657 | "wp_generate_tag_cloud", 2658 | "wp_generate_user_request_key", 2659 | "wp_generate_uuid4", 2660 | "wp_generator", 2661 | "wp_getimagesize", 2662 | "wp_get_active_and_valid_plugins", 2663 | "wp_get_active_and_valid_themes", 2664 | "wp_get_active_network_plugins", 2665 | "wp_get_additional_image_sizes", 2666 | "wp_get_admin_notice", 2667 | "wp_get_all_sessions", 2668 | "wp_get_archives", 2669 | "wp_get_associated_nav_menu_items", 2670 | "wp_get_attachment_caption", 2671 | "wp_get_attachment_id3_keys", 2672 | "wp_get_attachment_image", 2673 | "wp_get_attachment_image_sizes", 2674 | "wp_get_attachment_image_src", 2675 | "wp_get_attachment_image_srcset", 2676 | "wp_get_attachment_image_url", 2677 | "wp_get_attachment_link", 2678 | "wp_get_attachment_metadata", 2679 | "wp_get_attachment_thumb_file", 2680 | "wp_get_attachment_thumb_url", 2681 | "wp_get_attachment_url", 2682 | "wp_get_audio_extensions", 2683 | "wp_get_auto_update_message", 2684 | "wp_get_available_translations", 2685 | "wp_get_avif_info", 2686 | "wp_get_block_css_selector", 2687 | "wp_get_block_default_classname", 2688 | "wp_get_block_name_from_theme_json_path", 2689 | "wp_get_block_style_variation_name_from_class", 2690 | "wp_get_canonical_url", 2691 | "wp_get_code_editor_settings", 2692 | "wp_get_comment_fields_max_lengths", 2693 | "wp_get_comment_status", 2694 | "wp_get_computed_fluid_typography_value", 2695 | "wp_get_cookie_login", 2696 | "wp_get_current_commenter", 2697 | "wp_get_current_user", 2698 | "wp_get_custom_css", 2699 | "wp_get_custom_css_post", 2700 | "wp_get_db_schema", 2701 | "wp_get_default_extension_for_mime_type", 2702 | "wp_get_default_update_https_url", 2703 | "wp_get_default_update_php_url", 2704 | "wp_get_development_mode", 2705 | "wp_get_direct_php_update_url", 2706 | "wp_get_direct_update_https_url", 2707 | "wp_get_document_title", 2708 | "wp_get_duotone_filter_id", 2709 | "wp_get_duotone_filter_property", 2710 | "wp_get_duotone_filter_svg", 2711 | "wp_get_elements_class_name", 2712 | "wp_get_environment_type", 2713 | "wp_get_extension_error_description", 2714 | "wp_get_ext_types", 2715 | "wp_get_first_block", 2716 | "wp_get_font_dir", 2717 | "wp_get_footnotes_from_revision", 2718 | "wp_get_global_settings", 2719 | "wp_get_global_styles", 2720 | "wp_get_global_stylesheet", 2721 | "wp_get_global_styles_custom_css", 2722 | "wp_get_global_styles_svg_filters", 2723 | "wp_get_http", 2724 | "wp_get_https_detection_errors", 2725 | "wp_get_http_headers", 2726 | "wp_get_image_editor", 2727 | "wp_get_image_editor_output_format", 2728 | "wp_get_image_mime", 2729 | "wp_get_inline_script_tag", 2730 | "wp_get_installed_translations", 2731 | "wp_get_l10n_php_file_data", 2732 | "wp_get_latest_revision_id_and_total_count", 2733 | "wp_get_layout_definitions", 2734 | "wp_get_layout_style", 2735 | "wp_get_links", 2736 | "wp_get_linksbyname", 2737 | "wp_get_link_cats", 2738 | "wp_get_list_item_separator", 2739 | "wp_get_loading_attr_default", 2740 | "wp_get_loading_optimization_attributes", 2741 | "wp_get_media_creation_timestamp", 2742 | "wp_get_mime_types", 2743 | "wp_get_missing_image_subsizes", 2744 | "wp_get_mu_plugins", 2745 | "wp_get_nav_menus", 2746 | "wp_get_nav_menu_items", 2747 | "wp_get_nav_menu_name", 2748 | "wp_get_nav_menu_object", 2749 | "wp_get_nav_menu_to_edit", 2750 | "wp_get_network", 2751 | "wp_get_nocache_headers", 2752 | "wp_get_object_terms", 2753 | "wp_get_original_image_path", 2754 | "wp_get_original_image_url", 2755 | "wp_get_original_referer", 2756 | "wp_get_password_hint", 2757 | "wp_get_plugin_action_button", 2758 | "wp_get_plugin_error", 2759 | "wp_get_plugin_file_editable_extensions", 2760 | "wp_get_pomo_file_data", 2761 | "wp_get_popular_importers", 2762 | "wp_get_post_autosave", 2763 | "wp_get_post_categories", 2764 | "wp_get_post_cats", 2765 | "wp_get_post_content_block_attributes", 2766 | "wp_get_post_parent_id", 2767 | "wp_get_post_revision", 2768 | "wp_get_post_revisions", 2769 | "wp_get_post_revisions_url", 2770 | "wp_get_post_tags", 2771 | "wp_get_post_terms", 2772 | "wp_get_raw_referer", 2773 | "wp_get_ready_cron_jobs", 2774 | "wp_get_recent_posts", 2775 | "wp_get_referer", 2776 | "wp_get_registered_image_subsizes", 2777 | "wp_get_revision_ui_diff", 2778 | "wp_get_schedule", 2779 | "wp_get_scheduled_event", 2780 | "wp_get_schedules", 2781 | "wp_get_script_polyfill", 2782 | "wp_get_script_tag", 2783 | "wp_get_server_protocol", 2784 | "wp_get_session_token", 2785 | "wp_get_shortlink", 2786 | "wp_get_sidebar", 2787 | "wp_get_sidebars_widgets", 2788 | "wp_get_single_post", 2789 | "wp_get_sitemap_providers", 2790 | "wp_get_sites", 2791 | "wp_get_speculation_rules", 2792 | "wp_get_speculation_rules_configuration", 2793 | "wp_get_split_term", 2794 | "wp_get_split_terms", 2795 | "wp_get_term_taxonomy_parent_id", 2796 | "wp_get_theme", 2797 | "wp_get_themes", 2798 | "wp_get_theme_data_custom_templates", 2799 | "wp_get_theme_data_template_parts", 2800 | "wp_get_theme_directory_pattern_slugs", 2801 | "wp_get_theme_error", 2802 | "wp_get_theme_file_editable_extensions", 2803 | "wp_get_theme_preview_path", 2804 | "wp_get_translation_updates", 2805 | "wp_get_typography_font_size_value", 2806 | "wp_get_typography_value_and_unit", 2807 | "wp_get_unapproved_comment_author_email", 2808 | "wp_get_update_data", 2809 | "wp_get_update_https_url", 2810 | "wp_get_update_php_annotation", 2811 | "wp_get_update_php_url", 2812 | "wp_get_upload_dir", 2813 | "wp_get_users_with_no_role", 2814 | "wp_get_user_contact_methods", 2815 | "wp_get_user_request", 2816 | "wp_get_user_request_data", 2817 | "wp_get_video_extensions", 2818 | "wp_get_webp_info", 2819 | "wp_get_widget_defaults", 2820 | "wp_get_word_count_type", 2821 | "wp_get_wp_version", 2822 | "wp_global_styles_render_svg_filters", 2823 | "wp_guess_url", 2824 | "wp_handle_comment_submission", 2825 | "wp_handle_sideload", 2826 | "wp_handle_upload", 2827 | "wp_hash", 2828 | "wp_hash_password", 2829 | "wp_has_border_feature_support", 2830 | "wp_head", 2831 | "wp_heartbeat_settings", 2832 | "wp_heartbeat_set_suspension", 2833 | "wp_high_priority_element_flag", 2834 | "wp_htmledit_pre", 2835 | "wp_html_excerpt", 2836 | "wp_html_split", 2837 | "wp_http_supports", 2838 | "wp_http_validate_url", 2839 | "wp_iframe", 2840 | "wp_iframe_tag_add_loading_attr", 2841 | "wp_imagecreatetruecolor", 2842 | "wp_image_add_srcset_and_sizes", 2843 | "wp_image_editor", 2844 | "wp_image_editor_supports", 2845 | "wp_image_file_matches_image_meta", 2846 | "wp_image_matches_ratio", 2847 | "wp_image_src_get_dimensions", 2848 | "wp_img_tag_add_auto_sizes", 2849 | "wp_img_tag_add_decoding_attr", 2850 | "wp_img_tag_add_loading_attr", 2851 | "wp_img_tag_add_loading_optimization_attrs", 2852 | "wp_img_tag_add_srcset_and_sizes_attr", 2853 | "wp_img_tag_add_width_and_height_attr", 2854 | "wp_import_cleanup", 2855 | "wp_import_handle_upload", 2856 | "wp_import_upload_form", 2857 | "wp_increase_content_media_count", 2858 | "wp_initialize_site", 2859 | "wp_initialize_site_preview_hooks", 2860 | "wp_initialize_theme_preview_hooks", 2861 | "wp_initial_constants", 2862 | "wp_initial_nav_menu_meta_boxes", 2863 | "wp_init_targeted_link_rel_filters", 2864 | "wp_insert_attachment", 2865 | "wp_insert_category", 2866 | "wp_insert_comment", 2867 | "wp_insert_link", 2868 | "wp_insert_post", 2869 | "wp_insert_site", 2870 | "wp_insert_term", 2871 | "wp_insert_user", 2872 | "wp_install", 2873 | "wp_installing", 2874 | "wp_install_defaults", 2875 | "wp_install_language_form", 2876 | "wp_install_maybe_enable_pretty_permalinks", 2877 | "wp_interactivity", 2878 | "wp_interactivity_config", 2879 | "wp_interactivity_data_wp_context", 2880 | "wp_interactivity_get_context", 2881 | "wp_interactivity_get_element", 2882 | "wp_interactivity_process_directives", 2883 | "wp_interactivity_process_directives_of_interactive_blocks", 2884 | "wp_interactivity_state", 2885 | "wp_internal_hosts", 2886 | "wp_iso_descrambler", 2887 | "wp_is_application_passwords_available", 2888 | "wp_is_application_passwords_available_for_user", 2889 | "wp_is_application_passwords_supported", 2890 | "wp_is_authorize_application_password_request_valid", 2891 | "wp_is_authorize_application_redirect_url_valid", 2892 | "wp_is_auto_update_enabled_for_type", 2893 | "wp_is_auto_update_forced_for_item", 2894 | "wp_is_block_theme", 2895 | "wp_is_development_mode", 2896 | "wp_is_fatal_error_handler_enabled", 2897 | "wp_is_file_mod_allowed", 2898 | "wp_is_heic_image_mime_type", 2899 | "wp_is_home_url_using_https", 2900 | "wp_is_https_supported", 2901 | "wp_is_ini_value_changeable", 2902 | "wp_is_internal_link", 2903 | "wp_is_jsonp_request", 2904 | "wp_is_json_media_type", 2905 | "wp_is_json_request", 2906 | "wp_is_large_network", 2907 | "wp_is_large_user_count", 2908 | "wp_is_local_html_output", 2909 | "wp_is_maintenance_mode", 2910 | "wp_is_mobile", 2911 | "wp_is_numeric_array", 2912 | "wp_is_password_reset_allowed_for_user", 2913 | "wp_is_post_autosave", 2914 | "wp_is_post_revision", 2915 | "wp_is_recovery_mode", 2916 | "wp_is_rest_endpoint", 2917 | "wp_is_serving_rest_request", 2918 | "wp_is_site_initialized", 2919 | "wp_is_site_protected_by_basic_auth", 2920 | "wp_is_site_url_using_https", 2921 | "wp_is_stream", 2922 | "wp_is_theme_directory_ignored", 2923 | "wp_is_using_https", 2924 | "wp_is_uuid", 2925 | "wp_is_writable", 2926 | "wp_is_xml_request", 2927 | "wp_json_encode", 2928 | "wp_json_file_decode", 2929 | "wp_just_in_time_script_localization", 2930 | "wp_kses", 2931 | "wp_kses_allowed_html", 2932 | "wp_kses_array_lc", 2933 | "wp_kses_attr", 2934 | "wp_kses_attr_check", 2935 | "wp_kses_attr_parse", 2936 | "wp_kses_bad_protocol", 2937 | "wp_kses_bad_protocol_once", 2938 | "wp_kses_bad_protocol_once2", 2939 | "wp_kses_check_attr_val", 2940 | "wp_kses_data", 2941 | "wp_kses_decode_entities", 2942 | "wp_kses_hair", 2943 | "wp_kses_hair_parse", 2944 | "wp_kses_hook", 2945 | "wp_kses_html_error", 2946 | "wp_kses_js_entities", 2947 | "wp_kses_named_entities", 2948 | "wp_kses_normalize_entities", 2949 | "wp_kses_normalize_entities2", 2950 | "wp_kses_normalize_entities3", 2951 | "wp_kses_no_null", 2952 | "wp_kses_one_attr", 2953 | "wp_kses_post", 2954 | "wp_kses_post_deep", 2955 | "wp_kses_split", 2956 | "wp_kses_split2", 2957 | "wp_kses_stripslashes", 2958 | "wp_kses_uri_attributes", 2959 | "wp_kses_version", 2960 | "wp_kses_xml_named_entities", 2961 | "wp_latest_comments_draft_or_post_title", 2962 | "wp_lazyload_comment_meta", 2963 | "wp_lazyload_site_meta", 2964 | "wp_lazyload_term_meta", 2965 | "wp_lazy_loading_enabled", 2966 | "wp_link_category_checklist", 2967 | "wp_link_manager_disabled_message", 2968 | "wp_link_pages", 2969 | "wp_list_authors", 2970 | "wp_list_bookmarks", 2971 | "wp_list_categories", 2972 | "wp_list_cats", 2973 | "wp_list_comments", 2974 | "wp_list_filter", 2975 | "wp_list_pages", 2976 | "wp_list_pluck", 2977 | "wp_list_post_revisions", 2978 | "wp_list_sort", 2979 | "wp_list_users", 2980 | "wp_list_widgets", 2981 | "wp_list_widget_controls", 2982 | "wp_list_widget_controls_dynamic_sidebar", 2983 | "wp_load_alloptions", 2984 | "wp_load_core_site_options", 2985 | "wp_load_image", 2986 | "wp_load_press_this", 2987 | "wp_load_translations_early", 2988 | "wp_localize_community_events", 2989 | "wp_localize_jquery_ui_datepicker", 2990 | "wp_localize_script", 2991 | "wp_login", 2992 | "wp_loginout", 2993 | "wp_login_form", 2994 | "wp_login_url", 2995 | "wp_login_viewport_meta", 2996 | "wp_logout", 2997 | "wp_logout_url", 2998 | "wp_lostpassword_url", 2999 | "wp_magic_quotes", 3000 | "wp_mail", 3001 | "wp_maintenance", 3002 | "wp_make_content_images_responsive", 3003 | "wp_make_link_relative", 3004 | "wp_make_plugin_file_tree", 3005 | "wp_make_theme_file_tree", 3006 | "wp_map_nav_menu_locations", 3007 | "wp_map_sidebars_widgets", 3008 | "wp_match_mime_types", 3009 | "wp_max_upload_size", 3010 | "wp_maybe_add_fetchpriority_high_attr", 3011 | "wp_maybe_auto_update", 3012 | "wp_maybe_clean_new_site_cache_on_update", 3013 | "wp_maybe_decline_date", 3014 | "wp_maybe_enqueue_oembed_host_js", 3015 | "wp_maybe_generate_attachment_metadata", 3016 | "wp_maybe_grant_install_languages_cap", 3017 | "wp_maybe_grant_resume_extensions_caps", 3018 | "wp_maybe_grant_site_health_caps", 3019 | "wp_maybe_inline_styles", 3020 | "wp_maybe_load_embeds", 3021 | "wp_maybe_load_widgets", 3022 | "wp_maybe_transition_site_statuses_on_update", 3023 | "wp_maybe_update_network_site_counts", 3024 | "wp_maybe_update_network_site_counts_on_update", 3025 | "wp_maybe_update_network_user_counts", 3026 | "wp_maybe_update_user_counts", 3027 | "wp_mediaelement_fallback", 3028 | "wp_media_attach_action", 3029 | "wp_media_insert_url_form", 3030 | "wp_media_personal_data_exporter", 3031 | "wp_media_upload_handler", 3032 | "wp_meta", 3033 | "wp_metadata_lazyloader", 3034 | "wp_migrate_old_typography_shape", 3035 | "wp_mime_type_icon", 3036 | "wp_mkdir_p", 3037 | "wp_nav_menu", 3038 | "wp_nav_menu_disabled_check", 3039 | "wp_nav_menu_item_link_meta_box", 3040 | "wp_nav_menu_item_post_type_meta_box", 3041 | "wp_nav_menu_item_taxonomy_meta_box", 3042 | "wp_nav_menu_locations_meta_box", 3043 | "wp_nav_menu_manage_columns", 3044 | "wp_nav_menu_max_depth", 3045 | "wp_nav_menu_post_type_meta_boxes", 3046 | "wp_nav_menu_remove_menu_item_has_children_class", 3047 | "wp_nav_menu_setup", 3048 | "wp_nav_menu_taxonomy_meta_boxes", 3049 | "wp_nav_menu_update_menu_items", 3050 | "wp_network_admin_email_change_notification", 3051 | "wp_network_dashboard_right_now", 3052 | "wp_new_blog_notification", 3053 | "wp_new_comment", 3054 | "wp_new_comment_notify_moderator", 3055 | "wp_new_comment_notify_postauthor", 3056 | "wp_new_user_notification", 3057 | "wp_next_scheduled", 3058 | "wp_nonce_ays", 3059 | "wp_nonce_field", 3060 | "wp_nonce_tick", 3061 | "wp_nonce_url", 3062 | "wp_normalize_path", 3063 | "wp_normalize_remote_block_pattern", 3064 | "wp_normalize_site_data", 3065 | "wp_notify_moderator", 3066 | "wp_notify_postauthor", 3067 | "wp_not_installed", 3068 | "wp_no_robots", 3069 | "wp_ob_end_flush_all", 3070 | "wp_oembed_add_discovery_links", 3071 | "wp_oembed_add_host_js", 3072 | "wp_oembed_add_provider", 3073 | "wp_oembed_ensure_format", 3074 | "wp_oembed_get", 3075 | "wp_oembed_register_route", 3076 | "wp_oembed_remove_provider", 3077 | "wp_old_slug_redirect", 3078 | "wp_omit_loading_attr_threshold", 3079 | "wp_opcache_invalidate", 3080 | "wp_opcache_invalidate_directory", 3081 | "wp_original_referer_field", 3082 | "wp_page_menu", 3083 | "wp_page_reload_on_back_button_js", 3084 | "wp_parse_args", 3085 | "wp_parse_auth_cookie", 3086 | "wp_parse_id_list", 3087 | "wp_parse_list", 3088 | "wp_parse_slug_list", 3089 | "wp_parse_str", 3090 | "wp_parse_url", 3091 | "wp_parse_widget_id", 3092 | "wp_password_change_notification", 3093 | "wp_password_needs_rehash", 3094 | "wp_paused_plugins", 3095 | "wp_paused_themes", 3096 | "wp_playlist_scripts", 3097 | "wp_playlist_shortcode", 3098 | "wp_plugin_directory_constants", 3099 | "wp_plugin_update_row", 3100 | "wp_plugin_update_rows", 3101 | "wp_plupload_default_settings", 3102 | "wp_popular_terms_checklist", 3103 | "wp_populate_basic_auth_from_authorization_header", 3104 | "wp_post_mime_type_where", 3105 | "wp_post_preview_js", 3106 | "wp_post_revision_meta_keys", 3107 | "wp_post_revision_title", 3108 | "wp_post_revision_title_expanded", 3109 | "wp_preload_dialogs", 3110 | "wp_preload_resources", 3111 | "wp_prepare_attachment_for_js", 3112 | "wp_prepare_revisions_for_js", 3113 | "wp_prepare_site_data", 3114 | "wp_prepare_themes_for_js", 3115 | "wp_pre_kses_block_attributes", 3116 | "wp_pre_kses_less_than", 3117 | "wp_pre_kses_less_than_callback", 3118 | "wp_prime_network_option_caches", 3119 | "wp_prime_option_caches", 3120 | "wp_prime_option_caches_by_group", 3121 | "wp_prime_site_option_caches", 3122 | "wp_print_admin_notice_templates", 3123 | "wp_print_auto_sizes_contain_css_fix", 3124 | "wp_print_community_events_markup", 3125 | "wp_print_community_events_templates", 3126 | "wp_print_editor_js", 3127 | "wp_print_file_editor_templates", 3128 | "wp_print_font_faces", 3129 | "wp_print_font_faces_from_style_variations", 3130 | "wp_print_footer_scripts", 3131 | "wp_print_head_scripts", 3132 | "wp_print_inline_script_tag", 3133 | "wp_print_media_templates", 3134 | "wp_print_plugin_file_tree", 3135 | "wp_print_request_filesystem_credentials_modal", 3136 | "wp_print_revision_templates", 3137 | "wp_print_scripts", 3138 | "wp_print_script_tag", 3139 | "wp_print_speculation_rules", 3140 | "wp_print_styles", 3141 | "wp_print_theme_file_tree", 3142 | "wp_print_update_row_templates", 3143 | "wp_privacy_anonymize_data", 3144 | "wp_privacy_anonymize_ip", 3145 | "wp_privacy_delete_old_export_files", 3146 | "wp_privacy_exports_dir", 3147 | "wp_privacy_exports_url", 3148 | "wp_privacy_generate_personal_data_export_file", 3149 | "wp_privacy_generate_personal_data_export_group_html", 3150 | "wp_privacy_process_personal_data_erasure_page", 3151 | "wp_privacy_process_personal_data_export_page", 3152 | "wp_privacy_send_personal_data_export_email", 3153 | "wp_protect_special_option", 3154 | "wp_prototype_before_jquery", 3155 | "wp_publish_post", 3156 | "wp_queue_comments_for_comment_meta_lazyload", 3157 | "wp_queue_posts_for_term_meta_lazyload", 3158 | "wp_quicktags", 3159 | "wp_raise_memory_limit", 3160 | "wp_rand", 3161 | "wp_readonly", 3162 | "wp_read_audio_metadata", 3163 | "wp_read_image_metadata", 3164 | "wp_read_video_metadata", 3165 | "wp_recovery_mode", 3166 | "wp_recovery_mode_nag", 3167 | "wp_recursive_ksort", 3168 | "wp_redirect", 3169 | "wp_redirect_admin_locations", 3170 | "wp_referer_field", 3171 | "wp_refresh_heartbeat_nonces", 3172 | "wp_refresh_metabox_loader_nonces", 3173 | "wp_refresh_post_lock", 3174 | "wp_refresh_post_nonces", 3175 | "wp_register", 3176 | "wp_register_alignment_support", 3177 | "wp_register_aria_label_support", 3178 | "wp_register_background_support", 3179 | "wp_register_block_metadata_collection", 3180 | "wp_register_block_style_variations_from_theme_json_partials", 3181 | "wp_register_block_types_from_metadata_collection", 3182 | "wp_register_border_support", 3183 | "wp_register_colors_support", 3184 | "wp_register_comment_personal_data_eraser", 3185 | "wp_register_comment_personal_data_exporter", 3186 | "wp_register_core_block_metadata_collection", 3187 | "wp_register_custom_classname_support", 3188 | "wp_register_development_scripts", 3189 | "wp_register_dimensions_support", 3190 | "wp_register_duotone_support", 3191 | "wp_register_fatal_error_handler", 3192 | "wp_register_font_collection", 3193 | "wp_register_layout_support", 3194 | "wp_register_media_personal_data_exporter", 3195 | "wp_register_persisted_preferences_meta", 3196 | "wp_register_plugin_realpath", 3197 | "wp_register_position_support", 3198 | "wp_register_script", 3199 | "wp_register_script_module", 3200 | "wp_register_shadow_support", 3201 | "wp_register_sidebar_widget", 3202 | "wp_register_sitemap_provider", 3203 | "wp_register_spacing_support", 3204 | "wp_register_style", 3205 | "wp_register_tinymce_scripts", 3206 | "wp_register_typography_support", 3207 | "wp_register_user_personal_data_exporter", 3208 | "wp_register_widget_control", 3209 | "wp_registration_url", 3210 | "wp_rel_callback", 3211 | "wp_rel_nofollow", 3212 | "wp_rel_nofollow_callback", 3213 | "wp_rel_ugc", 3214 | "wp_remote_fopen", 3215 | "wp_remote_get", 3216 | "wp_remote_head", 3217 | "wp_remote_post", 3218 | "wp_remote_request", 3219 | "wp_remote_retrieve_body", 3220 | "wp_remote_retrieve_cookie", 3221 | "wp_remote_retrieve_cookies", 3222 | "wp_remote_retrieve_cookie_value", 3223 | "wp_remote_retrieve_header", 3224 | "wp_remote_retrieve_headers", 3225 | "wp_remote_retrieve_response_code", 3226 | "wp_remote_retrieve_response_message", 3227 | "wp_removable_query_args", 3228 | "wp_remove_object_terms", 3229 | "wp_remove_surrounding_empty_script_tags", 3230 | "wp_remove_targeted_link_rel_filters", 3231 | "wp_render_background_support", 3232 | "wp_render_block_style_variation_class_name", 3233 | "wp_render_block_style_variation_support_styles", 3234 | "wp_render_dimensions_support", 3235 | "wp_render_duotone_filter_preset", 3236 | "wp_render_duotone_support", 3237 | "wp_render_elements_class_name", 3238 | "wp_render_elements_support", 3239 | "wp_render_elements_support_styles", 3240 | "wp_render_empty_block_template_warning", 3241 | "wp_render_layout_support_flag", 3242 | "wp_render_position_support", 3243 | "wp_render_typography_support", 3244 | "wp_render_widget", 3245 | "wp_render_widget_control", 3246 | "wp_replace_insecure_home_url", 3247 | "wp_replace_in_html_tags", 3248 | "wp_required_field_indicator", 3249 | "wp_required_field_message", 3250 | "wp_reschedule_event", 3251 | "wp_reset_postdata", 3252 | "wp_reset_query", 3253 | "wp_reset_vars", 3254 | "wp_resolve_block_style_variation_ref_values", 3255 | "wp_resolve_numeric_slug_conflicts", 3256 | "wp_resolve_post_date", 3257 | "wp_resource_hints", 3258 | "wp_restore_group_inner_container", 3259 | "wp_restore_image", 3260 | "wp_restore_image_outer_container", 3261 | "wp_restore_post_revision", 3262 | "wp_restore_post_revision_meta", 3263 | "wp_revisions_enabled", 3264 | "wp_revisions_to_keep", 3265 | "wp_revoke_user", 3266 | "wp_richedit_pre", 3267 | "wp_robots", 3268 | "wp_robots_max_image_preview_large", 3269 | "wp_robots_noindex", 3270 | "wp_robots_noindex_embeds", 3271 | "wp_robots_noindex_search", 3272 | "wp_robots_no_robots", 3273 | "wp_robots_sensitive_page", 3274 | "wp_roles", 3275 | "wp_safe_redirect", 3276 | "wp_safe_remote_get", 3277 | "wp_safe_remote_head", 3278 | "wp_safe_remote_post", 3279 | "wp_safe_remote_request", 3280 | "wp_salt", 3281 | "wp_sanitize_redirect", 3282 | "wp_sanitize_script_attributes", 3283 | "wp_save_image", 3284 | "wp_save_image_file", 3285 | "wp_save_nav_menu_items", 3286 | "wp_save_post_revision", 3287 | "wp_save_post_revision_on_insert", 3288 | "wp_save_revisioned_meta_fields", 3289 | "wp_scheduled_delete", 3290 | "wp_schedule_delete_old_privacy_export_files", 3291 | "wp_schedule_event", 3292 | "wp_schedule_single_event", 3293 | "wp_schedule_update_checks", 3294 | "wp_schedule_update_network_counts", 3295 | "wp_schedule_update_user_counts", 3296 | "wp_scripts", 3297 | "wp_scripts_get_suffix", 3298 | "wp_script_add_data", 3299 | "wp_script_is", 3300 | "wp_script_modules", 3301 | "wp_send_json", 3302 | "wp_send_json_error", 3303 | "wp_send_json_success", 3304 | "wp_send_new_user_notifications", 3305 | "wp_send_user_request", 3306 | "wp_sensitive_page_meta", 3307 | "wp_setcookie", 3308 | "wp_setup_nav_menu_item", 3309 | "wp_setup_widgets_block_editor", 3310 | "wp_set_all_user_settings", 3311 | "wp_set_auth_cookie", 3312 | "wp_set_comment_cookies", 3313 | "wp_set_comment_status", 3314 | "wp_set_current_user", 3315 | "wp_set_internal_encoding", 3316 | "wp_set_lang_dir", 3317 | "wp_set_link_cats", 3318 | "wp_set_object_terms", 3319 | "wp_set_options_autoload", 3320 | "wp_set_option_autoload", 3321 | "wp_set_option_autoload_values", 3322 | "wp_set_password", 3323 | "wp_set_post_categories", 3324 | "wp_set_post_cats", 3325 | "wp_set_post_lock", 3326 | "wp_set_post_tags", 3327 | "wp_set_post_terms", 3328 | "wp_set_script_translations", 3329 | "wp_set_sidebars_widgets", 3330 | "wp_set_template_globals", 3331 | "wp_set_unique_slug_on_create_template_part", 3332 | "wp_set_wpdb_vars", 3333 | "wp_shake_js", 3334 | "wp_shortlink_header", 3335 | "wp_shortlink_wp_head", 3336 | "wp_should_add_elements_class_name", 3337 | "wp_should_load_block_assets_on_demand", 3338 | "wp_should_load_block_editor_scripts_and_styles", 3339 | "wp_should_load_separate_core_block_assets", 3340 | "wp_should_replace_insecure_home_url", 3341 | "wp_should_skip_block_supports_serialization", 3342 | "wp_should_upgrade_global_tables", 3343 | "wp_show_heic_upload_error", 3344 | "wp_shrink_dimensions", 3345 | "wp_sidebar_description", 3346 | "wp_signon", 3347 | "wp_simplepie_autoload", 3348 | "wp_sitemaps_get_max_urls", 3349 | "wp_sitemaps_get_server", 3350 | "wp_site_admin_email_change_notification", 3351 | "wp_site_icon", 3352 | "wp_sizes_attribute_includes_valid_auto", 3353 | "wp_skip_border_serialization", 3354 | "wp_skip_dimensions_serialization", 3355 | "wp_skip_paused_plugins", 3356 | "wp_skip_paused_themes", 3357 | "wp_skip_spacing_serialization", 3358 | "wp_slash", 3359 | "wp_slash_strings_only", 3360 | "wp_spaces_regexp", 3361 | "wp_spam_comment", 3362 | "wp_specialchars", 3363 | "wp_specialchars_decode", 3364 | "wp_sprintf", 3365 | "wp_sprintf_l", 3366 | "wp_ssl_constants", 3367 | "wp_start_object_cache", 3368 | "wp_start_scraping_edited_file_errors", 3369 | "wp_star_rating", 3370 | "wp_staticize_emoji", 3371 | "wp_staticize_emoji_for_email", 3372 | "wp_stream_image", 3373 | "wp_strict_cross_origin_referrer", 3374 | "wp_strip_all_tags", 3375 | "wp_styles", 3376 | "wp_style_add_data", 3377 | "wp_style_engine_get_styles", 3378 | "wp_style_engine_get_stylesheet_from_context", 3379 | "wp_style_engine_get_stylesheet_from_css_rules", 3380 | "wp_style_is", 3381 | "wp_style_loader_src", 3382 | "wp_suspend_cache_addition", 3383 | "wp_suspend_cache_invalidation", 3384 | "wp_switch_roles_and_user", 3385 | "wp_tag_cloud", 3386 | "wp_targeted_link_rel", 3387 | "wp_targeted_link_rel_callback", 3388 | "wp_templating_constants", 3389 | "wp_tempnam", 3390 | "wp_terms_checklist", 3391 | "wp_term_is_shared", 3392 | "wp_text_diff", 3393 | "wp_theme_auto_update_setting_template", 3394 | "wp_theme_get_element_class_name", 3395 | "wp_theme_has_theme_json", 3396 | "wp_theme_update_row", 3397 | "wp_theme_update_rows", 3398 | "wp_throttle_comment_flood", 3399 | "wp_timezone", 3400 | "wp_timezone_choice", 3401 | "wp_timezone_override_offset", 3402 | "wp_timezone_string", 3403 | "wp_timezone_supported", 3404 | "wp_tinycolor_bound01", 3405 | "wp_tinycolor_hsl_to_rgb", 3406 | "wp_tinycolor_hue_to_rgb", 3407 | "wp_tinycolor_rgb_to_rgb", 3408 | "wp_tinycolor_string_to_rgb", 3409 | "wp_tinymce_inline_scripts", 3410 | "wp_tiny_mce", 3411 | "wp_title", 3412 | "wp_title_rss", 3413 | "wp_transition_comment_status", 3414 | "wp_transition_post_status", 3415 | "wp_trash_comment", 3416 | "wp_trash_post", 3417 | "wp_trash_post_comments", 3418 | "wp_trigger_error", 3419 | "wp_trim_excerpt", 3420 | "wp_trim_words", 3421 | "wp_trusted_keys", 3422 | "wp_typography_get_css_variable_inline_style", 3423 | "wp_typography_get_preset_inline_style_value", 3424 | "wp_underscore_audio_template", 3425 | "wp_underscore_playlist_templates", 3426 | "wp_underscore_video_template", 3427 | "wp_uninitialize_site", 3428 | "wp_unique_filename", 3429 | "wp_unique_id", 3430 | "wp_unique_id_from_values", 3431 | "wp_unique_post_slug", 3432 | "wp_unique_prefixed_id", 3433 | "wp_unique_term_slug", 3434 | "wp_unregister_font_collection", 3435 | "wp_unregister_GLOBALS", 3436 | "wp_unregister_sidebar_widget", 3437 | "wp_unregister_widget_control", 3438 | "wp_unschedule_event", 3439 | "wp_unschedule_hook", 3440 | "wp_unslash", 3441 | "wp_unspam_comment", 3442 | "wp_untrash_comment", 3443 | "wp_untrash_post", 3444 | "wp_untrash_post_comments", 3445 | "wp_untrash_post_set_previous_status", 3446 | "wp_update_attachment_metadata", 3447 | "wp_update_blog_public_option_on_site_update", 3448 | "wp_update_category", 3449 | "wp_update_comment", 3450 | "wp_update_comment_count", 3451 | "wp_update_comment_count_now", 3452 | "wp_update_core", 3453 | "wp_update_custom_css_post", 3454 | "wp_update_https_detection_errors", 3455 | "wp_update_https_migration_required", 3456 | "wp_update_image_subsizes", 3457 | "wp_update_link", 3458 | "wp_update_nav_menu_item", 3459 | "wp_update_nav_menu_object", 3460 | "wp_update_network_counts", 3461 | "wp_update_network_site_counts", 3462 | "wp_update_network_user_counts", 3463 | "wp_update_php_annotation", 3464 | "wp_update_plugin", 3465 | "wp_update_plugins", 3466 | "wp_update_post", 3467 | "wp_update_site", 3468 | "wp_update_term", 3469 | "wp_update_term_count", 3470 | "wp_update_term_count_now", 3471 | "wp_update_theme", 3472 | "wp_update_themes", 3473 | "wp_update_urls_to_https", 3474 | "wp_update_user", 3475 | "wp_update_user_counts", 3476 | "wp_upgrade", 3477 | "wp_upload_bits", 3478 | "wp_upload_dir", 3479 | "wp_user_personal_data_exporter", 3480 | "wp_user_request_action_description", 3481 | "wp_user_settings", 3482 | "wp_use_widgets_block_editor", 3483 | "wp_using_ext_object_cache", 3484 | "wp_using_themes", 3485 | "wp_validate_application_password", 3486 | "wp_validate_auth_cookie", 3487 | "wp_validate_boolean", 3488 | "wp_validate_logged_in_cookie", 3489 | "wp_validate_redirect", 3490 | "wp_validate_site_data", 3491 | "wp_validate_user_request_key", 3492 | "wp_verify_fast_hash", 3493 | "wp_verify_nonce", 3494 | "wp_version_check", 3495 | "wp_video_shortcode", 3496 | "wp_welcome_panel", 3497 | "wp_widgets_access_body_class", 3498 | "wp_widgets_add_menu", 3499 | "wp_widgets_init", 3500 | "wp_widget_control", 3501 | "wp_widget_description", 3502 | "wp_widget_rss_form", 3503 | "wp_widget_rss_output", 3504 | "wp_widget_rss_process", 3505 | "wp_write_post", 3506 | "wp_zip_file_is_valid", 3507 | "write_post", 3508 | "xfn_check", 3509 | "xmlrpc_getpostcategory", 3510 | "xmlrpc_getposttitle", 3511 | "xmlrpc_pingback_error", 3512 | "xmlrpc_removepostdata", 3513 | "zeroise", 3514 | "_access_denied_splash", 3515 | "_add_block_template_info", 3516 | "_add_block_template_part_area_info", 3517 | "_add_default_theme_supports", 3518 | "_add_plugin_file_editor_to_tools", 3519 | "_add_post_type_submenus", 3520 | "_add_template_loader_filters", 3521 | "_add_themes_utility_last", 3522 | "_admin_bar_bump_cb", 3523 | "_admin_notice_post_locked", 3524 | "_admin_search_query", 3525 | "_ajax_wp_die_handler", 3526 | "_autop_newline_preservation_helper", 3527 | "_block_bindings_pattern_overrides_get_value", 3528 | "_block_bindings_post_meta_get_value", 3529 | "_block_template_render_title_tag", 3530 | "_block_template_render_without_post_block_context", 3531 | "_block_template_viewport_meta_tag", 3532 | "_build_block_template_object_from_post_object", 3533 | "_build_block_template_result_from_file", 3534 | "_build_block_template_result_from_post", 3535 | "_c", 3536 | "_canonical_charset", 3537 | "_cleanup_header_comment", 3538 | "_cleanup_image_add_caption", 3539 | "_clear_modified_cache_on_transition_comment_status", 3540 | "_close_comments_for_old_post", 3541 | "_close_comments_for_old_posts", 3542 | "_config_wp_home", 3543 | "_config_wp_siteurl", 3544 | "_copy_image_file", 3545 | "_count_posts_cache_key", 3546 | "_crop_image_resource", 3547 | "_customizer_mobile_viewport_meta", 3548 | "_custom_background_cb", 3549 | "_custom_header_background_just_in_time", 3550 | "_custom_logo_header_styles", 3551 | "_deep_replace", 3552 | "_default_wp_die_handler", 3553 | "_delete_attachment_theme_mod", 3554 | "_delete_custom_logo_on_remove_site_logo", 3555 | "_delete_option_fresh_site", 3556 | "_delete_site_logo_on_remove_custom_logo", 3557 | "_delete_site_logo_on_remove_custom_logo_on_setup_theme", 3558 | "_delete_site_logo_on_remove_theme_mods", 3559 | "_deprecated_argument", 3560 | "_deprecated_class", 3561 | "_deprecated_constructor", 3562 | "_deprecated_file", 3563 | "_deprecated_function", 3564 | "_deprecated_hook", 3565 | "_device_can_upload", 3566 | "_disable_block_editor_for_navigation_post_type", 3567 | "_disable_content_editor_for_navigation_post_type", 3568 | "_doing_it_wrong", 3569 | "_draft_or_post_title", 3570 | "_e", 3571 | "_enable_content_editor_for_navigation_post_type", 3572 | "_ex", 3573 | "_excerpt_render_inner_blocks", 3574 | "_excerpt_render_inner_columns_blocks", 3575 | "_filter_block_content_callback", 3576 | "_filter_block_template_part_area", 3577 | "_filter_do_shortcode_context", 3578 | "_filter_query_attachment_filenames", 3579 | "_find_post_by_old_date", 3580 | "_find_post_by_old_slug", 3581 | "_fix_attachment_links", 3582 | "_flatten_blocks", 3583 | "_flip_image_resource", 3584 | "_future_post_hook", 3585 | "_get_additional_user_keys", 3586 | "_get_admin_bar_pref", 3587 | "_get_block_templates_files", 3588 | "_get_block_templates_paths", 3589 | "_get_block_template_file", 3590 | "_get_comment_reply_id", 3591 | "_get_component_from_parsed_url_array", 3592 | "_get_cron_array", 3593 | "_get_cron_lock", 3594 | "_get_custom_object_labels", 3595 | "_get_dropins", 3596 | "_get_last_post_time", 3597 | "_get_list_table", 3598 | "_get_meta_table", 3599 | "_get_non_cached_ids", 3600 | "_get_page_link", 3601 | "_get_path_to_translation", 3602 | "_get_path_to_translation_from_lang_dir", 3603 | "_get_plugin_data_markup_translate", 3604 | "_get_plugin_from_callback", 3605 | "_get_post_ancestors", 3606 | "_get_random_header_data", 3607 | "_get_template_edit_filename", 3608 | "_get_term_children", 3609 | "_get_term_hierarchy", 3610 | "_get_widget_id_base", 3611 | "_get_wptexturize_shortcode_regex", 3612 | "_get_wptexturize_split_regex", 3613 | "_http_build_query", 3614 | "_image_get_preview_ratio", 3615 | "_inject_theme_attribute_in_block_template_content", 3616 | "_inject_theme_attribute_in_template_part_block", 3617 | "_insert_into_post_button", 3618 | "_is_valid_nav_menu_item", 3619 | "_jsonp_wp_die_handler", 3620 | "_json_wp_die_handler", 3621 | "_links_add_base", 3622 | "_links_add_target", 3623 | "_list_meta_row", 3624 | "_load_image_to_edit_path", 3625 | "_load_remote_block_patterns", 3626 | "_load_remote_featured_patterns", 3627 | "_load_textdomain_just_in_time", 3628 | "_local_storage_notice", 3629 | "_make_cat_compat", 3630 | "_make_clickable_rel_attr", 3631 | "_make_email_clickable_cb", 3632 | "_make_url_clickable_cb", 3633 | "_make_web_ftp_clickable_cb", 3634 | "_maybe_update_core", 3635 | "_maybe_update_plugins", 3636 | "_maybe_update_themes", 3637 | "_mce_set_direction", 3638 | "_media_button", 3639 | "_media_states", 3640 | "_n", 3641 | "_navigation_markup", 3642 | "_nav_menu_item_id_use_once", 3643 | "_nc", 3644 | "_nx", 3645 | "_nx_noop", 3646 | "_n_noop", 3647 | "_oembed_create_xml", 3648 | "_oembed_filter_feed_content", 3649 | "_oembed_rest_pre_serve_request", 3650 | "_override_custom_logo_theme_mod", 3651 | "_pad_term_counts", 3652 | "_page_traverse_name", 3653 | "_post_format_get_term", 3654 | "_post_format_get_terms", 3655 | "_post_format_link", 3656 | "_post_format_request", 3657 | "_post_format_wp_get_object_terms", 3658 | "_post_states", 3659 | "_post_type_meta_capabilities", 3660 | "_preload_old_requests_classes_and_interfaces", 3661 | "_preview_theme_stylesheet_filter", 3662 | "_preview_theme_template_filter", 3663 | "_prime_comment_caches", 3664 | "_prime_network_caches", 3665 | "_prime_post_caches", 3666 | "_prime_post_parent_id_caches", 3667 | "_prime_site_caches", 3668 | "_prime_term_caches", 3669 | "_print_emoji_detection_script", 3670 | "_print_scripts", 3671 | "_print_styles", 3672 | "_publish_post_hook", 3673 | "_redirect_to_about_wordpress", 3674 | "_register_block_bindings_pattern_overrides_source", 3675 | "_register_block_bindings_post_meta_source", 3676 | "_register_core_block_patterns_and_categories", 3677 | "_register_remote_theme_patterns", 3678 | "_register_theme_block_patterns", 3679 | "_register_widget_form_callback", 3680 | "_register_widget_update_callback", 3681 | "_relocate_children", 3682 | "_remove_qs_args_if_not_in_url", 3683 | "_remove_theme_attribute_from_template_part_block", 3684 | "_remove_theme_attribute_in_block_template_content", 3685 | "_remove_theme_support", 3686 | "_reset_front_page_settings_for_post", 3687 | "_resolve_home_block_template", 3688 | "_resolve_template_for_new_post", 3689 | "_restore_wpautop_hook", 3690 | "_rest_array_intersect_key_recursive", 3691 | "_rotate_image_resource", 3692 | "_sanitize_text_fields", 3693 | "_save_post_hook", 3694 | "_scalar_wp_die_handler", 3695 | "_search_terms_tidy", 3696 | "_set_cron_array", 3697 | "_set_preview", 3698 | "_show_post_preview", 3699 | "_sort_name_callback", 3700 | "_sort_nav_menu_items", 3701 | "_sort_uname_callback", 3702 | "_split_shared_term", 3703 | "_split_str_by_whitespace", 3704 | "_strip_template_file_suffix", 3705 | "_sync_custom_logo_to_site_logo", 3706 | "_thickbox_path_admin_subfolder", 3707 | "_transition_post_status", 3708 | "_truncate_post_slug", 3709 | "_unzip_file_pclzip", 3710 | "_unzip_file_ziparchive", 3711 | "_update_blog_date_on_post_delete", 3712 | "_update_blog_date_on_post_publish", 3713 | "_update_generic_term_count", 3714 | "_update_posts_count_on_delete", 3715 | "_update_posts_count_on_transition_post_status", 3716 | "_update_post_term_count", 3717 | "_update_term_count_on_transition_post_status", 3718 | "_upgrade_422_find_genericons_files_in_folder", 3719 | "_upgrade_422_remove_genericons", 3720 | "_upgrade_440_force_deactivate_incompatible_plugins", 3721 | "_upgrade_core_deactivate_incompatible_plugins", 3722 | "_upgrade_cron_array", 3723 | "_usort_by_first_member", 3724 | "_usort_terms_by_ID", 3725 | "_usort_terms_by_name", 3726 | "_validate_cache_id", 3727 | "_walk_bookmarks", 3728 | "_wptexturize_pushpop_element", 3729 | "_wp_add_additional_image_sizes", 3730 | "_wp_add_block_level_presets_class", 3731 | "_wp_add_block_level_preset_styles", 3732 | "_wp_add_global_attributes", 3733 | "_wp_admin_bar_init", 3734 | "_wp_admin_html_begin", 3735 | "_wp_after_delete_font_family", 3736 | "_wp_ajax_add_hierarchical_term", 3737 | "_wp_ajax_delete_comment_response", 3738 | "_wp_ajax_menu_quick_search", 3739 | "_wp_array_get", 3740 | "_wp_array_set", 3741 | "_wp_auto_add_pages_to_menu", 3742 | "_wp_batch_split_terms", 3743 | "_wp_batch_update_comment_type", 3744 | "_wp_before_delete_font_face", 3745 | "_wp_block_editor_posts_page_notice", 3746 | "_wp_block_theme_register_classic_sidebars", 3747 | "_wp_build_title_and_description_for_single_post_type_block_template", 3748 | "_wp_build_title_and_description_for_taxonomy_block_template", 3749 | "_wp_call_all_hook", 3750 | "_wp_check_alternate_file_names", 3751 | "_wp_check_existing_file_names", 3752 | "_wp_check_for_scheduled_split_terms", 3753 | "_wp_check_for_scheduled_update_comment_type", 3754 | "_wp_check_split_default_terms", 3755 | "_wp_check_split_nav_menu_terms", 3756 | "_wp_check_split_terms_in_menus", 3757 | "_wp_copy_post_meta", 3758 | "_wp_credits_add_profile_link", 3759 | "_wp_credits_build_object_link", 3760 | "_wp_cron", 3761 | "_wp_customize_changeset_filter_insert_post_data", 3762 | "_wp_customize_include", 3763 | "_wp_customize_loader_settings", 3764 | "_wp_customize_publish_changeset", 3765 | "_wp_dashboard_control_callback", 3766 | "_wp_dashboard_recent_comments_row", 3767 | "_wp_delete_all_temp_backups", 3768 | "_wp_delete_customize_changeset_dependent_auto_drafts", 3769 | "_wp_delete_orphaned_draft_menu_items", 3770 | "_wp_delete_post_menu_item", 3771 | "_wp_delete_tax_menu_item", 3772 | "_wp_die_process_input", 3773 | "_wp_emoji_list", 3774 | "_wp_expand_nav_menu_post_data", 3775 | "_wp_filter_build_unique_id", 3776 | "_wp_filter_font_directory", 3777 | "_wp_filter_post_meta_footnotes", 3778 | "_wp_filter_taxonomy_base", 3779 | "_wp_footer_scripts", 3780 | "_wp_footnotes_force_filtered_html_on_import_filter", 3781 | "_wp_footnotes_kses_init", 3782 | "_wp_footnotes_kses_init_filters", 3783 | "_wp_footnotes_remove_filters", 3784 | "_wp_get_allowed_postdata", 3785 | "_wp_get_attachment_relative_path", 3786 | "_wp_get_current_user", 3787 | "_wp_get_iframed_editor_assets", 3788 | "_wp_get_image_size_from_meta", 3789 | "_wp_get_post_revision_version", 3790 | "_wp_get_presets_class_name", 3791 | "_wp_get_site_editor_redirection_url", 3792 | "_wp_get_user_contactmethods", 3793 | "_wp_handle_upload", 3794 | "_wp_http_get_object", 3795 | "_wp_image_editor_choose", 3796 | "_wp_image_meta_replace_original", 3797 | "_wp_iso_convert", 3798 | "_wp_json_convert_string", 3799 | "_wp_json_prepare_data", 3800 | "_wp_json_sanity_check", 3801 | "_wp_keep_alive_customize_changeset_dependent_auto_drafts", 3802 | "_wp_kses_allow_pdf_objects", 3803 | "_wp_kses_decode_entities_chr", 3804 | "_wp_kses_decode_entities_chr_hexdec", 3805 | "_wp_kses_split_callback", 3806 | "_wp_link_page", 3807 | "_wp_make_subsizes", 3808 | "_wp_menus_changed", 3809 | "_wp_menu_item_classes_by_context", 3810 | "_wp_menu_output", 3811 | "_wp_multiple_block_styles", 3812 | "_wp_mysql_week", 3813 | "_wp_nav_menu_meta_box_object", 3814 | "_wp_normalize_relative_css_links", 3815 | "_wp_object_count_sort_cb", 3816 | "_wp_object_name_sort_cb", 3817 | "_wp_oembed_get_object", 3818 | "_wp_personal_data_cleanup_requests", 3819 | "_wp_personal_data_handle_actions", 3820 | "_wp_posts_page_notice", 3821 | "_wp_post_revision_data", 3822 | "_wp_post_revision_fields", 3823 | "_wp_post_thumbnail_class_filter", 3824 | "_wp_post_thumbnail_class_filter_add", 3825 | "_wp_post_thumbnail_class_filter_remove", 3826 | "_wp_post_thumbnail_context_filter", 3827 | "_wp_post_thumbnail_context_filter_add", 3828 | "_wp_post_thumbnail_context_filter_remove", 3829 | "_wp_post_thumbnail_html", 3830 | "_wp_preview_meta_filter", 3831 | "_wp_preview_post_thumbnail_filter", 3832 | "_wp_preview_terms_filter", 3833 | "_wp_privacy_account_request_confirmed", 3834 | "_wp_privacy_account_request_confirmed_message", 3835 | "_wp_privacy_action_request_types", 3836 | "_wp_privacy_completed_request", 3837 | "_wp_privacy_requests_screen_options", 3838 | "_wp_privacy_resend_request", 3839 | "_wp_privacy_send_erasure_fulfillment_notification", 3840 | "_wp_privacy_send_request_confirmation_notification", 3841 | "_wp_privacy_settings_filter_draft_page_titles", 3842 | "_wp_privacy_statuses", 3843 | "_wp_put_post_revision", 3844 | "_wp_register_default_font_collections", 3845 | "_wp_register_meta_args_allowed_list", 3846 | "_wp_register_meta_args_whitelist", 3847 | "_wp_relative_upload_path", 3848 | "_wp_remove_unregistered_widgets", 3849 | "_wp_render_title_tag", 3850 | "_wp_reset_invalid_menu_item_parent", 3851 | "_wp_sanitize_utf8_in_redirect", 3852 | "_wp_scripts_maybe_doing_it_wrong", 3853 | "_wp_sidebars_changed", 3854 | "_wp_specialchars", 3855 | "_wp_theme_json_webfonts_handler", 3856 | "_wp_timezone_choice_usort_callback", 3857 | "_wp_tinycolor_bound_alpha", 3858 | "_wp_to_kebab_case", 3859 | "_wp_translate_php_url_constant_to_key", 3860 | "_wp_translate_postdata", 3861 | "_wp_upgrade_revisions_of_post", 3862 | "_wp_upload_dir", 3863 | "_x", 3864 | "_xmlrpc_wp_die_handler", 3865 | "_xml_wp_die_handler", 3866 | "__", 3867 | "__checked_selected_helper", 3868 | "__clear_multi_author_cache", 3869 | "__get_option", 3870 | "__ngettext", 3871 | "__ngettext_noop", 3872 | "__return_empty_array", 3873 | "__return_empty_string", 3874 | "__return_false", 3875 | "__return_null", 3876 | "__return_true", 3877 | "__return_zero" 3878 | ] -------------------------------------------------------------------------------- /generated/exclude-wordpress-interfaces.json: -------------------------------------------------------------------------------- 1 | [ 2 | "SimplePie\\Cache\\Base", 3 | "SimplePie\\Cache\\DataCache", 4 | "SimplePie\\Cache\\NameFilter", 5 | "SimplePie\\RegistryAware", 6 | "SimplePie_Cache_Base", 7 | "WpOrg\\Requests\\Auth", 8 | "WpOrg\\Requests\\Capability", 9 | "WpOrg\\Requests\\HookManager", 10 | "WpOrg\\Requests\\Proxy", 11 | "WpOrg\\Requests\\Transport" 12 | ] -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | current_version=$(curl https://api.github.com/repos/snicco/php-scoper-wordpress-excludes/tags -s | jq -r .[].name | grep '^[0-9]\.[0-9]*\.[0-9]*$' | sort -nr | head -n1) 4 | echo "Current version: $current_version" 5 | 6 | tmp_version=$(curl https://api.github.com/repos/php-stubs/wordpress-stubs/tags -s | jq -r .[].name | grep '^v[0-9]\.[0-9]*\.[0-9]*$' | sort -nr | head -n1) 7 | lastest_version=$(echo "$tmp_version" | cut -c 2-) 8 | echo "Latest WordPress version: $lastest_version" 9 | 10 | if dpkg --compare-versions "$lastest_version" gt "$current_version"; 11 | then 12 | rm -rf generated/ 13 | mkdir generated 14 | composer require php-stubs/wordpress-stubs:"$lastest_version" --dev 15 | composer update php-stubs/wordpress-stubs 16 | composer install 17 | vendor/bin/generate-excludes --json --exclude-empty 18 | mv generated/exclude-wordpress-globals-constants.json generated/exclude-wordpress-constants.json 19 | git add -A 20 | git commit -a -m "Automatic release for WordPress: $lastest_version" 21 | git push 22 | git tag "$lastest_version" HEAD 23 | git push --tags 24 | echo "Tagged new version:" "$lastest_version" 25 | exit 0 26 | else 27 | echo "Everything is up-to-date!" 28 | exit 1 29 | fi 30 | --------------------------------------------------------------------------------