Project Type: WordPress Reference

wp core

Downloads, installs, updates, and manages a WordPress installation. Subcommands Command Description wp core check-update Checks for WordPress updates via Version Check API. wp core download Downloads core WordPress files. wp...

wp cache

Adds, removes, fetches, and flushes the WP Object Cache object. By default, the WP Object Cache exists in PHP memory for the length of the request (and is emptied at...

wp cap

Adds, removes, and lists capabilities of a user role. See references for Roles and Capabilities and WP User class. Subcommands Command Description wp cap add Adds capabilities to a given...

wp_xmlrpc_server Class Reference

File: wp-includes/class-wp-xmlrpc-server.php Since: 1.5.0 WordPress XMLRPC server implementation providing compatibility for Blogger API, MetaWeblog API, MovableType, pingback, and WordPress-native methods. Class Declaration #[AllowDynamicProperties] class wp_xmlrpc_server extends IXR_Server Properties $methods public...

WordPress XML-RPC Hooks Reference

All hooks available in the WordPress XML-RPC server implementation. Filters xmlrpc_enabled Controls whether XML-RPC methods requiring authentication are enabled. add_filter( 'xmlrpc_enabled', function( bool $is_enabled ): bool { return false; //...

WordPress XML-RPC API Overview

WordPress provides XML-RPC functionality for remote publishing and content management. This API allows external applications to interact with WordPress for creating, editing, and managing content. Architecture Core Components Source File:...

Multisite Settings

WordPress Multisite (formerly WPMU) allows running multiple sites from a single WordPress installation. These constants configure and control the network. Enabling Multisite Step 1: Allow Multisite define( 'WP_ALLOW_MULTISITE', true );...

Path Settings

WordPress allows customization of directory locations and URLs through constants. These are useful for non-standard installations, security, or organizational preferences. Site URL Constants WP_SITEURL define( 'WP_SITEURL', 'https://example.com' ); Type: String...

Performance Settings

WordPress provides several constants to control memory usage, caching, cron behavior, and script handling for optimal performance. Memory Limits WP_MEMORY_LIMIT define( 'WP_MEMORY_LIMIT', '256M' ); Type: String Default: 40M (single site),...

Security Settings

WordPress security constants protect your site through authentication tokens, file access controls, and SSL/HTTPS enforcement. Security Keys and Salts Security keys are used to encrypt information stored in cookies. Each...

← Back to Chubes.net