Project Type: WordPress Reference

WP_REST_Comments_Controller

Core controller used to access comments via the REST API. Class Synopsis class WP_REST_Comments_Controller extends WP_REST_Controller { protected $meta; public function __construct(); public function register_routes(); // Permission Checks public function...

WP_REST_Controller

Abstract base class for all REST API controllers. Provides the foundation for managing and interacting with REST API resources. Class Synopsis abstract class WP_REST_Controller { protected $namespace; protected $rest_base; protected...

WP_Recovery_Mode_Key_Service

Service class for generating, storing, and validating recovery mode keys. Source: wp-includes/class-wp-recovery-mode-key-service.php Since: 5.2.0 Properties Property Type Visibility Description $option_name string private Option name for key storage ('recovery_keys') Key Storage...

WP_Recovery_Mode_Link_Service

Service class for generating and handling recovery mode links. Source: wp-includes/class-wp-recovery-mode-link-service.php Since: 5.2.0 Constants Constant Value Description LOGIN_ACTION_ENTER 'enter_recovery_mode' Login action for entering recovery mode LOGIN_ACTION_ENTERED 'entered_recovery_mode' Login action after...

WP_Recovery_Mode

Core class implementing Recovery Mode functionality. Orchestrates cookie, key, link, and email services. Source: wp-includes/class-wp-recovery-mode.php Since: 5.2.0 Constants Constant Value Description EXIT_ACTION 'exit_recovery_mode' Login action for exiting recovery mode Properties...

WP_Paused_Extensions_Storage

Storage class for managing paused plugins and themes during recovery mode. Source: wp-includes/class-wp-paused-extensions-storage.php Since: 5.2.0 Properties Property Type Visibility Description $type string protected Extension type: 'plugin' or 'theme' Option Storage...

WP_Recovery_Mode_Cookie_Service

Service class for setting, validating, and clearing recovery mode cookies. Source: wp-includes/class-wp-recovery-mode-cookie-service.php Since: 5.2.0 Cookie Format The cookie is base64 encoded with four pipe-delimited parts: recovery_mode|created_at|random|signature Part Description recovery_mode Constant...

WP_Recovery_Mode_Email_Service

Service class for sending recovery mode notification emails with rate limiting. Source: wp-includes/class-wp-recovery-mode-email-service.php Since: 5.2.0 Constants Constant Value Description RATE_LIMIT_OPTION 'recovery_mode_email_last_sent' Option name for rate limiting Properties Property Type Visibility...

WP_Date_Query Class

Generates SQL clauses for filtering queries by date columns. Source: wp-includes/class-wp-date-query.php Since: 3.7.0 Overview WP_Date_Query is a helper class used by WP_Query, WP_Comment_Query, and WP_User_Query to filter results based on...

WP_Query Class

The main WordPress query class. Handles post retrieval, The Loop, and query state. Source: wp-includes/class-wp-query.php Since: 1.5.0 Basic Usage $query = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => 10,...

← Back to Chubes.net