����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.204: ~ $
class-wp-rest-request.php000064400000063631152222510010011446 0ustar00<?php
/**
 * REST API: WP_REST_Request class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.4.0
 */

/**
 * Core class used to implement a REST request object.
 *
 * Contains data from the request, to be passed to the callback.
 *
 * Note: This implements ArrayAccess, and acts as an array of parameters when
 * used in that manner. It does not use ArrayObject (as we cannot rely on SPL),
 * so be aware it may have non-array behavior in some cases.
 *
 * Note: When using features provided by ArrayAccess, be aware that WordPress deliberately
 * does not distinguish between arguments of the same name for different request methods.
 * For instance, in a request with `GET id=1` and `POST id=2`, `$request['id']` will equal
 * 2 (`POST`) not 1 (`GET`). For more precision between request methods, use
 * WP_REST_Request::get_body_params(), WP_REST_Request::get_url_params(), etc.
 *
 * @since 4.4.0
 *
 * @link https://www.php.net/manual/en/class.arrayaccess.php
 */
#[AllowDynamicProperties]
class WP_REST_Request implements ArrayAccess {

	/**
	 * HTTP method.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	protected $method = '';

	/**
	 * Parameters passed to the request.
	 *
	 * These typically come from the `$_GET`, `$_POST` and `$_FILES`
	 * superglobals when being created from the global scope.
	 *
	 * @since 4.4.0
	 * @var array Contains GET, POST and FILES keys mapping to arrays of data.
	 */
	protected $params;

	/**
	 * HTTP headers for the request.
	 *
	 * @since 4.4.0
	 * @var array Map of key to value. Key is always lowercase, as per HTTP specification.
	 */
	protected $headers = array();

	/**
	 * Body data.
	 *
	 * @since 4.4.0
	 * @var string Binary data from the request.
	 */
	protected $body = null;

	/**
	 * Route matched for the request.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	protected $route;

	/**
	 * Attributes (options) for the route that was matched.
	 *
	 * This is the options array used when the route was registered, typically
	 * containing the callback as well as the valid methods for the route.
	 *
	 * @since 4.4.0
	 * @var array Attributes for the request.
	 */
	protected $attributes = array();

	/**
	 * Used to determine if the JSON data has been parsed yet.
	 *
	 * Allows lazy-parsing of JSON data where possible.
	 *
	 * @since 4.4.0
	 * @var bool
	 */
	protected $parsed_json = false;

	/**
	 * Used to determine if the body data has been parsed yet.
	 *
	 * @since 4.4.0
	 * @var bool
	 */
	protected $parsed_body = false;

	/**
	 * Constructor.
	 *
	 * @since 4.4.0
	 *
	 * @param string $method     Optional. Request method. Default empty.
	 * @param string $route      Optional. Request route. Default empty.
	 * @param array  $attributes Optional. Request attributes. Default empty array.
	 */
	public function __construct( $method = '', $route = '', $attributes = array() ) {
		$this->params = array(
			'URL'      => array(),
			'GET'      => array(),
			'POST'     => array(),
			'FILES'    => array(),

			// See parse_json_params.
			'JSON'     => null,

			'defaults' => array(),
		);

		$this->set_method( $method );
		$this->set_route( $route );
		$this->set_attributes( $attributes );
	}

	/**
	 * Retrieves the HTTP method for the request.
	 *
	 * @since 4.4.0
	 *
	 * @return string HTTP method.
	 */
	public function get_method() {
		return $this->method;
	}

	/**
	 * Sets HTTP method for the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $method HTTP method.
	 */
	public function set_method( $method ) {
		$this->method = strtoupper( $method );
	}

	/**
	 * Retrieves all headers from the request.
	 *
	 * @since 4.4.0
	 *
	 * @return array Map of key to value. Key is always lowercase, as per HTTP specification.
	 */
	public function get_headers() {
		return $this->headers;
	}

	/**
	 * Determines if the request is the given method.
	 *
	 * @since 6.8.0
	 *
	 * @param string $method HTTP method.
	 * @return bool Whether the request is of the given method.
	 */
	public function is_method( $method ) {
		return $this->get_method() === strtoupper( $method );
	}

	/**
	 * Canonicalizes the header name.
	 *
	 * Ensures that header names are always treated the same regardless of
	 * source. Header names are always case-insensitive.
	 *
	 * Note that we treat `-` (dashes) and `_` (underscores) as the same
	 * character, as per header parsing rules in both Apache and nginx.
	 *
	 * @link https://stackoverflow.com/q/18185366
	 * @link https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/#missing-disappearing-http-headers
	 * @link https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Header name.
	 * @return string Canonicalized name.
	 */
	public static function canonicalize_header_name( $key ) {
		$key = strtolower( $key );
		$key = str_replace( '-', '_', $key );

		return $key;
	}

	/**
	 * Retrieves the given header from the request.
	 *
	 * If the header has multiple values, they will be concatenated with a comma
	 * as per the HTTP specification. Be aware that some non-compliant headers
	 * (notably cookie headers) cannot be joined this way.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Header name, will be canonicalized to lowercase.
	 * @return string|null String value if set, null otherwise.
	 */
	public function get_header( $key ) {
		$key = $this->canonicalize_header_name( $key );

		if ( ! isset( $this->headers[ $key ] ) ) {
			return null;
		}

		return implode( ',', $this->headers[ $key ] );
	}

	/**
	 * Retrieves header values from the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Header name, will be canonicalized to lowercase.
	 * @return array|null List of string values if set, null otherwise.
	 */
	public function get_header_as_array( $key ) {
		$key = $this->canonicalize_header_name( $key );

		if ( ! isset( $this->headers[ $key ] ) ) {
			return null;
		}

		return $this->headers[ $key ];
	}

	/**
	 * Sets the header on request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key   Header name.
	 * @param string $value Header value, or list of values.
	 */
	public function set_header( $key, $value ) {
		$key   = $this->canonicalize_header_name( $key );
		$value = (array) $value;

		$this->headers[ $key ] = $value;
	}

	/**
	 * Appends a header value for the given header.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key   Header name.
	 * @param string $value Header value, or list of values.
	 */
	public function add_header( $key, $value ) {
		$key   = $this->canonicalize_header_name( $key );
		$value = (array) $value;

		if ( ! isset( $this->headers[ $key ] ) ) {
			$this->headers[ $key ] = array();
		}

		$this->headers[ $key ] = array_merge( $this->headers[ $key ], $value );
	}

	/**
	 * Removes all values for a header.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Header name.
	 */
	public function remove_header( $key ) {
		$key = $this->canonicalize_header_name( $key );
		unset( $this->headers[ $key ] );
	}

	/**
	 * Sets headers on the request.
	 *
	 * @since 4.4.0
	 *
	 * @param array $headers  Map of header name to value.
	 * @param bool  $override If true, replace the request's headers. Otherwise, merge with existing.
	 */
	public function set_headers( $headers, $override = true ) {
		if ( true === $override ) {
			$this->headers = array();
		}

		foreach ( $headers as $key => $value ) {
			$this->set_header( $key, $value );
		}
	}

	/**
	 * Retrieves the Content-Type of the request.
	 *
	 * @since 4.4.0
	 *
	 * @return array|null Map containing 'value' and 'parameters' keys
	 *                    or null when no valid Content-Type header was
	 *                    available.
	 */
	public function get_content_type() {
		$value = $this->get_header( 'Content-Type' );
		if ( empty( $value ) ) {
			return null;
		}

		$parameters = '';
		if ( strpos( $value, ';' ) ) {
			list( $value, $parameters ) = explode( ';', $value, 2 );
		}

		$value = strtolower( $value );
		if ( ! str_contains( $value, '/' ) ) {
			return null;
		}

		// Parse type and subtype out.
		list( $type, $subtype ) = explode( '/', $value, 2 );

		$data = compact( 'value', 'type', 'subtype', 'parameters' );
		$data = array_map( 'trim', $data );

		return $data;
	}

	/**
	 * Checks if the request has specified a JSON Content-Type.
	 *
	 * @since 5.6.0
	 *
	 * @return bool True if the Content-Type header is JSON.
	 */
	public function is_json_content_type() {
		$content_type = $this->get_content_type();

		return isset( $content_type['value'] ) && wp_is_json_media_type( $content_type['value'] );
	}

	/**
	 * Retrieves the parameter priority order.
	 *
	 * Used when checking parameters in WP_REST_Request::get_param().
	 *
	 * @since 4.4.0
	 *
	 * @return string[] Array of types to check, in order of priority.
	 */
	protected function get_parameter_order() {
		$order = array();

		if ( $this->is_json_content_type() ) {
			$order[] = 'JSON';
		}

		$this->parse_json_params();

		// Ensure we parse the body data.
		$body = $this->get_body();

		if ( 'POST' !== $this->method && ! empty( $body ) ) {
			$this->parse_body_params();
		}

		$accepts_body_data = array( 'POST', 'PUT', 'PATCH', 'DELETE' );
		if ( in_array( $this->method, $accepts_body_data, true ) ) {
			$order[] = 'POST';
		}

		$order[] = 'GET';
		$order[] = 'URL';
		$order[] = 'defaults';

		/**
		 * Filters the parameter priority order for a REST API request.
		 *
		 * The order affects which parameters are checked when using WP_REST_Request::get_param()
		 * and family. This acts similarly to PHP's `request_order` setting.
		 *
		 * @since 4.4.0
		 *
		 * @param string[]        $order   Array of types to check, in order of priority.
		 * @param WP_REST_Request $request The request object.
		 */
		return apply_filters( 'rest_request_parameter_order', $order, $this );
	}

	/**
	 * Retrieves a parameter from the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Parameter name.
	 * @return mixed|null Value if set, null otherwise.
	 */
	public function get_param( $key ) {
		$order = $this->get_parameter_order();

		foreach ( $order as $type ) {
			// Determine if we have the parameter for this type.
			if ( isset( $this->params[ $type ][ $key ] ) ) {
				return $this->params[ $type ][ $key ];
			}
		}

		return null;
	}

	/**
	 * Checks if a parameter exists in the request.
	 *
	 * This allows distinguishing between an omitted parameter,
	 * and a parameter specifically set to null.
	 *
	 * @since 5.3.0
	 *
	 * @param string $key Parameter name.
	 * @return bool True if a param exists for the given key.
	 */
	public function has_param( $key ) {
		$order = $this->get_parameter_order();

		foreach ( $order as $type ) {
			if ( is_array( $this->params[ $type ] ) && array_key_exists( $key, $this->params[ $type ] ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Sets a parameter on the request.
	 *
	 * If the given parameter key exists in any parameter type an update will take place,
	 * otherwise a new param will be created in the first parameter type (respecting
	 * get_parameter_order()).
	 *
	 * @since 4.4.0
	 *
	 * @param string $key   Parameter name.
	 * @param mixed  $value Parameter value.
	 */
	public function set_param( $key, $value ) {
		$order     = $this->get_parameter_order();
		$found_key = false;

		foreach ( $order as $type ) {
			if ( 'defaults' !== $type && is_array( $this->params[ $type ] ) && array_key_exists( $key, $this->params[ $type ] ) ) {
				$this->params[ $type ][ $key ] = $value;
				$found_key                     = true;
			}
		}

		if ( ! $found_key ) {
			$this->params[ $order[0] ][ $key ] = $value;
		}
	}

	/**
	 * Retrieves merged parameters from the request.
	 *
	 * The equivalent of get_param(), but returns all parameters for the request.
	 * Handles merging all the available values into a single array.
	 *
	 * @since 4.4.0
	 *
	 * @return array Map of key to value.
	 */
	public function get_params() {
		$order = $this->get_parameter_order();
		$order = array_reverse( $order, true );

		$params = array();
		foreach ( $order as $type ) {
			/*
			 * array_merge() / the "+" operator will mess up
			 * numeric keys, so instead do a manual foreach.
			 */
			foreach ( (array) $this->params[ $type ] as $key => $value ) {
				$params[ $key ] = $value;
			}
		}

		// Exclude rest_route if pretty permalinks are not enabled.
		if ( ! get_option( 'permalink_structure' ) ) {
			unset( $params['rest_route'] );
		}

		return $params;
	}

	/**
	 * Retrieves parameters from the route itself.
	 *
	 * These are parsed from the URL using the regex.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_url_params() {
		return $this->params['URL'];
	}

	/**
	 * Sets parameters from the route.
	 *
	 * Typically, this is set after parsing the URL.
	 *
	 * @since 4.4.0
	 *
	 * @param array $params Parameter map of key to value.
	 */
	public function set_url_params( $params ) {
		$this->params['URL'] = $params;
	}

	/**
	 * Retrieves parameters from the query string.
	 *
	 * These are the parameters you'd typically find in `$_GET`.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_query_params() {
		return $this->params['GET'];
	}

	/**
	 * Sets parameters from the query string.
	 *
	 * Typically, this is set from `$_GET`.
	 *
	 * @since 4.4.0
	 *
	 * @param array $params Parameter map of key to value.
	 */
	public function set_query_params( $params ) {
		$this->params['GET'] = $params;
	}

	/**
	 * Retrieves parameters from the body.
	 *
	 * These are the parameters you'd typically find in `$_POST`.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_body_params() {
		return $this->params['POST'];
	}

	/**
	 * Sets parameters from the body.
	 *
	 * Typically, this is set from `$_POST`.
	 *
	 * @since 4.4.0
	 *
	 * @param array $params Parameter map of key to value.
	 */
	public function set_body_params( $params ) {
		$this->params['POST'] = $params;
	}

	/**
	 * Retrieves multipart file parameters from the body.
	 *
	 * These are the parameters you'd typically find in `$_FILES`.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_file_params() {
		return $this->params['FILES'];
	}

	/**
	 * Sets multipart file parameters from the body.
	 *
	 * Typically, this is set from `$_FILES`.
	 *
	 * @since 4.4.0
	 *
	 * @param array $params Parameter map of key to value.
	 */
	public function set_file_params( $params ) {
		$this->params['FILES'] = $params;
	}

	/**
	 * Retrieves the default parameters.
	 *
	 * These are the parameters set in the route registration.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_default_params() {
		return $this->params['defaults'];
	}

	/**
	 * Sets default parameters.
	 *
	 * These are the parameters set in the route registration.
	 *
	 * @since 4.4.0
	 *
	 * @param array $params Parameter map of key to value.
	 */
	public function set_default_params( $params ) {
		$this->params['defaults'] = $params;
	}

	/**
	 * Retrieves the request body content.
	 *
	 * @since 4.4.0
	 *
	 * @return string Binary data from the request body.
	 */
	public function get_body() {
		return $this->body;
	}

	/**
	 * Sets body content.
	 *
	 * @since 4.4.0
	 *
	 * @param string $data Binary data from the request body.
	 */
	public function set_body( $data ) {
		$this->body = $data;

		// Enable lazy parsing.
		$this->parsed_json    = false;
		$this->parsed_body    = false;
		$this->params['JSON'] = null;
	}

	/**
	 * Retrieves the parameters from a JSON-formatted body.
	 *
	 * @since 4.4.0
	 *
	 * @return array Parameter map of key to value.
	 */
	public function get_json_params() {
		// Ensure the parameters have been parsed out.
		$this->parse_json_params();

		return $this->params['JSON'];
	}

	/**
	 * Parses the JSON parameters.
	 *
	 * Avoids parsing the JSON data until we need to access it.
	 *
	 * @since 4.4.0
	 * @since 4.7.0 Returns error instance if value cannot be decoded.
	 * @return true|WP_Error True if the JSON data was passed or no JSON data was provided, WP_Error if invalid JSON was passed.
	 */
	protected function parse_json_params() {
		if ( $this->parsed_json ) {
			return true;
		}

		$this->parsed_json = true;

		// Check that we actually got JSON.
		if ( ! $this->is_json_content_type() ) {
			return true;
		}

		$body = $this->get_body();
		if ( empty( $body ) ) {
			return true;
		}

		$params = json_decode( $body, true );

		/*
		 * Check for a parsing error.
		 */
		if ( null === $params && JSON_ERROR_NONE !== json_last_error() ) {
			// Ensure subsequent calls receive error instance.
			$this->parsed_json = false;

			$error_data = array(
				'status'             => WP_Http::BAD_REQUEST,
				'json_error_code'    => json_last_error(),
				'json_error_message' => json_last_error_msg(),
			);

			return new WP_Error( 'rest_invalid_json', __( 'Invalid JSON body passed.' ), $error_data );
		}

		$this->params['JSON'] = $params;

		return true;
	}

	/**
	 * Parses the request body parameters.
	 *
	 * Parses out URL-encoded bodies for request methods that aren't supported
	 * natively by PHP.
	 *
	 * @since 4.4.0
	 */
	protected function parse_body_params() {
		if ( $this->parsed_body ) {
			return;
		}

		$this->parsed_body = true;

		/*
		 * Check that we got URL-encoded. Treat a missing Content-Type as
		 * URL-encoded for maximum compatibility.
		 */
		$content_type = $this->get_content_type();

		if ( ! empty( $content_type ) && 'application/x-www-form-urlencoded' !== $content_type['value'] ) {
			return;
		}

		parse_str( $this->get_body(), $params );

		/*
		 * Add to the POST parameters stored internally. If a user has already
		 * set these manually (via `set_body_params`), don't override them.
		 */
		$this->params['POST'] = array_merge( $params, $this->params['POST'] );
	}

	/**
	 * Retrieves the route that matched the request.
	 *
	 * @since 4.4.0
	 *
	 * @return string Route matching regex.
	 */
	public function get_route() {
		return $this->route;
	}

	/**
	 * Sets the route that matched the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $route Route matching regex.
	 */
	public function set_route( $route ) {
		$this->route = $route;
	}

	/**
	 * Retrieves the attributes for the request.
	 *
	 * These are the options for the route that was matched.
	 *
	 * @since 4.4.0
	 *
	 * @return array Attributes for the request.
	 */
	public function get_attributes() {
		return $this->attributes;
	}

	/**
	 * Sets the attributes for the request.
	 *
	 * @since 4.4.0
	 *
	 * @param array $attributes Attributes for the request.
	 */
	public function set_attributes( $attributes ) {
		$this->attributes = $attributes;
	}

	/**
	 * Sanitizes (where possible) the params on the request.
	 *
	 * This is primarily based off the sanitize_callback param on each registered
	 * argument.
	 *
	 * @since 4.4.0
	 *
	 * @return true|WP_Error True if parameters were sanitized, WP_Error if an error occurred during sanitization.
	 */
	public function sanitize_params() {
		$attributes = $this->get_attributes();

		// No arguments set, skip sanitizing.
		if ( empty( $attributes['args'] ) ) {
			return true;
		}

		$order = $this->get_parameter_order();

		$invalid_params  = array();
		$invalid_details = array();

		foreach ( $order as $type ) {
			if ( empty( $this->params[ $type ] ) ) {
				continue;
			}

			foreach ( $this->params[ $type ] as $key => $value ) {
				if ( ! isset( $attributes['args'][ $key ] ) ) {
					continue;
				}

				$param_args = $attributes['args'][ $key ];

				// If the arg has a type but no sanitize_callback attribute, default to rest_parse_request_arg.
				if ( ! array_key_exists( 'sanitize_callback', $param_args ) && ! empty( $param_args['type'] ) ) {
					$param_args['sanitize_callback'] = 'rest_parse_request_arg';
				}
				// If there's still no sanitize_callback, nothing to do here.
				if ( empty( $param_args['sanitize_callback'] ) ) {
					continue;
				}

				/** @var mixed|WP_Error $sanitized_value */
				$sanitized_value = call_user_func( $param_args['sanitize_callback'], $value, $this, $key );

				if ( is_wp_error( $sanitized_value ) ) {
					$invalid_params[ $key ]  = implode( ' ', $sanitized_value->get_error_messages() );
					$invalid_details[ $key ] = rest_convert_error_to_response( $sanitized_value )->get_data();
				} else {
					$this->params[ $type ][ $key ] = $sanitized_value;
				}
			}
		}

		if ( $invalid_params ) {
			return new WP_Error(
				'rest_invalid_param',
				/* translators: %s: List of invalid parameters. */
				sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ),
				array(
					'status'  => 400,
					'params'  => $invalid_params,
					'details' => $invalid_details,
				)
			);
		}

		return true;
	}

	/**
	 * Checks whether this request is valid according to its attributes.
	 *
	 * @since 4.4.0
	 *
	 * @return true|WP_Error True if there are no parameters to validate or if all pass validation,
	 *                       WP_Error if required parameters are missing.
	 */
	public function has_valid_params() {
		// If JSON data was passed, check for errors.
		$json_error = $this->parse_json_params();
		if ( is_wp_error( $json_error ) ) {
			return $json_error;
		}

		$attributes = $this->get_attributes();
		$required   = array();

		$args = empty( $attributes['args'] ) ? array() : $attributes['args'];

		foreach ( $args as $key => $arg ) {
			$param = $this->get_param( $key );
			if ( isset( $arg['required'] ) && true === $arg['required'] && null === $param ) {
				$required[] = $key;
			}
		}

		if ( ! empty( $required ) ) {
			return new WP_Error(
				'rest_missing_callback_param',
				/* translators: %s: List of required parameters. */
				sprintf( __( 'Missing parameter(s): %s' ), implode( ', ', $required ) ),
				array(
					'status' => 400,
					'params' => $required,
				)
			);
		}

		/*
		 * Check the validation callbacks for each registered arg.
		 *
		 * This is done after required checking as required checking is cheaper.
		 */
		$invalid_params  = array();
		$invalid_details = array();

		foreach ( $args as $key => $arg ) {

			$param = $this->get_param( $key );

			if ( null !== $param && ! empty( $arg['validate_callback'] ) ) {
				/** @var bool|\WP_Error $valid_check */
				$valid_check = call_user_func( $arg['validate_callback'], $param, $this, $key );

				if ( false === $valid_check ) {
					$invalid_params[ $key ] = __( 'Invalid parameter.' );
				}

				if ( is_wp_error( $valid_check ) ) {
					$invalid_params[ $key ]  = implode( ' ', $valid_check->get_error_messages() );
					$invalid_details[ $key ] = rest_convert_error_to_response( $valid_check )->get_data();
				}
			}
		}

		if ( $invalid_params ) {
			return new WP_Error(
				'rest_invalid_param',
				/* translators: %s: List of invalid parameters. */
				sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ),
				array(
					'status'  => 400,
					'params'  => $invalid_params,
					'details' => $invalid_details,
				)
			);
		}

		if ( isset( $attributes['validate_callback'] ) ) {
			$valid_check = call_user_func( $attributes['validate_callback'], $this );

			if ( is_wp_error( $valid_check ) ) {
				return $valid_check;
			}

			if ( false === $valid_check ) {
				// A WP_Error instance is preferred, but false is supported for parity with the per-arg validate_callback.
				return new WP_Error( 'rest_invalid_params', __( 'Invalid parameters.' ), array( 'status' => 400 ) );
			}
		}

		return true;
	}

	/**
	 * Checks if a parameter is set.
	 *
	 * @since 4.4.0
	 *
	 * @param string $offset Parameter name.
	 * @return bool Whether the parameter is set.
	 */
	#[ReturnTypeWillChange]
	public function offsetExists( $offset ) {
		$order = $this->get_parameter_order();

		foreach ( $order as $type ) {
			if ( isset( $this->params[ $type ][ $offset ] ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Retrieves a parameter from the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $offset Parameter name.
	 * @return mixed|null Value if set, null otherwise.
	 */
	#[ReturnTypeWillChange]
	public function offsetGet( $offset ) {
		return $this->get_param( $offset );
	}

	/**
	 * Sets a parameter on the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $offset Parameter name.
	 * @param mixed  $value  Parameter value.
	 */
	#[ReturnTypeWillChange]
	public function offsetSet( $offset, $value ) {
		$this->set_param( $offset, $value );
	}

	/**
	 * Removes a parameter from the request.
	 *
	 * @since 4.4.0
	 *
	 * @param string $offset Parameter name.
	 */
	#[ReturnTypeWillChange]
	public function offsetUnset( $offset ) {
		$order = $this->get_parameter_order();

		// Remove the offset from every group.
		foreach ( $order as $type ) {
			unset( $this->params[ $type ][ $offset ] );
		}
	}

	/**
	 * Retrieves a WP_REST_Request object from a full URL.
	 *
	 * @since 4.5.0
	 *
	 * @param string $url URL with protocol, domain, path and query args.
	 * @return WP_REST_Request|false WP_REST_Request object on success, false on failure.
	 */
	public static function from_url( $url ) {
		$bits         = parse_url( $url );
		$query_params = array();

		if ( ! empty( $bits['query'] ) ) {
			wp_parse_str( $bits['query'], $query_params );
		}

		$api_root = rest_url();
		if ( get_option( 'permalink_structure' ) && str_starts_with( $url, $api_root ) ) {
			// Pretty permalinks on, and URL is under the API root.
			$api_url_part = substr( $url, strlen( untrailingslashit( $api_root ) ) );
			$route        = parse_url( $api_url_part, PHP_URL_PATH );
		} elseif ( ! empty( $query_params['rest_route'] ) ) {
			// ?rest_route=... set directly.
			$route = $query_params['rest_route'];
			unset( $query_params['rest_route'] );
		}

		$request = false;
		if ( ! empty( $route ) ) {
			$request = new WP_REST_Request( 'GET', $route );
			$request->set_query_params( $query_params );
		}

		/**
		 * Filters the REST API request generated from a URL.
		 *
		 * @since 4.5.0
		 *
		 * @param WP_REST_Request|false $request Generated request object, or false if URL
		 *                                       could not be parsed.
		 * @param string                $url     URL the request was generated from.
		 */
		return apply_filters( 'rest_request_from_url', $request, $url );
	}
}
search/class-wp-rest-search-handler.php000064400000004367152222510010014104 0ustar00<?php
/**
 * REST API: WP_REST_Search_Handler class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Core base class representing a search handler for an object type in the REST API.
 *
 * @since 5.0.0
 */
#[AllowDynamicProperties]
abstract class WP_REST_Search_Handler {

	/**
	 * Field containing the IDs in the search result.
	 */
	const RESULT_IDS = 'ids';

	/**
	 * Field containing the total count in the search result.
	 */
	const RESULT_TOTAL = 'total';

	/**
	 * Object type managed by this search handler.
	 *
	 * @since 5.0.0
	 * @var string
	 */
	protected $type = '';

	/**
	 * Object subtypes managed by this search handler.
	 *
	 * @since 5.0.0
	 * @var string[]
	 */
	protected $subtypes = array();

	/**
	 * Gets the object type managed by this search handler.
	 *
	 * @since 5.0.0
	 *
	 * @return string Object type identifier.
	 */
	public function get_type() {
		return $this->type;
	}

	/**
	 * Gets the object subtypes managed by this search handler.
	 *
	 * @since 5.0.0
	 *
	 * @return string[] Array of object subtype identifiers.
	 */
	public function get_subtypes() {
		return $this->subtypes;
	}

	/**
	 * Searches the object type content for a given search request.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full REST request.
	 * @return array Associative array containing an `WP_REST_Search_Handler::RESULT_IDS` containing
	 *               an array of found IDs and `WP_REST_Search_Handler::RESULT_TOTAL` containing the
	 *               total count for the matching search results.
	 */
	abstract public function search_items( WP_REST_Request $request );

	/**
	 * Prepares the search result for a given ID.
	 *
	 * @since 5.0.0
	 * @since 5.6.0 The `$id` parameter can accept a string.
	 *
	 * @param int|string $id     Item ID.
	 * @param array      $fields Fields to include for the item.
	 * @return array Associative array containing all fields for the item.
	 */
	abstract public function prepare_item( $id, array $fields );

	/**
	 * Prepares links for the search result of a given ID.
	 *
	 * @since 5.0.0
	 * @since 5.6.0 The `$id` parameter can accept a string.
	 *
	 * @param int|string $id Item ID.
	 * @return array Links for the given item.
	 */
	abstract public function prepare_item_links( $id );
}
search/error_log000064400000321152152222510010007720 0ustar00[17-Feb-2024 04:57:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[17-Feb-2024 04:57:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Feb-2024 04:57:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[17-Feb-2024 06:34:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[17-Feb-2024 06:34:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Feb-2024 06:34:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:48:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:48:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:48:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:48:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:49:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:49:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:57:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:57:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Mar-2024 11:57:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:57:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Mar-2024 11:57:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Mar-2024 11:57:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Apr-2024 11:39:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[29-Apr-2024 11:39:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[29-Apr-2024 11:39:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-May-2024 21:00:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-May-2024 21:00:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-May-2024 21:00:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-May-2024 06:03:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-May-2024 06:03:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-May-2024 06:03:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-May-2024 18:32:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-May-2024 18:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-May-2024 18:32:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[11-May-2024 09:44:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-May-2024 09:44:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-May-2024 09:44:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[11-May-2024 16:50:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-May-2024 16:51:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-May-2024 16:51:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[12-Jul-2024 17:48:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[12-Jul-2024 17:48:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[12-Jul-2024 17:48:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Jul-2024 16:58:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Jul-2024 16:58:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Jul-2024 16:58:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Aug-2024 05:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[07-Aug-2024 05:29:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[07-Aug-2024 05:29:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-Aug-2024 21:29:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-Aug-2024 21:29:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-Aug-2024 21:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:06:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:06:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:06:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:06:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:06:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:06:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:10:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:10:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Sep-2024 22:10:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:10:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Sep-2024 22:10:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Sep-2024 22:10:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2024 20:20:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2024 20:20:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2024 20:20:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2024 20:29:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2024 20:29:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2024 20:29:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[10-Nov-2024 10:23:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[10-Nov-2024 10:23:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[10-Nov-2024 10:23:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Nov-2024 04:31:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[16-Nov-2024 04:31:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Nov-2024 04:31:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Nov-2024 02:02:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[17-Nov-2024 02:02:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Nov-2024 00:36:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Nov-2024 00:36:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Nov-2024 00:36:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[08-Dec-2024 16:34:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Dec-2024 16:34:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Dec-2024 16:35:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Dec-2024 08:36:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Dec-2024 08:36:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Dec-2024 08:36:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[16-Jan-2025 07:47:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[16-Jan-2025 07:47:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[16-Jan-2025 07:47:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Feb-2025 02:12:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Feb-2025 02:12:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Feb-2025 02:12:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Feb-2025 02:36:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Feb-2025 06:15:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Feb-2025 06:15:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Feb-2025 06:15:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-Mar-2025 11:56:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[11-Mar-2025 11:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[11-Mar-2025 11:57:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Mar-2025 10:04:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[29-Mar-2025 10:04:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[29-Mar-2025 10:04:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-May-2025 09:51:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-May-2025 09:51:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-May-2025 09:51:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 11:52:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-May-2025 14:20:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-May-2025 14:20:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Jun-2025 16:54:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Jun-2025 16:54:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Jun-2025 16:54:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[01-Jul-2025 14:23:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[01-Jul-2025 14:23:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[01-Jul-2025 14:23:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Jul-2025 09:21:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Jul-2025 09:21:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Jul-2025 09:21:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:09:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Aug-2025 11:09:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[08-Aug-2025 11:09:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:09:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[08-Aug-2025 11:10:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[08-Aug-2025 11:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 05:17:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 05:17:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 05:18:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 05:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 05:18:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 05:18:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 06:05:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 06:05:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Aug-2025 06:05:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 06:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Aug-2025 06:05:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Aug-2025 06:05:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[20-Aug-2025 23:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[20-Aug-2025 23:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[20-Aug-2025 23:23:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Aug-2025 20:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[21-Aug-2025 20:59:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Aug-2025 20:59:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 20:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 20:47:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 20:47:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 20:47:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 20:47:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 20:47:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 21:12:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 21:12:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Aug-2025 21:12:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 21:12:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Aug-2025 21:13:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Aug-2025 21:13:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[26-Aug-2025 06:26:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[26-Aug-2025 06:26:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[26-Aug-2025 06:26:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[26-Aug-2025 06:35:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[26-Aug-2025 06:35:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[26-Aug-2025 06:35:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[27-Aug-2025 13:11:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[27-Aug-2025 13:12:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[27-Aug-2025 13:12:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[27-Aug-2025 15:20:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[27-Aug-2025 15:20:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[27-Aug-2025 15:20:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Sep-2025 00:43:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Sep-2025 00:43:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Sep-2025 00:43:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Sep-2025 01:00:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Sep-2025 01:00:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Sep-2025 01:00:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Sep-2025 01:55:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Sep-2025 01:55:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Sep-2025 01:55:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Sep-2025 02:03:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Sep-2025 02:03:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Sep-2025 02:03:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[09-Sep-2025 17:44:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[09-Sep-2025 17:44:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[09-Sep-2025 17:44:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[09-Sep-2025 17:56:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[09-Sep-2025 17:56:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[09-Sep-2025 17:56:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Sep-2025 15:08:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Sep-2025 15:08:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Sep-2025 15:08:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Sep-2025 15:17:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Sep-2025 15:17:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Sep-2025 15:17:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Sep-2025 17:03:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Sep-2025 17:03:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Sep-2025 17:03:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[18-Sep-2025 17:15:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[18-Sep-2025 17:15:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[18-Sep-2025 17:15:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2025 06:34:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2025 06:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2025 06:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[19-Sep-2025 06:47:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[19-Sep-2025 06:47:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[19-Sep-2025 06:47:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Sep-2025 12:43:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Sep-2025 12:43:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Sep-2025 12:43:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[22-Sep-2025 12:58:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[22-Sep-2025 12:58:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[22-Sep-2025 12:58:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[25-Sep-2025 22:00:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[25-Sep-2025 22:00:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[25-Sep-2025 22:00:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[25-Sep-2025 22:12:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[25-Sep-2025 22:12:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[25-Sep-2025 22:12:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Oct-2025 10:41:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Oct-2025 10:41:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Oct-2025 10:41:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Oct-2025 10:49:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Oct-2025 10:49:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Oct-2025 10:49:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Nov-2025 08:30:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Nov-2025 08:30:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Nov-2025 08:30:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[02-Nov-2025 08:40:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[02-Nov-2025 08:40:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[02-Nov-2025 08:40:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Dec-2025 18:47:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Dec-2025 18:48:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Dec-2025 18:48:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Dec-2025 18:58:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Dec-2025 18:58:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Dec-2025 18:58:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[23-Dec-2025 11:45:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[23-Dec-2025 11:45:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[23-Dec-2025 11:45:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[23-Dec-2025 12:01:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[23-Dec-2025 12:01:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[23-Dec-2025 12:01:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Dec-2025 14:59:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Dec-2025 14:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Dec-2025 14:59:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[24-Dec-2025 15:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[24-Dec-2025 15:22:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[24-Dec-2025 15:22:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Jan-2026 10:10:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Jan-2026 10:10:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Jan-2026 10:10:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[04-Jan-2026 10:19:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[05-Jan-2026 18:33:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[05-Jan-2026 18:33:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[05-Jan-2026 18:33:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Jan-2026 01:22:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Jan-2026 01:22:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Jan-2026 01:22:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[06-Jan-2026 01:34:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[06-Jan-2026 01:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[06-Jan-2026 01:34:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[07-Jan-2026 04:24:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 06:29:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-Jan-2026 06:29:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 06:29:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[13-Jan-2026 23:59:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[13-Jan-2026 23:59:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[13-Jan-2026 23:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[14-Jan-2026 00:16:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[14-Jan-2026 00:16:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[14-Jan-2026 00:16:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php on line 17
[21-Feb-2026 02:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Search_Handler' not found in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php on line 17
search/.htaccess000064400000000000152222510010007563 0ustar00search/class-wp-rest-post-search-handler.php000064400000013651152222510010015063 0ustar00<?php
/**
 * REST API: WP_REST_Post_Search_Handler class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Core class representing a search handler for posts in the REST API.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Search_Handler
 */
class WP_REST_Post_Search_Handler extends WP_REST_Search_Handler {

	/**
	 * Constructor.
	 *
	 * @since 5.0.0
	 */
	public function __construct() {
		$this->type = 'post';

		// Support all public post types except attachments.
		$this->subtypes = array_diff(
			array_values(
				get_post_types(
					array(
						'public'       => true,
						'show_in_rest' => true,
					),
					'names'
				)
			),
			array( 'attachment' )
		);
	}

	/**
	 * Searches posts for a given search request.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full REST request.
	 * @return array {
	 *     Associative array containing found IDs and total count for the matching search results.
	 *
	 *     @type int[] $ids   Array containing the matching post IDs.
	 *     @type int   $total Total count for the matching search results.
	 * }
	 */
	public function search_items( WP_REST_Request $request ) {

		// Get the post types to search for the current request.
		$post_types = $request[ WP_REST_Search_Controller::PROP_SUBTYPE ];
		if ( in_array( WP_REST_Search_Controller::TYPE_ANY, $post_types, true ) ) {
			$post_types = $this->subtypes;
		}

		$query_args = array(
			'post_type'           => $post_types,
			'post_status'         => 'publish',
			'paged'               => (int) $request['page'],
			'posts_per_page'      => (int) $request['per_page'],
			'ignore_sticky_posts' => true,
		);

		if ( ! empty( $request['search'] ) ) {
			$query_args['s'] = $request['search'];
		}

		if ( ! empty( $request['exclude'] ) ) {
			$query_args['post__not_in'] = $request['exclude'];
		}

		if ( ! empty( $request['include'] ) ) {
			$query_args['post__in'] = $request['include'];
		}

		/**
		 * Filters the query arguments for a REST API post search request.
		 *
		 * Enables adding extra arguments or setting defaults for a post search request.
		 *
		 * @since 5.1.0
		 *
		 * @param array           $query_args Key value array of query var to query value.
		 * @param WP_REST_Request $request    The request used.
		 */
		$query_args = apply_filters( 'rest_post_search_query', $query_args, $request );

		$query = new WP_Query();
		$posts = $query->query( $query_args );
		// Querying the whole post object will warm the object cache, avoiding an extra query per result.
		$found_ids = wp_list_pluck( $posts, 'ID' );
		$total     = $query->found_posts;

		return array(
			self::RESULT_IDS   => $found_ids,
			self::RESULT_TOTAL => $total,
		);
	}

	/**
	 * Prepares the search result for a given post ID.
	 *
	 * @since 5.0.0
	 *
	 * @param int   $id     Post ID.
	 * @param array $fields Fields to include for the post.
	 * @return array {
	 *     Associative array containing fields for the post based on the `$fields` parameter.
	 *
	 *     @type int    $id    Optional. Post ID.
	 *     @type string $title Optional. Post title.
	 *     @type string $url   Optional. Post permalink URL.
	 *     @type string $type  Optional. Post type.
	 * }
	 */
	public function prepare_item( $id, array $fields ) {
		$post = get_post( $id );

		$data = array();

		if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_ID ] = (int) $post->ID;
		}

		if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
			if ( post_type_supports( $post->post_type, 'title' ) ) {
				add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
				add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
				$data[ WP_REST_Search_Controller::PROP_TITLE ] = get_the_title( $post->ID );
				remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
				remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
			} else {
				$data[ WP_REST_Search_Controller::PROP_TITLE ] = '';
			}
		}

		if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_URL ] = get_permalink( $post->ID );
		}

		if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_TYPE ] = $this->type;
		}

		if ( in_array( WP_REST_Search_Controller::PROP_SUBTYPE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_SUBTYPE ] = $post->post_type;
		}

		return $data;
	}

	/**
	 * Prepares links for the search result of a given ID.
	 *
	 * @since 5.0.0
	 *
	 * @param int $id Item ID.
	 * @return array Links for the given item.
	 */
	public function prepare_item_links( $id ) {
		$post = get_post( $id );

		$links = array();

		$item_route = rest_get_route_for_post( $post );
		if ( ! empty( $item_route ) ) {
			$links['self'] = array(
				'href'       => rest_url( $item_route ),
				'embeddable' => true,
			);
		}

		$links['about'] = array(
			'href' => rest_url( 'wp/v2/types/' . $post->post_type ),
		);

		return $links;
	}

	/**
	 * Overwrites the default protected and private title format.
	 *
	 * By default, WordPress will show password protected or private posts with a title of
	 * "Protected: %s" or "Private: %s", as the REST API communicates the status of a post
	 * in a machine-readable format, we remove the prefix.
	 *
	 * @since 5.0.0
	 *
	 * @return string Title format.
	 */
	public function protected_title_format() {
		return '%s';
	}

	/**
	 * Attempts to detect the route to access a single item.
	 *
	 * @since 5.0.0
	 * @deprecated 5.5.0 Use rest_get_route_for_post()
	 * @see rest_get_route_for_post()
	 *
	 * @param WP_Post $post Post object.
	 * @return string REST route relative to the REST base URI, or empty string if unknown.
	 */
	protected function detect_rest_item_route( $post ) {
		_deprecated_function( __METHOD__, '5.5.0', 'rest_get_route_for_post()' );

		return rest_get_route_for_post( $post );
	}
}
search/class-wp-rest-post-format-search-handler.php000064400000007533152222510010016353 0ustar00<?php
/**
 * REST API: WP_REST_Post_Format_Search_Handler class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.6.0
 */

/**
 * Core class representing a search handler for post formats in the REST API.
 *
 * @since 5.6.0
 *
 * @see WP_REST_Search_Handler
 */
class WP_REST_Post_Format_Search_Handler extends WP_REST_Search_Handler {

	/**
	 * Constructor.
	 *
	 * @since 5.6.0
	 */
	public function __construct() {
		$this->type = 'post-format';
	}

	/**
	 * Searches the post formats for a given search request.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full REST request.
	 * @return array {
	 *     Associative array containing found IDs and total count for the matching search results.
	 *
	 *     @type string[] $ids   Array containing slugs for the matching post formats.
	 *     @type int      $total Total count for the matching search results.
	 * }
	 */
	public function search_items( WP_REST_Request $request ) {
		$format_strings = get_post_format_strings();
		$format_slugs   = array_keys( $format_strings );

		$query_args = array();

		if ( ! empty( $request['search'] ) ) {
			$query_args['search'] = $request['search'];
		}

		/**
		 * Filters the query arguments for a REST API post format search request.
		 *
		 * Enables adding extra arguments or setting defaults for a post format search request.
		 *
		 * @since 5.6.0
		 *
		 * @param array           $query_args Key value array of query var to query value.
		 * @param WP_REST_Request $request    The request used.
		 */
		$query_args = apply_filters( 'rest_post_format_search_query', $query_args, $request );

		$found_ids = array();
		foreach ( $format_slugs as $format_slug ) {
			if ( ! empty( $query_args['search'] ) ) {
				$format_string       = get_post_format_string( $format_slug );
				$format_slug_match   = stripos( $format_slug, $query_args['search'] ) !== false;
				$format_string_match = stripos( $format_string, $query_args['search'] ) !== false;
				if ( ! $format_slug_match && ! $format_string_match ) {
					continue;
				}
			}

			$format_link = get_post_format_link( $format_slug );
			if ( $format_link ) {
				$found_ids[] = $format_slug;
			}
		}

		$page     = (int) $request['page'];
		$per_page = (int) $request['per_page'];

		return array(
			self::RESULT_IDS   => array_slice( $found_ids, ( $page - 1 ) * $per_page, $per_page ),
			self::RESULT_TOTAL => count( $found_ids ),
		);
	}

	/**
	 * Prepares the search result for a given post format.
	 *
	 * @since 5.6.0
	 *
	 * @param string $id     Item ID, the post format slug.
	 * @param array  $fields Fields to include for the item.
	 * @return array {
	 *     Associative array containing fields for the post format based on the `$fields` parameter.
	 *
	 *     @type string $id    Optional. Post format slug.
	 *     @type string $title Optional. Post format name.
	 *     @type string $url   Optional. Post format permalink URL.
	 *     @type string $type  Optional. String 'post-format'.
	 * }
	 */
	public function prepare_item( $id, array $fields ) {
		$data = array();

		if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_ID ] = $id;
		}

		if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_TITLE ] = get_post_format_string( $id );
		}

		if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_URL ] = get_post_format_link( $id );
		}

		if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_TYPE ] = $this->type;
		}

		return $data;
	}

	/**
	 * Prepares links for the search result.
	 *
	 * @since 5.6.0
	 *
	 * @param string $id Item ID, the post format slug.
	 * @return array Links for the given item.
	 */
	public function prepare_item_links( $id ) {
		return array();
	}
}
search/class-wp-rest-term-search-handler.php000064400000011032152222510010015034 0ustar00<?php
/**
 * REST API: WP_REST_Term_Search_Handler class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.6.0
 */

/**
 * Core class representing a search handler for terms in the REST API.
 *
 * @since 5.6.0
 *
 * @see WP_REST_Search_Handler
 */
class WP_REST_Term_Search_Handler extends WP_REST_Search_Handler {

	/**
	 * Constructor.
	 *
	 * @since 5.6.0
	 */
	public function __construct() {
		$this->type = 'term';

		$this->subtypes = array_values(
			get_taxonomies(
				array(
					'public'       => true,
					'show_in_rest' => true,
				),
				'names'
			)
		);
	}

	/**
	 * Searches terms for a given search request.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full REST request.
	 * @return array {
	 *     Associative array containing found IDs and total count for the matching search results.
	 *
	 *     @type int[]               $ids   Found term IDs.
	 *     @type string|int|WP_Error $total Numeric string containing the number of terms in that
	 *                                      taxonomy, 0 if there are no results, or WP_Error if
	 *                                      the requested taxonomy does not exist.
	 * }
	 */
	public function search_items( WP_REST_Request $request ) {
		$taxonomies = $request[ WP_REST_Search_Controller::PROP_SUBTYPE ];
		if ( in_array( WP_REST_Search_Controller::TYPE_ANY, $taxonomies, true ) ) {
			$taxonomies = $this->subtypes;
		}

		$page     = (int) $request['page'];
		$per_page = (int) $request['per_page'];

		$query_args = array(
			'taxonomy'   => $taxonomies,
			'hide_empty' => false,
			'offset'     => ( $page - 1 ) * $per_page,
			'number'     => $per_page,
		);

		if ( ! empty( $request['search'] ) ) {
			$query_args['search'] = $request['search'];
		}

		if ( ! empty( $request['exclude'] ) ) {
			$query_args['exclude'] = $request['exclude'];
		}

		if ( ! empty( $request['include'] ) ) {
			$query_args['include'] = $request['include'];
		}

		/**
		 * Filters the query arguments for a REST API term search request.
		 *
		 * Enables adding extra arguments or setting defaults for a term search request.
		 *
		 * @since 5.6.0
		 *
		 * @param array           $query_args Key value array of query var to query value.
		 * @param WP_REST_Request $request    The request used.
		 */
		$query_args = apply_filters( 'rest_term_search_query', $query_args, $request );

		$query       = new WP_Term_Query();
		$found_terms = $query->query( $query_args );
		$found_ids   = wp_list_pluck( $found_terms, 'term_id' );

		unset( $query_args['offset'], $query_args['number'] );

		$total = wp_count_terms( $query_args );

		// wp_count_terms() can return a falsey value when the term has no children.
		if ( ! $total ) {
			$total = 0;
		}

		return array(
			self::RESULT_IDS   => $found_ids,
			self::RESULT_TOTAL => $total,
		);
	}

	/**
	 * Prepares the search result for a given term ID.
	 *
	 * @since 5.6.0
	 *
	 * @param int   $id     Term ID.
	 * @param array $fields Fields to include for the term.
	 * @return array {
	 *     Associative array containing fields for the term based on the `$fields` parameter.
	 *
	 *     @type int    $id    Optional. Term ID.
	 *     @type string $title Optional. Term name.
	 *     @type string $url   Optional. Term permalink URL.
	 *     @type string $type  Optional. Term taxonomy name.
	 * }
	 */
	public function prepare_item( $id, array $fields ) {
		$term = get_term( $id );

		$data = array();

		if ( in_array( WP_REST_Search_Controller::PROP_ID, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_ID ] = (int) $id;
		}
		if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_TITLE ] = $term->name;
		}
		if ( in_array( WP_REST_Search_Controller::PROP_URL, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_URL ] = get_term_link( $id );
		}
		if ( in_array( WP_REST_Search_Controller::PROP_TYPE, $fields, true ) ) {
			$data[ WP_REST_Search_Controller::PROP_TYPE ] = $term->taxonomy;
		}

		return $data;
	}

	/**
	 * Prepares links for the search result of a given ID.
	 *
	 * @since 5.6.0
	 *
	 * @param int $id Item ID.
	 * @return array[] Array of link arrays for the given item.
	 */
	public function prepare_item_links( $id ) {
		$term = get_term( $id );

		$links = array();

		$item_route = rest_get_route_for_term( $term );
		if ( $item_route ) {
			$links['self'] = array(
				'href'       => rest_url( $item_route ),
				'embeddable' => true,
			);
		}

		$links['about'] = array(
			'href' => rest_url( sprintf( 'wp/v2/taxonomies/%s', $term->taxonomy ) ),
		);

		return $links;
	}
}
endpoints/class-wp-rest-menu-items-controller.php000064400000100765152222510010016225 0ustar00<?php
/**
 * REST API: WP_REST_Menu_Items_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.9.0
 */

/**
 * Core class to access nav items via the REST API.
 *
 * @since 5.9.0
 *
 * @see WP_REST_Posts_Controller
 */
class WP_REST_Menu_Items_Controller extends WP_REST_Posts_Controller {

	/**
	 * Gets the nav menu item, if the ID is valid.
	 *
	 * @since 5.9.0
	 *
	 * @param int $id Supplied ID.
	 * @return object|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_nav_menu_item( $id ) {
		$post = $this->get_post( $id );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		return wp_setup_nav_menu_item( $post );
	}

	/**
	 * Checks if a given request has access to read menu items.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$has_permission = parent::get_items_permissions_check( $request );

		if ( true !== $has_permission ) {
			return $has_permission;
		}

		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Checks if a given request has access to read a menu item if they have access to edit them.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has read access for the item, WP_Error object or false otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$permission_check = parent::get_item_permissions_check( $request );

		if ( true !== $permission_check ) {
			return $permission_check;
		}

		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Checks whether the current user has read permission for the endpoint.
	 *
	 * This allows for any user that can `edit_theme_options` or edit any REST API available post type.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	protected function check_has_read_only_access( $request ) {
		/**
		 * Filters whether the current user has read access to menu items via the REST API.
		 *
		 * @since 6.8.0
		 *
		 * @param bool               $read_only_access Whether the current user has read access to menu items
		 *                                             via the REST API.
		 * @param WP_REST_Request    $request          Full details about the request.
		 * @param WP_REST_Controller $controller       The current instance of the controller.
		 */
		$read_only_access = apply_filters( 'rest_menu_read_access', false, $request, $this );
		if ( $read_only_access ) {
			return true;
		}

		if ( current_user_can( 'edit_theme_options' ) ) {
			return true;
		}

		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view',
			__( 'Sorry, you are not allowed to view menu items.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Creates a single nav menu item.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( ! empty( $request['id'] ) ) {
			return new WP_Error( 'rest_post_exists', __( 'Cannot create existing post.' ), array( 'status' => 400 ) );
		}

		$prepared_nav_item = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared_nav_item ) ) {
			return $prepared_nav_item;
		}
		$prepared_nav_item = (array) $prepared_nav_item;

		$nav_menu_item_id = wp_update_nav_menu_item( $prepared_nav_item['menu-id'], $prepared_nav_item['menu-item-db-id'], wp_slash( $prepared_nav_item ), false );
		if ( is_wp_error( $nav_menu_item_id ) ) {
			if ( 'db_insert_error' === $nav_menu_item_id->get_error_code() ) {
				$nav_menu_item_id->add_data( array( 'status' => 500 ) );
			} else {
				$nav_menu_item_id->add_data( array( 'status' => 400 ) );
			}

			return $nav_menu_item_id;
		}

		$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
		if ( is_wp_error( $nav_menu_item ) ) {
			$nav_menu_item->add_data( array( 'status' => 404 ) );

			return $nav_menu_item;
		}

		/**
		 * Fires after a single menu item is created or updated via the REST API.
		 *
		 * @since 5.9.0
		 *
		 * @param object          $nav_menu_item Inserted or updated menu item object.
		 * @param WP_REST_Request $request       Request object.
		 * @param bool            $creating      True when creating a menu item, false when updating.
		 */
		do_action( 'rest_insert_nav_menu_item', $nav_menu_item, $request, true );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $nav_menu_item_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
		$fields_update = $this->update_additional_fields_for_object( $nav_menu_item, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/**
		 * Fires after a single menu item is completely created or updated via the REST API.
		 *
		 * @since 5.9.0
		 *
		 * @param object          $nav_menu_item Inserted or updated menu item object.
		 * @param WP_REST_Request $request       Request object.
		 * @param bool            $creating      True when creating a menu item, false when updating.
		 */
		do_action( 'rest_after_insert_nav_menu_item', $nav_menu_item, $request, true );

		$post = get_post( $nav_menu_item_id );
		wp_after_insert_post( $post, false, null );

		$response = $this->prepare_item_for_response( $post, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $nav_menu_item_id ) ) );

		return $response;
	}

	/**
	 * Updates a single nav menu item.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$valid_check = $this->get_nav_menu_item( $request['id'] );
		if ( is_wp_error( $valid_check ) ) {
			return $valid_check;
		}
		$post_before       = get_post( $request['id'] );
		$prepared_nav_item = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared_nav_item ) ) {
			return $prepared_nav_item;
		}

		$prepared_nav_item = (array) $prepared_nav_item;

		$nav_menu_item_id = wp_update_nav_menu_item( $prepared_nav_item['menu-id'], $prepared_nav_item['menu-item-db-id'], wp_slash( $prepared_nav_item ), false );

		if ( is_wp_error( $nav_menu_item_id ) ) {
			if ( 'db_update_error' === $nav_menu_item_id->get_error_code() ) {
				$nav_menu_item_id->add_data( array( 'status' => 500 ) );
			} else {
				$nav_menu_item_id->add_data( array( 'status' => 400 ) );
			}

			return $nav_menu_item_id;
		}

		$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
		if ( is_wp_error( $nav_menu_item ) ) {
			$nav_menu_item->add_data( array( 'status' => 404 ) );

			return $nav_menu_item;
		}

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
		do_action( 'rest_insert_nav_menu_item', $nav_menu_item, $request, false );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $nav_menu_item->ID );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$post          = get_post( $nav_menu_item_id );
		$nav_menu_item = $this->get_nav_menu_item( $nav_menu_item_id );
		$fields_update = $this->update_additional_fields_for_object( $nav_menu_item, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
		do_action( 'rest_after_insert_nav_menu_item', $nav_menu_item, $request, false );

		wp_after_insert_post( $post, true, $post_before );

		$response = $this->prepare_item_for_response( get_post( $nav_menu_item_id ), $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Deletes a single nav menu item.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error True on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$menu_item = $this->get_nav_menu_item( $request['id'] );
		if ( is_wp_error( $menu_item ) ) {
			return $menu_item;
		}

		// We don't support trashing for menu items.
		if ( ! $request['force'] ) {
			/* translators: %s: force=true */
			return new WP_Error( 'rest_trash_not_supported', sprintf( __( "Menu items do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) );
		}

		$previous = $this->prepare_item_for_response( get_post( $request['id'] ), $request );

		$result = wp_delete_post( $request['id'], true );

		if ( ! $result ) {
			return new WP_Error( 'rest_cannot_delete', __( 'The post cannot be deleted.' ), array( 'status' => 500 ) );
		}

		$response = new WP_REST_Response();
		$response->set_data(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);

		/**
		 * Fires immediately after a single menu item is deleted via the REST API.
		 *
		 * @since 5.9.0
		 *
		 * @param object          $nav_menu_item Inserted or updated menu item object.
		 * @param WP_REST_Response $response The response data.
		 * @param WP_REST_Request $request       Request object.
		 */
		do_action( 'rest_delete_nav_menu_item', $menu_item, $response, $request );

		return $response;
	}

	/**
	 * Prepares a single nav menu item for create or update.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Request object.
	 *
	 * @return object|WP_Error
	 */
	protected function prepare_item_for_database( $request ) {
		$menu_item_db_id = $request['id'];
		$menu_item_obj   = $this->get_nav_menu_item( $menu_item_db_id );
		// Need to persist the menu item data. See https://core.trac.wordpress.org/ticket/28138
		if ( ! is_wp_error( $menu_item_obj ) ) {
			// Correct the menu position if this was the first item. See https://core.trac.wordpress.org/ticket/28140
			$position = ( 0 === $menu_item_obj->menu_order ) ? 1 : $menu_item_obj->menu_order;

			$prepared_nav_item = array(
				'menu-item-db-id'       => $menu_item_db_id,
				'menu-item-object-id'   => $menu_item_obj->object_id,
				'menu-item-object'      => $menu_item_obj->object,
				'menu-item-parent-id'   => $menu_item_obj->menu_item_parent,
				'menu-item-position'    => $position,
				'menu-item-type'        => $menu_item_obj->type,
				'menu-item-title'       => $menu_item_obj->title,
				'menu-item-url'         => $menu_item_obj->url,
				'menu-item-description' => $menu_item_obj->description,
				'menu-item-attr-title'  => $menu_item_obj->attr_title,
				'menu-item-target'      => $menu_item_obj->target,
				'menu-item-classes'     => $menu_item_obj->classes,
				// Stored in the database as a string.
				'menu-item-xfn'         => explode( ' ', $menu_item_obj->xfn ),
				'menu-item-status'      => $menu_item_obj->post_status,
				'menu-id'               => $this->get_menu_id( $menu_item_db_id ),
			);
		} else {
			$prepared_nav_item = array(
				'menu-id'               => 0,
				'menu-item-db-id'       => 0,
				'menu-item-object-id'   => 0,
				'menu-item-object'      => '',
				'menu-item-parent-id'   => 0,
				'menu-item-position'    => 1,
				'menu-item-type'        => 'custom',
				'menu-item-title'       => '',
				'menu-item-url'         => '',
				'menu-item-description' => '',
				'menu-item-attr-title'  => '',
				'menu-item-target'      => '',
				'menu-item-classes'     => array(),
				'menu-item-xfn'         => array(),
				'menu-item-status'      => 'publish',
			);
		}

		$mapping = array(
			'menu-item-db-id'       => 'id',
			'menu-item-object-id'   => 'object_id',
			'menu-item-object'      => 'object',
			'menu-item-parent-id'   => 'parent',
			'menu-item-position'    => 'menu_order',
			'menu-item-type'        => 'type',
			'menu-item-url'         => 'url',
			'menu-item-description' => 'description',
			'menu-item-attr-title'  => 'attr_title',
			'menu-item-target'      => 'target',
			'menu-item-classes'     => 'classes',
			'menu-item-xfn'         => 'xfn',
			'menu-item-status'      => 'status',
		);

		$schema = $this->get_item_schema();

		foreach ( $mapping as $original => $api_request ) {
			if ( isset( $request[ $api_request ] ) ) {
				$prepared_nav_item[ $original ] = $request[ $api_request ];
			}
		}

		$taxonomy = get_taxonomy( 'nav_menu' );
		$base     = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
		// If menus submitted, cast to int.
		if ( ! empty( $request[ $base ] ) ) {
			$prepared_nav_item['menu-id'] = absint( $request[ $base ] );
		}

		// Nav menu title.
		if ( ! empty( $schema['properties']['title'] ) && isset( $request['title'] ) ) {
			if ( is_string( $request['title'] ) ) {
				$prepared_nav_item['menu-item-title'] = $request['title'];
			} elseif ( ! empty( $request['title']['raw'] ) ) {
				$prepared_nav_item['menu-item-title'] = $request['title']['raw'];
			}
		}

		$error = new WP_Error();

		// Check if object id exists before saving.
		if ( ! $prepared_nav_item['menu-item-object'] ) {
			// If taxonomy, check if term exists.
			if ( 'taxonomy' === $prepared_nav_item['menu-item-type'] ) {
				$original = get_term( absint( $prepared_nav_item['menu-item-object-id'] ) );
				if ( empty( $original ) || is_wp_error( $original ) ) {
					$error->add( 'rest_term_invalid_id', __( 'Invalid term ID.' ), array( 'status' => 400 ) );
				} else {
					$prepared_nav_item['menu-item-object'] = get_term_field( 'taxonomy', $original );
				}
				// If post, check if post object exists.
			} elseif ( 'post_type' === $prepared_nav_item['menu-item-type'] ) {
				$original = get_post( absint( $prepared_nav_item['menu-item-object-id'] ) );
				if ( empty( $original ) ) {
					$error->add( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 400 ) );
				} else {
					$prepared_nav_item['menu-item-object'] = get_post_type( $original );
				}
			}
		}

		// If post type archive, check if post type exists.
		if ( 'post_type_archive' === $prepared_nav_item['menu-item-type'] ) {
			$post_type = $prepared_nav_item['menu-item-object'] ? $prepared_nav_item['menu-item-object'] : false;
			$original  = get_post_type_object( $post_type );
			if ( ! $original ) {
				$error->add( 'rest_post_invalid_type', __( 'Invalid post type.' ), array( 'status' => 400 ) );
			}
		}

		// Check if menu item is type custom, then title and url are required.
		if ( 'custom' === $prepared_nav_item['menu-item-type'] ) {
			if ( '' === $prepared_nav_item['menu-item-title'] ) {
				$error->add( 'rest_title_required', __( 'The title is required when using a custom menu item type.' ), array( 'status' => 400 ) );
			}
			if ( empty( $prepared_nav_item['menu-item-url'] ) ) {
				$error->add( 'rest_url_required', __( 'The url is required when using a custom menu item type.' ), array( 'status' => 400 ) );
			}
		}

		if ( $error->has_errors() ) {
			return $error;
		}

		// The xfn and classes properties are arrays, but passed to wp_update_nav_menu_item as a string.
		foreach ( array( 'menu-item-xfn', 'menu-item-classes' ) as $key ) {
			$prepared_nav_item[ $key ] = implode( ' ', $prepared_nav_item[ $key ] );
		}

		// Only draft / publish are valid post status for menu items.
		if ( 'publish' !== $prepared_nav_item['menu-item-status'] ) {
			$prepared_nav_item['menu-item-status'] = 'draft';
		}

		$prepared_nav_item = (object) $prepared_nav_item;

		/**
		 * Filters a menu item before it is inserted via the REST API.
		 *
		 * @since 5.9.0
		 *
		 * @param object          $prepared_nav_item An object representing a single menu item prepared
		 *                                           for inserting or updating the database.
		 * @param WP_REST_Request $request           Request object.
		 */
		return apply_filters( 'rest_pre_insert_nav_menu_item', $prepared_nav_item, $request );
	}

	/**
	 * Prepares a single nav menu item output for response.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Post         $item    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Base fields for every post.
		$fields    = $this->get_fields_for_response( $request );
		$menu_item = $this->get_nav_menu_item( $item->ID );
		$data      = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $menu_item->ID;
		}

		if ( rest_is_field_included( 'title', $fields ) ) {
			$data['title'] = array();
		}

		if ( rest_is_field_included( 'title.raw', $fields ) ) {
			$data['title']['raw'] = $menu_item->title;
		}

		if ( rest_is_field_included( 'title.rendered', $fields ) ) {
			add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );

			/** This filter is documented in wp-includes/post-template.php */
			$title = apply_filters( 'the_title', $menu_item->title, $menu_item->ID );

			$data['title']['rendered'] = $title;

			remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
		}

		if ( rest_is_field_included( 'status', $fields ) ) {
			$data['status'] = $menu_item->post_status;
		}

		if ( rest_is_field_included( 'url', $fields ) ) {
			$data['url'] = $menu_item->url;
		}

		if ( rest_is_field_included( 'attr_title', $fields ) ) {
			// Same as post_excerpt.
			$data['attr_title'] = $menu_item->attr_title;
		}

		if ( rest_is_field_included( 'description', $fields ) ) {
			// Same as post_content.
			$data['description'] = $menu_item->description;
		}

		if ( rest_is_field_included( 'type', $fields ) ) {
			$data['type'] = $menu_item->type;
		}

		if ( rest_is_field_included( 'type_label', $fields ) ) {
			$data['type_label'] = $menu_item->type_label;
		}

		if ( rest_is_field_included( 'object', $fields ) ) {
			$data['object'] = $menu_item->object;
		}

		if ( rest_is_field_included( 'object_id', $fields ) ) {
			// It is stored as a string, but should be exposed as an integer.
			$data['object_id'] = absint( $menu_item->object_id );
		}

		if ( rest_is_field_included( 'parent', $fields ) ) {
			// Same as post_parent, exposed as an integer.
			$data['parent'] = (int) $menu_item->menu_item_parent;
		}

		if ( rest_is_field_included( 'menu_order', $fields ) ) {
			// Same as post_parent, exposed as an integer.
			$data['menu_order'] = (int) $menu_item->menu_order;
		}

		if ( rest_is_field_included( 'target', $fields ) ) {
			$data['target'] = $menu_item->target;
		}

		if ( rest_is_field_included( 'classes', $fields ) ) {
			$data['classes'] = (array) $menu_item->classes;
		}

		if ( rest_is_field_included( 'xfn', $fields ) ) {
			$data['xfn'] = array_map( 'sanitize_html_class', explode( ' ', $menu_item->xfn ) );
		}

		if ( rest_is_field_included( 'invalid', $fields ) ) {
			$data['invalid'] = (bool) $menu_item->_invalid;
		}

		if ( rest_is_field_included( 'meta', $fields ) ) {
			$data['meta'] = $this->meta->get_value( $menu_item->ID, $request );
		}

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			if ( rest_is_field_included( $base, $fields ) ) {
				$terms = get_the_terms( $item, $taxonomy->name );
				if ( ! is_array( $terms ) ) {
					continue;
				}
				$term_ids = $terms ? array_values( wp_list_pluck( $terms, 'term_id' ) ) : array();
				if ( 'nav_menu' === $taxonomy->name ) {
					$data[ $base ] = $term_ids ? array_shift( $term_ids ) : 0;
				} else {
					$data[ $base ] = $term_ids;
				}
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $item );
			$response->add_links( $links );

			if ( ! empty( $links['self']['href'] ) ) {
				$actions = $this->get_available_actions( $item, $request );

				$self = $links['self']['href'];

				foreach ( $actions as $rel ) {
					$response->add_link( $rel, $self );
				}
			}
		}

		/**
		 * Filters the menu item data for a REST API response.
		 *
		 * @since 5.9.0
		 *
		 * @param WP_REST_Response $response  The response object.
		 * @param object           $menu_item Menu item setup by {@see wp_setup_nav_menu_item()}.
		 * @param WP_REST_Request  $request   Request object.
		 */
		return apply_filters( 'rest_prepare_nav_menu_item', $response, $menu_item, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Post $post Post object.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $post ) {
		$links     = parent::prepare_links( $post );
		$menu_item = $this->get_nav_menu_item( $post->ID );

		if ( empty( $menu_item->object_id ) ) {
			return $links;
		}

		$path = '';
		$type = '';
		$key  = $menu_item->type;
		if ( 'post_type' === $menu_item->type ) {
			$path = rest_get_route_for_post( $menu_item->object_id );
			$type = get_post_type( $menu_item->object_id );
		} elseif ( 'taxonomy' === $menu_item->type ) {
			$path = rest_get_route_for_term( $menu_item->object_id );
			$type = get_term_field( 'taxonomy', $menu_item->object_id );
		}

		if ( $path && $type ) {
			$links['https://api.w.org/menu-item-object'][] = array(
				'href'       => rest_url( $path ),
				$key         => $type,
				'embeddable' => true,
			);
		}

		return $links;
	}

	/**
	 * Retrieves Link Description Objects that should be added to the Schema for the nav menu items collection.
	 *
	 * @since 5.9.0
	 *
	 * @return array
	 */
	protected function get_schema_links() {
		$links   = parent::get_schema_links();
		$href    = rest_url( "{$this->namespace}/{$this->rest_base}/{id}" );
		$links[] = array(
			'rel'          => 'https://api.w.org/menu-item-object',
			'title'        => __( 'Get linked object.' ),
			'href'         => $href,
			'targetSchema' => array(
				'type'       => 'object',
				'properties' => array(
					'object' => array(
						'type' => 'integer',
					),
				),
			),
		);

		return $links;
	}

	/**
	 * Retrieves the nav menu item's schema, conforming to JSON Schema.
	 *
	 * @since 5.9.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema' => 'http://json-schema.org/draft-04/schema#',
			'title'   => $this->post_type,
			'type'    => 'object',
		);

		$schema['properties']['title'] = array(
			'description' => __( 'The title for the object.' ),
			'type'        => array( 'string', 'object' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'properties'  => array(
				'raw'      => array(
					'description' => __( 'Title for the object, as it exists in the database.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
				),
				'rendered' => array(
					'description' => __( 'HTML title for the object, transformed for display.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
			),
		);

		$schema['properties']['id'] = array(
			'description' => __( 'Unique identifier for the object.' ),
			'type'        => 'integer',
			'default'     => 0,
			'minimum'     => 0,
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['type_label'] = array(
			'description' => __( 'The singular label used to describe this type of menu item.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['type'] = array(
			'description' => __( 'The family of objects originally represented, such as "post_type" or "taxonomy".' ),
			'type'        => 'string',
			'enum'        => array( 'taxonomy', 'post_type', 'post_type_archive', 'custom' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'default'     => 'custom',
		);

		$schema['properties']['status'] = array(
			'description' => __( 'A named status for the object.' ),
			'type'        => 'string',
			'enum'        => array_keys( get_post_stati( array( 'internal' => false ) ) ),
			'default'     => 'publish',
			'context'     => array( 'view', 'edit', 'embed' ),
		);

		$schema['properties']['parent'] = array(
			'description' => __( 'The ID for the parent of the object.' ),
			'type'        => 'integer',
			'minimum'     => 0,
			'default'     => 0,
			'context'     => array( 'view', 'edit', 'embed' ),
		);

		$schema['properties']['attr_title'] = array(
			'description' => __( 'Text for the title attribute of the link element for this menu item.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => 'sanitize_text_field',
			),
		);

		$schema['properties']['classes'] = array(
			'description' => __( 'Class names for the link element of this menu item.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => static function ( $value ) {
					return array_map( 'sanitize_html_class', wp_parse_list( $value ) );
				},
			),
		);

		$schema['properties']['description'] = array(
			'description' => __( 'The description of this menu item.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => 'sanitize_text_field',
			),
		);

		$schema['properties']['menu_order'] = array(
			'description' => __( 'The DB ID of the nav_menu_item that is this item\'s menu parent, if any, otherwise 0.' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'type'        => 'integer',
			'minimum'     => 1,
			'default'     => 1,
		);

		$schema['properties']['object'] = array(
			'description' => __( 'The type of object originally represented, such as "category", "post", or "attachment".' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'type'        => 'string',
			'arg_options' => array(
				'sanitize_callback' => 'sanitize_key',
			),
		);

		$schema['properties']['object_id'] = array(
			'description' => __( 'The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories.' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'type'        => 'integer',
			'minimum'     => 0,
			'default'     => 0,
		);

		$schema['properties']['target'] = array(
			'description' => __( 'The target attribute of the link element for this menu item.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'enum'        => array(
				'_blank',
				'',
			),
		);

		$schema['properties']['url'] = array(
			'description' => __( 'The URL to which this menu item points.' ),
			'type'        => 'string',
			'format'      => 'uri',
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'validate_callback' => static function ( $url ) {
					if ( '' === $url ) {
						return true;
					}

					if ( sanitize_url( $url ) ) {
						return true;
					}

					return new WP_Error(
						'rest_invalid_url',
						__( 'Invalid URL.' )
					);
				},
			),
		);

		$schema['properties']['xfn'] = array(
			'description' => __( 'The XFN relationship expressed in the link of this menu item.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => static function ( $value ) {
					return array_map( 'sanitize_html_class', wp_parse_list( $value ) );
				},
			),
		);

		$schema['properties']['invalid'] = array(
			'description' => __( 'Whether the menu item represents an object that no longer exists.' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'type'        => 'boolean',
			'readonly'    => true,
		);

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $taxonomy ) {
			$base                          = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
			$schema['properties'][ $base ] = array(
				/* translators: %s: taxonomy name */
				'description' => sprintf( __( 'The terms assigned to the object in the %s taxonomy.' ), $taxonomy->name ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'context'     => array( 'view', 'edit' ),
			);

			if ( 'nav_menu' === $taxonomy->name ) {
				$schema['properties'][ $base ]['type'] = 'integer';
				unset( $schema['properties'][ $base ]['items'] );
			}
		}

		$schema['properties']['meta'] = $this->meta->get_field_schema();

		$schema_links = $this->get_schema_links();

		if ( $schema_links ) {
			$schema['links'] = $schema_links;
		}

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for the nav menu items collection.
	 *
	 * @since 5.9.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['menu_order'] = array(
			'description' => __( 'Limit result set to posts with a specific menu_order value.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'asc',
			'enum'        => array( 'asc', 'desc' ),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by object attribute.' ),
			'type'        => 'string',
			'default'     => 'menu_order',
			'enum'        => array(
				'author',
				'date',
				'id',
				'include',
				'modified',
				'parent',
				'relevance',
				'slug',
				'include_slugs',
				'title',
				'menu_order',
			),
		);
		// Change default to 100 items.
		$query_params['per_page']['default'] = 100;

		return $query_params;
	}

	/**
	 * Determines the allowed query_vars for a get_items() response and prepares
	 * them for WP_Query.
	 *
	 * @since 5.9.0
	 *
	 * @param array           $prepared_args Optional. Prepared WP_Query arguments. Default empty array.
	 * @param WP_REST_Request $request       Optional. Full details about the request.
	 * @return array Items query arguments.
	 */
	protected function prepare_items_query( $prepared_args = array(), $request = null ) {
		$query_args = parent::prepare_items_query( $prepared_args, $request );

		// Map to proper WP_Query orderby param.
		if ( isset( $query_args['orderby'], $request['orderby'] ) ) {
			$orderby_mappings = array(
				'id'            => 'ID',
				'include'       => 'post__in',
				'slug'          => 'post_name',
				'include_slugs' => 'post_name__in',
				'menu_order'    => 'menu_order',
			);

			if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) {
				$query_args['orderby'] = $orderby_mappings[ $request['orderby'] ];
			}
		}

		$query_args['update_menu_item_cache'] = true;

		return $query_args;
	}

	/**
	 * Gets the id of the menu that the given menu item belongs to.
	 *
	 * @since 5.9.0
	 *
	 * @param int $menu_item_id Menu item id.
	 * @return int
	 */
	protected function get_menu_id( $menu_item_id ) {
		$menu_ids = wp_get_post_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) );
		$menu_id  = 0;
		if ( $menu_ids && ! is_wp_error( $menu_ids ) ) {
			$menu_id = array_shift( $menu_ids );
		}

		return $menu_id;
	}
}
endpoints/class-wp-rest-search-controller.php000064400000026331152222510010015403 0ustar00<?php
/**
 * REST API: WP_REST_Search_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Core class to search through all WordPress content via the REST API.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Search_Controller extends WP_REST_Controller {

	/**
	 * ID property name.
	 */
	const PROP_ID = 'id';

	/**
	 * Title property name.
	 */
	const PROP_TITLE = 'title';

	/**
	 * URL property name.
	 */
	const PROP_URL = 'url';

	/**
	 * Type property name.
	 */
	const PROP_TYPE = 'type';

	/**
	 * Subtype property name.
	 */
	const PROP_SUBTYPE = 'subtype';

	/**
	 * Identifier for the 'any' type.
	 */
	const TYPE_ANY = 'any';

	/**
	 * Search handlers used by the controller.
	 *
	 * @since 5.0.0
	 * @var WP_REST_Search_Handler[]
	 */
	protected $search_handlers = array();

	/**
	 * Constructor.
	 *
	 * @since 5.0.0
	 *
	 * @param array $search_handlers List of search handlers to use in the controller. Each search
	 *                               handler instance must extend the `WP_REST_Search_Handler` class.
	 */
	public function __construct( array $search_handlers ) {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'search';

		foreach ( $search_handlers as $search_handler ) {
			if ( ! $search_handler instanceof WP_REST_Search_Handler ) {
				_doing_it_wrong(
					__METHOD__,
					/* translators: %s: PHP class name. */
					sprintf( __( 'REST search handlers must extend the %s class.' ), 'WP_REST_Search_Handler' ),
					'5.0.0'
				);
				continue;
			}

			$this->search_handlers[ $search_handler->get_type() ] = $search_handler;
		}
	}

	/**
	 * Registers the routes for the search controller.
	 *
	 * @since 5.0.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permission_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to search content.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has search access, WP_Error object otherwise.
	 */
	public function get_items_permission_check( $request ) {
		return true;
	}

	/**
	 * Retrieves a collection of search results.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$handler = $this->get_search_handler( $request );
		if ( is_wp_error( $handler ) ) {
			return $handler;
		}

		$result = $handler->search_items( $request );

		if ( ! isset( $result[ WP_REST_Search_Handler::RESULT_IDS ] ) || ! is_array( $result[ WP_REST_Search_Handler::RESULT_IDS ] ) || ! isset( $result[ WP_REST_Search_Handler::RESULT_TOTAL ] ) ) {
			return new WP_Error(
				'rest_search_handler_error',
				__( 'Internal search handler error.' ),
				array( 'status' => 500 )
			);
		}

		$ids = $result[ WP_REST_Search_Handler::RESULT_IDS ];

		$is_head_request = $request->is_method( 'HEAD' );
		if ( ! $is_head_request ) {
			$results = array();

			foreach ( $ids as $id ) {
				$data      = $this->prepare_item_for_response( $id, $request );
				$results[] = $this->prepare_response_for_collection( $data );
			}
		}

		$total     = (int) $result[ WP_REST_Search_Handler::RESULT_TOTAL ];
		$page      = (int) $request['page'];
		$per_page  = (int) $request['per_page'];
		$max_pages = (int) ceil( $total / $per_page );

		if ( $page > $max_pages && $total > 0 ) {
			return new WP_Error(
				'rest_search_invalid_page_number',
				__( 'The page number requested is larger than the number of pages available.' ),
				array( 'status' => 400 )
			);
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $results );
		$response->header( 'X-WP-Total', $total );
		$response->header( 'X-WP-TotalPages', $max_pages );

		$request_params = $request->get_query_params();
		$base           = add_query_arg( urlencode_deep( $request_params ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );

		if ( $page > 1 ) {
			$prev_link = add_query_arg( 'page', $page - 1, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $page < $max_pages ) {
			$next_link = add_query_arg( 'page', $page + 1, $base );
			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Prepares a single search result for response.
	 *
	 * @since 5.0.0
	 * @since 5.6.0 The `$id` parameter can accept a string.
	 * @since 5.9.0 Renamed `$id` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param int|string      $item    ID of the item to prepare.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$item_id = $item;

		$handler = $this->get_search_handler( $request );
		if ( is_wp_error( $handler ) ) {
			return new WP_REST_Response();
		}

		$fields = $this->get_fields_for_response( $request );

		$data = $handler->prepare_item( $item_id, $fields );
		$data = $this->add_additional_fields_to_object( $data, $request );

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links               = $handler->prepare_item_links( $item_id );
			$links['collection'] = array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			);
			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Retrieves the item schema, conforming to JSON Schema.
	 *
	 * @since 5.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$types    = array();
		$subtypes = array();

		foreach ( $this->search_handlers as $search_handler ) {
			$types[]  = $search_handler->get_type();
			$subtypes = array_merge( $subtypes, $search_handler->get_subtypes() );
		}

		$types    = array_unique( $types );
		$subtypes = array_unique( $subtypes );

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'search-result',
			'type'       => 'object',
			'properties' => array(
				self::PROP_ID      => array(
					'description' => __( 'Unique identifier for the object.' ),
					'type'        => array( 'integer', 'string' ),
					'context'     => array( 'view', 'embed' ),
					'readonly'    => true,
				),
				self::PROP_TITLE   => array(
					'description' => __( 'The title for the object.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'embed' ),
					'readonly'    => true,
				),
				self::PROP_URL     => array(
					'description' => __( 'URL to the object.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'embed' ),
					'readonly'    => true,
				),
				self::PROP_TYPE    => array(
					'description' => __( 'Object type.' ),
					'type'        => 'string',
					'enum'        => $types,
					'context'     => array( 'view', 'embed' ),
					'readonly'    => true,
				),
				self::PROP_SUBTYPE => array(
					'description' => __( 'Object subtype.' ),
					'type'        => 'string',
					'enum'        => $subtypes,
					'context'     => array( 'view', 'embed' ),
					'readonly'    => true,
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for the search results collection.
	 *
	 * @since 5.0.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$types    = array();
		$subtypes = array();

		foreach ( $this->search_handlers as $search_handler ) {
			$types[]  = $search_handler->get_type();
			$subtypes = array_merge( $subtypes, $search_handler->get_subtypes() );
		}

		$types    = array_unique( $types );
		$subtypes = array_unique( $subtypes );

		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params[ self::PROP_TYPE ] = array(
			'default'     => $types[0],
			'description' => __( 'Limit results to items of an object type.' ),
			'type'        => 'string',
			'enum'        => $types,
		);

		$query_params[ self::PROP_SUBTYPE ] = array(
			'default'           => self::TYPE_ANY,
			'description'       => __( 'Limit results to items of one or more object subtypes.' ),
			'type'              => 'array',
			'items'             => array(
				'enum' => array_merge( $subtypes, array( self::TYPE_ANY ) ),
				'type' => 'string',
			),
			'sanitize_callback' => array( $this, 'sanitize_subtypes' ),
		);

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		return $query_params;
	}

	/**
	 * Sanitizes the list of subtypes, to ensure only subtypes of the passed type are included.
	 *
	 * @since 5.0.0
	 *
	 * @param string|array    $subtypes  One or more subtypes.
	 * @param WP_REST_Request $request   Full details about the request.
	 * @param string          $parameter Parameter name.
	 * @return string[]|WP_Error List of valid subtypes, or WP_Error object on failure.
	 */
	public function sanitize_subtypes( $subtypes, $request, $parameter ) {
		$subtypes = wp_parse_slug_list( $subtypes );

		$subtypes = rest_parse_request_arg( $subtypes, $request, $parameter );
		if ( is_wp_error( $subtypes ) ) {
			return $subtypes;
		}

		// 'any' overrides any other subtype.
		if ( in_array( self::TYPE_ANY, $subtypes, true ) ) {
			return array( self::TYPE_ANY );
		}

		$handler = $this->get_search_handler( $request );
		if ( is_wp_error( $handler ) ) {
			return $handler;
		}

		return array_intersect( $subtypes, $handler->get_subtypes() );
	}

	/**
	 * Gets the search handler to handle the current request.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Search_Handler|WP_Error Search handler for the request type, or WP_Error object on failure.
	 */
	protected function get_search_handler( $request ) {
		$type = $request->get_param( self::PROP_TYPE );

		if ( ! $type || ! is_string( $type ) || ! isset( $this->search_handlers[ $type ] ) ) {
			return new WP_Error(
				'rest_search_invalid_type',
				__( 'Invalid type parameter.' ),
				array( 'status' => 400 )
			);
		}

		return $this->search_handlers[ $type ];
	}
}
endpoints/class-wp-rest-blocks-controller.php000064400000006152152222510010015412 0ustar00<?php
/**
 * Synced patterns REST API: WP_REST_Blocks_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Controller which provides a REST endpoint for the editor to read, create,
 * edit, and delete synced patterns (formerly called reusable blocks).
 * Patterns are stored as posts with the wp_block post type.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Posts_Controller
 * @see WP_REST_Controller
 */
class WP_REST_Blocks_Controller extends WP_REST_Posts_Controller {

	/**
	 * Checks if a pattern can be read.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_Post $post Post object that backs the block.
	 * @return bool Whether the pattern can be read.
	 */
	public function check_read_permission( $post ) {
		// By default the read_post capability is mapped to edit_posts.
		if ( ! current_user_can( 'read_post', $post->ID ) ) {
			return false;
		}

		return parent::check_read_permission( $post );
	}

	/**
	 * Filters a response based on the context defined in the schema.
	 *
	 * @since 5.0.0
	 * @since 6.3.0 Adds the `wp_pattern_sync_status` postmeta property to the top level of response.
	 *
	 * @param array  $data    Response data to filter.
	 * @param string $context Context defined in the schema.
	 * @return array Filtered response.
	 */
	public function filter_response_by_context( $data, $context ) {
		$data = parent::filter_response_by_context( $data, $context );

		/*
		 * Remove `title.rendered` and `content.rendered` from the response.
		 * It doesn't make sense for a pattern to have rendered content on its own,
		 * since rendering a block requires it to be inside a post or a page.
		 */
		unset( $data['title']['rendered'] );
		unset( $data['content']['rendered'] );

		// Add the core wp_pattern_sync_status meta as top level property to the response.
		$data['wp_pattern_sync_status'] = isset( $data['meta']['wp_pattern_sync_status'] ) ? $data['meta']['wp_pattern_sync_status'] : '';
		unset( $data['meta']['wp_pattern_sync_status'] );
		return $data;
	}

	/**
	 * Retrieves the pattern's schema, conforming to JSON Schema.
	 *
	 * @since 5.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = parent::get_item_schema();

		/*
		 * Allow all contexts to access `title.raw` and `content.raw`.
		 * Clients always need the raw markup of a pattern to do anything useful,
		 * e.g. parse it or display it in an editor.
		 */
		$schema['properties']['title']['properties']['raw']['context']   = array( 'view', 'edit' );
		$schema['properties']['content']['properties']['raw']['context'] = array( 'view', 'edit' );

		/*
		 * Remove `title.rendered` and `content.rendered` from the schema.
		 * It doesn't make sense for a pattern to have rendered content on its own,
		 * since rendering a block requires it to be inside a post or a page.
		 */
		unset( $schema['properties']['title']['properties']['rendered'] );
		unset( $schema['properties']['content']['properties']['rendered'] );

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-autosaves-controller.php000064400000035606152222510010016155 0ustar00<?php
/**
 * REST API: WP_REST_Autosaves_Controller class.
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Core class used to access autosaves via the REST API.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Revisions_Controller
 * @see WP_REST_Controller
 */
class WP_REST_Autosaves_Controller extends WP_REST_Revisions_Controller {

	/**
	 * Parent post type.
	 *
	 * @since 5.0.0
	 * @var string
	 */
	private $parent_post_type;

	/**
	 * Parent post controller.
	 *
	 * @since 5.0.0
	 * @var WP_REST_Controller
	 */
	private $parent_controller;

	/**
	 * Revision controller.
	 *
	 * @since 5.0.0
	 * @var WP_REST_Revisions_Controller
	 */
	private $revisions_controller;

	/**
	 * The base of the parent controller's route.
	 *
	 * @since 5.0.0
	 * @var string
	 */
	private $parent_base;

	/**
	 * Constructor.
	 *
	 * @since 5.0.0
	 *
	 * @param string $parent_post_type Post type of the parent.
	 */
	public function __construct( $parent_post_type ) {
		$this->parent_post_type = $parent_post_type;
		$post_type_object       = get_post_type_object( $parent_post_type );
		$parent_controller      = $post_type_object->get_rest_controller();

		if ( ! $parent_controller ) {
			$parent_controller = new WP_REST_Posts_Controller( $parent_post_type );
		}

		$this->parent_controller = $parent_controller;

		$revisions_controller = $post_type_object->get_revisions_rest_controller();
		if ( ! $revisions_controller ) {
			$revisions_controller = new WP_REST_Revisions_Controller( $parent_post_type );
		}
		$this->revisions_controller = $revisions_controller;
		$this->rest_base            = 'autosaves';
		$this->parent_base          = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
		$this->namespace            = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
	}

	/**
	 * Registers the routes for autosaves.
	 *
	 * @since 5.0.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<id>[\d]+)/' . $this->rest_base,
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the autosave.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->parent_controller->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the autosave.' ),
						'type'        => 'integer',
					),
					'id'     => array(
						'description' => __( 'The ID for the autosave.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this->revisions_controller, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Get the parent post.
	 *
	 * @since 5.0.0
	 *
	 * @param int $parent_id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_parent( $parent_id ) {
		return $this->revisions_controller->get_parent( $parent_id );
	}

	/**
	 * Checks if a given request has access to get autosaves.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$parent = $this->get_parent( $request['id'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		if ( ! current_user_can( 'edit_post', $parent->ID ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to view autosaves of this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Checks if a given request has access to create an autosave revision.
	 *
	 * Autosave revisions inherit permissions from the parent post,
	 * check if the current user has permission to edit the post.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create the item, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		$id = $request->get_param( 'id' );

		if ( empty( $id ) ) {
			return new WP_Error(
				'rest_post_invalid_id',
				__( 'Invalid item ID.' ),
				array( 'status' => 404 )
			);
		}

		return $this->parent_controller->update_item_permissions_check( $request );
	}

	/**
	 * Creates, updates or deletes an autosave revision.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {

		if ( ! defined( 'WP_RUN_CORE_TESTS' ) && ! defined( 'DOING_AUTOSAVE' ) ) {
			define( 'DOING_AUTOSAVE', true );
		}

		$post = $this->get_parent( $request['id'] );

		if ( is_wp_error( $post ) ) {
			return $post;
		}

		$prepared_post     = $this->parent_controller->prepare_item_for_database( $request );
		$prepared_post->ID = $post->ID;
		$user_id           = get_current_user_id();

		// We need to check post lock to ensure the original author didn't leave their browser tab open.
		if ( ! function_exists( 'wp_check_post_lock' ) ) {
			require_once ABSPATH . 'wp-admin/includes/post.php';
		}

		$post_lock = wp_check_post_lock( $post->ID );
		$is_draft  = 'draft' === $post->post_status || 'auto-draft' === $post->post_status;

		if ( $is_draft && (int) $post->post_author === $user_id && ! $post_lock ) {
			/*
			 * Draft posts for the same author: autosaving updates the post and does not create a revision.
			 * Convert the post object to an array and add slashes, wp_update_post() expects escaped array.
			 */
			$autosave_id = wp_update_post( wp_slash( (array) $prepared_post ), true );
		} else {
			// Non-draft posts: create or update the post autosave. Pass the meta data.
			$autosave_id = $this->create_post_autosave( (array) $prepared_post, (array) $request->get_param( 'meta' ) );
		}

		if ( is_wp_error( $autosave_id ) ) {
			return $autosave_id;
		}

		$autosave = get_post( $autosave_id );
		$request->set_param( 'context', 'edit' );

		$response = $this->prepare_item_for_response( $autosave, $request );
		$response = rest_ensure_response( $response );

		return $response;
	}

	/**
	 * Get the autosave, if the ID is valid.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_Post|WP_Error Revision post object if ID is valid, WP_Error otherwise.
	 */
	public function get_item( $request ) {
		$parent_id = (int) $request->get_param( 'parent' );

		if ( $parent_id <= 0 ) {
			return new WP_Error(
				'rest_post_invalid_id',
				__( 'Invalid post parent ID.' ),
				array( 'status' => 404 )
			);
		}

		$autosave = wp_get_post_autosave( $parent_id );

		if ( ! $autosave ) {
			return new WP_Error(
				'rest_post_no_autosave',
				__( 'There is no autosave revision for this post.' ),
				array( 'status' => 404 )
			);
		}

		$response = $this->prepare_item_for_response( $autosave, $request );
		return $response;
	}

	/**
	 * Gets a collection of autosaves using wp_get_post_autosave.
	 *
	 * Contains the user's autosave, for empty if it doesn't exist.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$parent = $this->get_parent( $request['id'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}
		$response  = array();
		$parent_id = $parent->ID;
		$revisions = wp_get_post_revisions( $parent_id, array( 'check_enabled' => false ) );

		foreach ( $revisions as $revision ) {
			if ( str_contains( $revision->post_name, "{$parent_id}-autosave" ) ) {
				$data       = $this->prepare_item_for_response( $revision, $request );
				$response[] = $this->prepare_response_for_collection( $data );
			}
		}

		return rest_ensure_response( $response );
	}


	/**
	 * Retrieves the autosave's schema, conforming to JSON Schema.
	 *
	 * @since 5.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = $this->revisions_controller->get_item_schema();

		$schema['properties']['preview_link'] = array(
			'description' => __( 'Preview link for the post.' ),
			'type'        => 'string',
			'format'      => 'uri',
			'context'     => array( 'edit' ),
			'readonly'    => true,
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Creates autosave for the specified post.
	 *
	 * From wp-admin/post.php.
	 *
	 * @since 5.0.0
	 * @since 6.4.0 The `$meta` parameter was added.
	 *
	 * @param array $post_data Associative array containing the post data.
	 * @param array $meta      Associative array containing the post meta data.
	 * @return mixed The autosave revision ID or WP_Error.
	 */
	public function create_post_autosave( $post_data, array $meta = array() ) {

		$post_id = (int) $post_data['ID'];
		$post    = get_post( $post_id );

		if ( is_wp_error( $post ) ) {
			return $post;
		}

		// Only create an autosave when it is different from the saved post.
		$autosave_is_different = false;
		$new_autosave          = _wp_post_revision_data( $post_data, true );

		foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
			if ( normalize_whitespace( $new_autosave[ $field ] ) !== normalize_whitespace( $post->$field ) ) {
				$autosave_is_different = true;
				break;
			}
		}

		// Check if meta values have changed.
		if ( ! empty( $meta ) ) {
			$revisioned_meta_keys = wp_post_revision_meta_keys( $post->post_type );
			foreach ( $revisioned_meta_keys as $meta_key ) {
				// get_metadata_raw is used to avoid retrieving the default value.
				$old_meta = get_metadata_raw( 'post', $post_id, $meta_key, true );
				$new_meta = isset( $meta[ $meta_key ] ) ? $meta[ $meta_key ] : '';

				if ( $new_meta !== $old_meta ) {
					$autosave_is_different = true;
					break;
				}
			}
		}

		$user_id = get_current_user_id();

		// Store one autosave per author. If there is already an autosave, overwrite it.
		$old_autosave = wp_get_post_autosave( $post_id, $user_id );

		if ( ! $autosave_is_different && $old_autosave ) {
			// Nothing to save, return the existing autosave.
			return $old_autosave->ID;
		}

		if ( $old_autosave ) {
			$new_autosave['ID']          = $old_autosave->ID;
			$new_autosave['post_author'] = $user_id;

			/** This filter is documented in wp-admin/post.php */
			do_action( 'wp_creating_autosave', $new_autosave );

			// wp_update_post() expects escaped array.
			$revision_id = wp_update_post( wp_slash( $new_autosave ) );
		} else {
			// Create the new autosave as a special post revision.
			$revision_id = _wp_put_post_revision( $post_data, true );
		}

		if ( is_wp_error( $revision_id ) || 0 === $revision_id ) {
			return $revision_id;
		}

		// Attached any passed meta values that have revisions enabled.
		if ( ! empty( $meta ) ) {
			foreach ( $revisioned_meta_keys as $meta_key ) {
				if ( isset( $meta[ $meta_key ] ) ) {
					update_metadata( 'post', $revision_id, $meta_key, wp_slash( $meta[ $meta_key ] ) );
				}
			}
		}

		return $revision_id;
	}

	/**
	 * Prepares the revision for the REST response.
	 *
	 * @since 5.0.0
	 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_Post         $item    Post revision object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$post = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php */
			return apply_filters( 'rest_prepare_autosave', new WP_REST_Response( array() ), $post, $request );
		}
		$response = $this->revisions_controller->prepare_item_for_response( $post, $request );
		$fields   = $this->get_fields_for_response( $request );

		if ( in_array( 'preview_link', $fields, true ) ) {
			$parent_id          = wp_is_post_autosave( $post );
			$preview_post_id    = false === $parent_id ? $post->ID : $parent_id;
			$preview_query_args = array();

			if ( false !== $parent_id ) {
				$preview_query_args['preview_id']    = $parent_id;
				$preview_query_args['preview_nonce'] = wp_create_nonce( 'post_preview_' . $parent_id );
			}

			$response->data['preview_link'] = get_preview_post_link( $preview_post_id, $preview_query_args );
		}

		$context        = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$response->data = $this->add_additional_fields_to_object( $response->data, $request );
		$response->data = $this->filter_response_by_context( $response->data, $context );

		/**
		 * Filters a revision returned from the REST API.
		 *
		 * Allows modification of the revision right before it is returned.
		 *
		 * @since 5.0.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     The original revision object.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_autosave', $response, $post, $request );
	}

	/**
	 * Retrieves the query params for the autosaves collection.
	 *
	 * @since 5.0.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}
}
endpoints/class-wp-rest-navigation-fallback-controller.php000064400000012063152222510010020027 0ustar00<?php
/**
 * WP_REST_Navigation_Fallback_Controller class
 *
 * REST Controller to create/fetch a fallback Navigation Menu.
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.3.0
 */

/**
 * REST Controller to fetch a fallback Navigation Block Menu. If needed it creates one.
 *
 * @since 6.3.0
 */
class WP_REST_Navigation_Fallback_Controller extends WP_REST_Controller {

	/**
	 * The Post Type for the Controller
	 *
	 * @since 6.3.0
	 *
	 * @var string
	 */
	private $post_type;

	/**
	 * Constructs the controller.
	 *
	 * @since 6.3.0
	 */
	public function __construct() {
		$this->namespace = 'wp-block-editor/v1';
		$this->rest_base = 'navigation-fallback';
		$this->post_type = 'wp_navigation';
	}

	/**
	 * Registers the controllers routes.
	 *
	 * @since 6.3.0
	 */
	public function register_routes() {

		// Lists a single nav item based on the given id or slug.
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::READABLE ),
				),
				'schema' => array( $this, 'get_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to read fallbacks.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {

		$post_type = get_post_type_object( $this->post_type );

		// Getting fallbacks requires creating and reading `wp_navigation` posts.
		if ( ! current_user_can( $post_type->cap->create_posts ) || ! current_user_can( 'edit_theme_options' ) || ! current_user_can( 'edit_posts' ) ) {
			return new WP_Error(
				'rest_cannot_create',
				__( 'Sorry, you are not allowed to create Navigation Menus as this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'edit' === $request['context'] && ! current_user_can( $post_type->cap->edit_posts ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit Navigation Menus as this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Gets the most appropriate fallback Navigation Menu.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$post = WP_Navigation_Fallback::get_fallback();

		if ( empty( $post ) ) {
			return rest_ensure_response( new WP_Error( 'no_fallback_menu', __( 'No fallback menu found.' ), array( 'status' => 404 ) ) );
		}

		$response = $this->prepare_item_for_response( $post, $request );

		return $response;
	}

	/**
	 * Retrieves the fallbacks' schema, conforming to JSON Schema.
	 *
	 * @since 6.3.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'navigation-fallback',
			'type'       => 'object',
			'properties' => array(
				'id' => array(
					'description' => __( 'The unique identifier for the Navigation Menu.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Matches the post data to the schema we want.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_Post         $item    The wp_navigation Post object whose response is being prepared.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response $response The response data.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$data = array();

		$fields = $this->get_fields_for_response( $request );

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = (int) $item->ID;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $item );
			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Prepares the links for the request.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_Post $post the Navigation Menu post object.
	 * @return array Links for the given request.
	 */
	private function prepare_links( $post ) {
		return array(
			'self' => array(
				'href'       => rest_url( rest_get_route_for_post( $post->ID ) ),
				'embeddable' => true,
			),
		);
	}
}
endpoints/class-wp-rest-attachments-controller.php000064400000151732152222510010016455 0ustar00<?php
/**
 * REST API: WP_REST_Attachments_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core controller used to access attachments via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Posts_Controller
 */
class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller {

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 5.9.0
	 * @var false
	 */
	protected $allow_batch = false;

	/**
	 * Registers the routes for attachments.
	 *
	 * @since 5.3.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		parent::register_routes();
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)/post-process',
			array(
				'methods'             => WP_REST_Server::CREATABLE,
				'callback'            => array( $this, 'post_process_item' ),
				'permission_callback' => array( $this, 'post_process_item_permissions_check' ),
				'args'                => array(
					'id'     => array(
						'description' => __( 'Unique identifier for the attachment.' ),
						'type'        => 'integer',
					),
					'action' => array(
						'type'     => 'string',
						'enum'     => array( 'create-image-subsizes' ),
						'required' => true,
					),
				),
			)
		);
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)/edit',
			array(
				'methods'             => WP_REST_Server::CREATABLE,
				'callback'            => array( $this, 'edit_media_item' ),
				'permission_callback' => array( $this, 'edit_media_item_permissions_check' ),
				'args'                => $this->get_edit_media_item_args(),
			)
		);
	}

	/**
	 * Determines the allowed query_vars for a get_items() response and
	 * prepares for WP_Query.
	 *
	 * @since 4.7.0
	 * @since 6.9.0 Extends the `media_type` and `mime_type` request arguments to support array values.
	 *
	 * @param array           $prepared_args Optional. Array of prepared arguments. Default empty array.
	 * @param WP_REST_Request $request       Optional. Request to prepare items for.
	 * @return array Array of query arguments.
	 */
	protected function prepare_items_query( $prepared_args = array(), $request = null ) {
		$query_args = parent::prepare_items_query( $prepared_args, $request );

		if ( empty( $query_args['post_status'] ) ) {
			$query_args['post_status'] = 'inherit';
		}

		$all_mime_types = array();
		$media_types    = $this->get_media_types();

		if ( ! empty( $request['media_type'] ) && is_array( $request['media_type'] ) ) {
			foreach ( $request['media_type'] as $type ) {
				if ( isset( $media_types[ $type ] ) ) {
					$all_mime_types = array_merge( $all_mime_types, $media_types[ $type ] );
				}
			}
		}

		if ( ! empty( $request['mime_type'] ) && is_array( $request['mime_type'] ) ) {
			foreach ( $request['mime_type'] as $mime_type ) {
				$parts = explode( '/', $mime_type );
				if ( isset( $media_types[ $parts[0] ] ) && in_array( $mime_type, $media_types[ $parts[0] ], true ) ) {
					$all_mime_types[] = $mime_type;
				}
			}
		}

		if ( ! empty( $all_mime_types ) ) {
			$query_args['post_mime_type'] = array_values( array_unique( $all_mime_types ) );
		}

		// Filter query clauses to include filenames.
		if ( isset( $query_args['s'] ) ) {
			add_filter( 'wp_allow_query_attachment_by_filename', '__return_true' );
		}

		return $query_args;
	}

	/**
	 * Checks if a given request has access to create an attachment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error Boolean true if the attachment may be created, or a WP_Error if not.
	 */
	public function create_item_permissions_check( $request ) {
		$ret = parent::create_item_permissions_check( $request );

		if ( ! $ret || is_wp_error( $ret ) ) {
			return $ret;
		}

		if ( ! current_user_can( 'upload_files' ) ) {
			return new WP_Error(
				'rest_cannot_create',
				__( 'Sorry, you are not allowed to upload media on this site.' ),
				array( 'status' => 400 )
			);
		}

		// Attaching media to a post requires ability to edit said post.
		if ( ! empty( $request['post'] ) && ! current_user_can( 'edit_post', (int) $request['post'] ) ) {
			return new WP_Error(
				'rest_cannot_edit',
				__( 'Sorry, you are not allowed to upload media to this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		$files = $request->get_file_params();

		/**
		 * Filter whether the server should prevent uploads for image types it doesn't support. Default true.
		 *
		 * Developers can use this filter to enable uploads of certain image types. By default image types that are not
		 * supported by the server are prevented from being uploaded.
		 *
		 * @since 6.8.0
		 *
		 * @param bool        $check_mime Whether to prevent uploads of unsupported image types.
		 * @param string|null $mime_type  The mime type of the file being uploaded (if available).
		 */
		$prevent_unsupported_uploads = apply_filters( 'wp_prevent_unsupported_mime_type_uploads', true, isset( $files['file']['type'] ) ? $files['file']['type'] : null );

		// If the upload is an image, check if the server can handle the mime type.
		if (
			$prevent_unsupported_uploads &&
			isset( $files['file']['type'] ) &&
			str_starts_with( $files['file']['type'], 'image/' )
		) {
			// List of non-resizable image formats.
			$editor_non_resizable_formats = array(
				'image/svg+xml',
			);

			// Check if the image editor supports the type or ignore if it isn't a format resizable by an editor.
			if (
				! in_array( $files['file']['type'], $editor_non_resizable_formats, true ) &&
				! wp_image_editor_supports( array( 'mime_type' => $files['file']['type'] ) )
			) {
				return new WP_Error(
					'rest_upload_image_type_not_supported',
					__( 'The web server cannot generate responsive image sizes for this image. Convert it to JPEG or PNG before uploading.' ),
					array( 'status' => 400 )
				);
			}
		}

		return true;
	}

	/**
	 * Creates a single attachment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( ! empty( $request['post'] ) && in_array( get_post_type( $request['post'] ), array( 'revision', 'attachment' ), true ) ) {
			return new WP_Error(
				'rest_invalid_param',
				__( 'Invalid parent type.' ),
				array( 'status' => 400 )
			);
		}

		$insert = $this->insert_attachment( $request );

		if ( is_wp_error( $insert ) ) {
			return $insert;
		}

		$schema = $this->get_item_schema();

		// Extract by name.
		$attachment_id = $insert['attachment_id'];
		$file          = $insert['file'];

		if ( isset( $request['alt_text'] ) ) {
			update_post_meta( $attachment_id, '_wp_attachment_image_alt', sanitize_text_field( $request['alt_text'] ) );
		}

		if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
			$thumbnail_update = $this->handle_featured_media( $request['featured_media'], $attachment_id );

			if ( is_wp_error( $thumbnail_update ) ) {
				return $thumbnail_update;
			}
		}

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $attachment_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$attachment    = get_post( $attachment_id );
		$fields_update = $this->update_additional_fields_for_object( $attachment, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$terms_update = $this->handle_terms( $attachment_id, $request );

		if ( is_wp_error( $terms_update ) ) {
			return $terms_update;
		}

		$request->set_param( 'context', 'edit' );

		/**
		 * Fires after a single attachment is completely created or updated via the REST API.
		 *
		 * @since 5.0.0
		 *
		 * @param WP_Post         $attachment Inserted or updated attachment object.
		 * @param WP_REST_Request $request    Request object.
		 * @param bool            $creating   True when creating an attachment, false when updating.
		 */
		do_action( 'rest_after_insert_attachment', $attachment, $request, true );

		wp_after_insert_post( $attachment, false, null );

		if ( wp_is_serving_rest_request() ) {
			/*
			 * Set a custom header with the attachment_id.
			 * Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.
			 */
			header( 'X-WP-Upload-Attachment-ID: ' . $attachment_id );
		}

		// Include media and image functions to get access to wp_generate_attachment_metadata().
		require_once ABSPATH . 'wp-admin/includes/media.php';
		require_once ABSPATH . 'wp-admin/includes/image.php';

		/*
		 * Post-process the upload (create image sub-sizes, make PDF thumbnails, etc.) and insert attachment meta.
		 * At this point the server may run out of resources and post-processing of uploaded images may fail.
		 */
		wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $file ) );

		$response = $this->prepare_item_for_response( $attachment, $request );
		$response = rest_ensure_response( $response );
		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $attachment_id ) ) );

		return $response;
	}

	/**
	 * Inserts the attachment post in the database. Does not update the attachment meta.
	 *
	 * @since 5.3.0
	 *
	 * @param WP_REST_Request $request
	 * @return array|WP_Error
	 */
	protected function insert_attachment( $request ) {
		// Get the file via $_FILES or raw data.
		$files   = $request->get_file_params();
		$headers = $request->get_headers();

		$time = null;

		// Matches logic in media_handle_upload().
		if ( ! empty( $request['post'] ) ) {
			$post = get_post( $request['post'] );
			// The post date doesn't usually matter for pages, so don't backdate this upload.
			if ( $post && 'page' !== $post->post_type && substr( $post->post_date, 0, 4 ) > 0 ) {
				$time = $post->post_date;
			}
		}

		if ( ! empty( $files ) ) {
			$file = $this->upload_from_file( $files, $headers, $time );
		} else {
			$file = $this->upload_from_data( $request->get_body(), $headers, $time );
		}

		if ( is_wp_error( $file ) ) {
			return $file;
		}

		$name       = wp_basename( $file['file'] );
		$name_parts = pathinfo( $name );
		$name       = trim( substr( $name, 0, -( 1 + strlen( $name_parts['extension'] ) ) ) );

		$url  = $file['url'];
		$type = $file['type'];
		$file = $file['file'];

		// Include image functions to get access to wp_read_image_metadata().
		require_once ABSPATH . 'wp-admin/includes/image.php';

		// Use image exif/iptc data for title and caption defaults if possible.
		$image_meta = wp_read_image_metadata( $file );

		if ( ! empty( $image_meta ) ) {
			if ( empty( $request['title'] ) && trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) ) {
				$request['title'] = $image_meta['title'];
			}

			if ( empty( $request['caption'] ) && trim( $image_meta['caption'] ) ) {
				$request['caption'] = $image_meta['caption'];
			}
		}

		$attachment = $this->prepare_item_for_database( $request );

		$attachment->post_mime_type = $type;
		$attachment->guid           = $url;

		// If the title was not set, use the original filename.
		if ( empty( $attachment->post_title ) && ! empty( $files['file']['name'] ) ) {
			// Remove the file extension (after the last `.`)
			$tmp_title = substr( $files['file']['name'], 0, strrpos( $files['file']['name'], '.' ) );

			if ( ! empty( $tmp_title ) ) {
				$attachment->post_title = $tmp_title;
			}
		}

		// Fall back to the original approach.
		if ( empty( $attachment->post_title ) ) {
			$attachment->post_title = preg_replace( '/\.[^.]+$/', '', wp_basename( $file ) );
		}

		// $post_parent is inherited from $attachment['post_parent'].
		$id = wp_insert_attachment( wp_slash( (array) $attachment ), $file, 0, true, false );

		if ( is_wp_error( $id ) ) {
			if ( 'db_update_error' === $id->get_error_code() ) {
				$id->add_data( array( 'status' => 500 ) );
			} else {
				$id->add_data( array( 'status' => 400 ) );
			}

			return $id;
		}

		$attachment = get_post( $id );

		/**
		 * Fires after a single attachment is created or updated via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Post         $attachment Inserted or updated attachment object.
		 * @param WP_REST_Request $request    The request sent to the API.
		 * @param bool            $creating   True when creating an attachment, false when updating.
		 */
		do_action( 'rest_insert_attachment', $attachment, $request, true );

		return array(
			'attachment_id' => $id,
			'file'          => $file,
		);
	}

	/**
	 * Determines the featured media based on a request param.
	 *
	 * @since 6.5.0
	 *
	 * @param int $featured_media Featured Media ID.
	 * @param int $post_id        Post ID.
	 * @return bool|WP_Error Whether the post thumbnail was successfully deleted, otherwise WP_Error.
	 */
	protected function handle_featured_media( $featured_media, $post_id ) {
		$post_type         = get_post_type( $post_id );
		$thumbnail_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );

		// Similar check as in wp_insert_post().
		if ( ! $thumbnail_support && get_post_mime_type( $post_id ) ) {
			if ( wp_attachment_is( 'audio', $post_id ) ) {
				$thumbnail_support = post_type_supports( 'attachment:audio', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:audio' );
			} elseif ( wp_attachment_is( 'video', $post_id ) ) {
				$thumbnail_support = post_type_supports( 'attachment:video', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:video' );
			}
		}

		if ( $thumbnail_support ) {
			return parent::handle_featured_media( $featured_media, $post_id );
		}

		return new WP_Error(
			'rest_no_featured_media',
			sprintf(
				/* translators: %s: attachment mime type */
				__( 'This site does not support post thumbnails on attachments with MIME type %s.' ),
				get_post_mime_type( $post_id )
			),
			array( 'status' => 400 )
		);
	}

	/**
	 * Updates a single attachment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
	 */
	public function update_item( $request ) {
		if ( ! empty( $request['post'] ) && in_array( get_post_type( $request['post'] ), array( 'revision', 'attachment' ), true ) ) {
			return new WP_Error(
				'rest_invalid_param',
				__( 'Invalid parent type.' ),
				array( 'status' => 400 )
			);
		}

		$attachment_before = get_post( $request['id'] );
		$response          = parent::update_item( $request );

		if ( is_wp_error( $response ) ) {
			return $response;
		}

		$response = rest_ensure_response( $response );
		$data     = $response->get_data();

		if ( isset( $request['alt_text'] ) ) {
			update_post_meta( $data['id'], '_wp_attachment_image_alt', $request['alt_text'] );
		}

		$attachment = get_post( $request['id'] );

		if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
			$thumbnail_update = $this->handle_featured_media( $request['featured_media'], $attachment->ID );

			if ( is_wp_error( $thumbnail_update ) ) {
				return $thumbnail_update;
			}
		}

		$fields_update = $this->update_additional_fields_for_object( $attachment, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php */
		do_action( 'rest_after_insert_attachment', $attachment, $request, false );

		wp_after_insert_post( $attachment, true, $attachment_before );

		$response = $this->prepare_item_for_response( $attachment, $request );
		$response = rest_ensure_response( $response );

		return $response;
	}

	/**
	 * Performs post-processing on an attachment.
	 *
	 * @since 5.3.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
	 */
	public function post_process_item( $request ) {
		switch ( $request['action'] ) {
			case 'create-image-subsizes':
				require_once ABSPATH . 'wp-admin/includes/image.php';
				wp_update_image_subsizes( $request['id'] );
				break;
		}

		$request['context'] = 'edit';

		return $this->prepare_item_for_response( get_post( $request['id'] ), $request );
	}

	/**
	 * Checks if a given request can perform post-processing on an attachment.
	 *
	 * @since 5.3.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function post_process_item_permissions_check( $request ) {
		return $this->update_item_permissions_check( $request );
	}

	/**
	 * Checks if a given request has access to editing media.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function edit_media_item_permissions_check( $request ) {
		if ( ! current_user_can( 'upload_files' ) ) {
			return new WP_Error(
				'rest_cannot_edit_image',
				__( 'Sorry, you are not allowed to upload media on this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return $this->update_item_permissions_check( $request );
	}

	/**
	 * Applies edits to a media item and creates a new attachment record.
	 *
	 * @since 5.5.0
	 * @since 6.9.0 Adds flips capability and editable fields for the newly-created attachment post.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, WP_Error object on failure.
	 */
	public function edit_media_item( $request ) {
		require_once ABSPATH . 'wp-admin/includes/image.php';

		$attachment_id = $request['id'];

		// This also confirms the attachment is an image.
		$image_file = wp_get_original_image_path( $attachment_id );
		$image_meta = wp_get_attachment_metadata( $attachment_id );

		if (
			! $image_meta ||
			! $image_file ||
			! wp_image_file_matches_image_meta( $request['src'], $image_meta, $attachment_id )
		) {
			return new WP_Error(
				'rest_unknown_attachment',
				__( 'Unable to get meta information for file.' ),
				array( 'status' => 404 )
			);
		}

		$supported_types = array( 'image/jpeg', 'image/png', 'image/gif', 'image/webp', 'image/avif', 'image/heic' );
		$mime_type       = get_post_mime_type( $attachment_id );
		if ( ! in_array( $mime_type, $supported_types, true ) ) {
			return new WP_Error(
				'rest_cannot_edit_file_type',
				__( 'This type of file cannot be edited.' ),
				array( 'status' => 400 )
			);
		}

		// The `modifiers` param takes precedence over the older format.
		if ( isset( $request['modifiers'] ) ) {
			$modifiers = $request['modifiers'];
		} else {
			$modifiers = array();

			if ( isset( $request['flip']['horizontal'] ) || isset( $request['flip']['vertical'] ) ) {
				$flip_args = array(
					'vertical'   => isset( $request['flip']['vertical'] ) ? (bool) $request['flip']['vertical'] : false,
					'horizontal' => isset( $request['flip']['horizontal'] ) ? (bool) $request['flip']['horizontal'] : false,
				);

				$modifiers[] = array(
					'type' => 'flip',
					'args' => array(
						'flip' => $flip_args,
					),
				);
			}

			if ( ! empty( $request['rotation'] ) ) {
				$modifiers[] = array(
					'type' => 'rotate',
					'args' => array(
						'angle' => $request['rotation'],
					),
				);
			}

			if ( isset( $request['x'], $request['y'], $request['width'], $request['height'] ) ) {
				$modifiers[] = array(
					'type' => 'crop',
					'args' => array(
						'left'   => $request['x'],
						'top'    => $request['y'],
						'width'  => $request['width'],
						'height' => $request['height'],
					),
				);
			}

			if ( 0 === count( $modifiers ) ) {
				return new WP_Error(
					'rest_image_not_edited',
					__( 'The image was not edited. Edit the image before applying the changes.' ),
					array( 'status' => 400 )
				);
			}
		}

		/*
		 * If the file doesn't exist, attempt a URL fopen on the src link.
		 * This can occur with certain file replication plugins.
		 * Keep the original file path to get a modified name later.
		 */
		$image_file_to_edit = $image_file;
		if ( ! file_exists( $image_file_to_edit ) ) {
			$image_file_to_edit = _load_image_to_edit_path( $attachment_id );
		}

		$image_editor = wp_get_image_editor( $image_file_to_edit );

		if ( is_wp_error( $image_editor ) ) {
			return new WP_Error(
				'rest_unknown_image_file_type',
				__( 'Unable to edit this image.' ),
				array( 'status' => 500 )
			);
		}

		foreach ( $modifiers as $modifier ) {
			$args = $modifier['args'];
			switch ( $modifier['type'] ) {
				case 'flip':
					/*
					 * Flips the current image.
					 * The vertical flip is the first argument (flip along horizontal axis), the horizontal flip is the second argument (flip along vertical axis).
					 * See: WP_Image_Editor::flip()
					 */
					$result = $image_editor->flip( $args['flip']['vertical'], $args['flip']['horizontal'] );
					if ( is_wp_error( $result ) ) {
						return new WP_Error(
							'rest_image_flip_failed',
							__( 'Unable to flip this image.' ),
							array( 'status' => 500 )
						);
					}
					break;
				case 'rotate':
					// Rotation direction: clockwise vs. counterclockwise.
					$rotate = 0 - $args['angle'];

					if ( 0 !== $rotate ) {
						$result = $image_editor->rotate( $rotate );

						if ( is_wp_error( $result ) ) {
							return new WP_Error(
								'rest_image_rotation_failed',
								__( 'Unable to rotate this image.' ),
								array( 'status' => 500 )
							);
						}
					}

					break;

				case 'crop':
					$size = $image_editor->get_size();

					$crop_x = (int) round( ( $size['width'] * $args['left'] ) / 100.0 );
					$crop_y = (int) round( ( $size['height'] * $args['top'] ) / 100.0 );
					$width  = (int) round( ( $size['width'] * $args['width'] ) / 100.0 );
					$height = (int) round( ( $size['height'] * $args['height'] ) / 100.0 );

					if ( $size['width'] !== $width || $size['height'] !== $height ) {
						$result = $image_editor->crop( $crop_x, $crop_y, $width, $height );

						if ( is_wp_error( $result ) ) {
							return new WP_Error(
								'rest_image_crop_failed',
								__( 'Unable to crop this image.' ),
								array( 'status' => 500 )
							);
						}
					}

					break;

			}
		}

		// Calculate the file name.
		$image_ext  = pathinfo( $image_file, PATHINFO_EXTENSION );
		$image_name = wp_basename( $image_file, ".{$image_ext}" );

		/*
		 * Do not append multiple `-edited` to the file name.
		 * The user may be editing a previously edited image.
		 */
		if ( preg_match( '/-edited(-\d+)?$/', $image_name ) ) {
			// Remove any `-1`, `-2`, etc. `wp_unique_filename()` will add the proper number.
			$image_name = preg_replace( '/-edited(-\d+)?$/', '-edited', $image_name );
		} else {
			// Append `-edited` before the extension.
			$image_name .= '-edited';
		}

		$filename = "{$image_name}.{$image_ext}";

		// Create the uploads subdirectory if needed.
		$uploads = wp_upload_dir();

		// Make the file name unique in the (new) upload directory.
		$filename = wp_unique_filename( $uploads['path'], $filename );

		// Save to disk.
		$saved = $image_editor->save( $uploads['path'] . "/$filename" );

		if ( is_wp_error( $saved ) ) {
			return $saved;
		}

		// Grab original attachment post so we can use it to set defaults.
		$original_attachment_post = get_post( $attachment_id );

		// Check request fields and assign default values.
		$new_attachment_post                 = $this->prepare_item_for_database( $request );
		$new_attachment_post->post_mime_type = $saved['mime-type'];
		$new_attachment_post->guid           = $uploads['url'] . "/$filename";

		// Unset ID so wp_insert_attachment generates a new ID.
		unset( $new_attachment_post->ID );

		// Set new attachment post title with fallbacks.
		$new_attachment_post->post_title = $new_attachment_post->post_title ?? $original_attachment_post->post_title ?? $image_name;

		// Set new attachment post caption (post_excerpt).
		$new_attachment_post->post_excerpt = $new_attachment_post->post_excerpt ?? $original_attachment_post->post_excerpt ?? '';

		// Set new attachment post description (post_content) with fallbacks.
		$new_attachment_post->post_content = $new_attachment_post->post_content ?? $original_attachment_post->post_content ?? '';

		// Set post parent if set in request, else the default of `0` (no parent).
		$new_attachment_post->post_parent = $new_attachment_post->post_parent ?? 0;

		// Insert the new attachment post.
		$new_attachment_id = wp_insert_attachment( wp_slash( (array) $new_attachment_post ), $saved['path'], 0, true );

		if ( is_wp_error( $new_attachment_id ) ) {
			if ( 'db_update_error' === $new_attachment_id->get_error_code() ) {
				$new_attachment_id->add_data( array( 'status' => 500 ) );
			} else {
				$new_attachment_id->add_data( array( 'status' => 400 ) );
			}

			return $new_attachment_id;
		}

		// First, try to use the alt text from the request. If not set, copy the image alt text from the original attachment.
		$image_alt = isset( $request['alt_text'] ) ? sanitize_text_field( $request['alt_text'] ) : get_post_meta( $attachment_id, '_wp_attachment_image_alt', true );

		if ( ! empty( $image_alt ) ) {
			// update_post_meta() expects slashed.
			update_post_meta( $new_attachment_id, '_wp_attachment_image_alt', wp_slash( $image_alt ) );
		}

		if ( wp_is_serving_rest_request() ) {
			/*
			 * Set a custom header with the attachment_id.
			 * Used by the browser/client to resume creating image sub-sizes after a PHP fatal error.
			 */
			header( 'X-WP-Upload-Attachment-ID: ' . $new_attachment_id );
		}

		// Generate image sub-sizes and meta.
		$new_image_meta = wp_generate_attachment_metadata( $new_attachment_id, $saved['path'] );

		// Copy the EXIF metadata from the original attachment if not generated for the edited image.
		if ( isset( $image_meta['image_meta'] ) && isset( $new_image_meta['image_meta'] ) && is_array( $new_image_meta['image_meta'] ) ) {
			// Merge but skip empty values.
			foreach ( (array) $image_meta['image_meta'] as $key => $value ) {
				if ( empty( $new_image_meta['image_meta'][ $key ] ) && ! empty( $value ) ) {
					$new_image_meta['image_meta'][ $key ] = $value;
				}
			}
		}

		// Reset orientation. At this point the image is edited and orientation is correct.
		if ( ! empty( $new_image_meta['image_meta']['orientation'] ) ) {
			$new_image_meta['image_meta']['orientation'] = 1;
		}

		// The attachment_id may change if the site is exported and imported.
		$new_image_meta['parent_image'] = array(
			'attachment_id' => $attachment_id,
			// Path to the originally uploaded image file relative to the uploads directory.
			'file'          => _wp_relative_upload_path( $image_file ),
		);

		/**
		 * Filters the meta data for the new image created by editing an existing image.
		 *
		 * @since 5.5.0
		 *
		 * @param array $new_image_meta    Meta data for the new image.
		 * @param int   $new_attachment_id Attachment post ID for the new image.
		 * @param int   $attachment_id     Attachment post ID for the edited (parent) image.
		 */
		$new_image_meta = apply_filters( 'wp_edited_image_metadata', $new_image_meta, $new_attachment_id, $attachment_id );

		wp_update_attachment_metadata( $new_attachment_id, $new_image_meta );

		$response = $this->prepare_item_for_response( get_post( $new_attachment_id ), $request );
		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $new_attachment_id ) ) );

		return $response;
	}

	/**
	 * Prepares a single attachment for create or update.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass|WP_Error Post object.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_attachment = parent::prepare_item_for_database( $request );

		// Attachment caption (post_excerpt internally).
		if ( isset( $request['caption'] ) ) {
			if ( is_string( $request['caption'] ) ) {
				$prepared_attachment->post_excerpt = $request['caption'];
			} elseif ( isset( $request['caption']['raw'] ) ) {
				$prepared_attachment->post_excerpt = $request['caption']['raw'];
			}
		}

		// Attachment description (post_content internally).
		if ( isset( $request['description'] ) ) {
			if ( is_string( $request['description'] ) ) {
				$prepared_attachment->post_content = $request['description'];
			} elseif ( isset( $request['description']['raw'] ) ) {
				$prepared_attachment->post_content = $request['description']['raw'];
			}
		}

		if ( isset( $request['post'] ) ) {
			$prepared_attachment->post_parent = (int) $request['post'];
		}

		return $prepared_attachment;
	}

	/**
	 * Prepares a single attachment output for response.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_Post         $item    Attachment object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$post = $item;

		$response = parent::prepare_item_for_response( $post, $request );
		$fields   = $this->get_fields_for_response( $request );
		$data     = $response->get_data();

		if ( in_array( 'description', $fields, true ) ) {
			$data['description'] = array(
				'raw'      => $post->post_content,
				/** This filter is documented in wp-includes/post-template.php */
				'rendered' => apply_filters( 'the_content', $post->post_content ),
			);
		}

		if ( in_array( 'caption', $fields, true ) ) {
			/** This filter is documented in wp-includes/post-template.php */
			$caption = apply_filters( 'get_the_excerpt', $post->post_excerpt, $post );

			/** This filter is documented in wp-includes/post-template.php */
			$caption = apply_filters( 'the_excerpt', $caption );

			$data['caption'] = array(
				'raw'      => $post->post_excerpt,
				'rendered' => $caption,
			);
		}

		if ( in_array( 'alt_text', $fields, true ) ) {
			$data['alt_text'] = get_post_meta( $post->ID, '_wp_attachment_image_alt', true );
		}

		if ( in_array( 'media_type', $fields, true ) ) {
			$data['media_type'] = wp_attachment_is_image( $post->ID ) ? 'image' : 'file';
		}

		if ( in_array( 'mime_type', $fields, true ) ) {
			$data['mime_type'] = $post->post_mime_type;
		}

		if ( in_array( 'media_details', $fields, true ) ) {
			$data['media_details'] = wp_get_attachment_metadata( $post->ID );

			// Ensure empty details is an empty object.
			if ( empty( $data['media_details'] ) ) {
				$data['media_details'] = new stdClass();
			} elseif ( ! empty( $data['media_details']['sizes'] ) ) {

				foreach ( $data['media_details']['sizes'] as $size => &$size_data ) {

					if ( isset( $size_data['mime-type'] ) ) {
						$size_data['mime_type'] = $size_data['mime-type'];
						unset( $size_data['mime-type'] );
					}

					// Use the same method image_downsize() does.
					$image_src = wp_get_attachment_image_src( $post->ID, $size );
					if ( ! $image_src ) {
						continue;
					}

					$size_data['source_url'] = $image_src[0];
				}

				$full_src = wp_get_attachment_image_src( $post->ID, 'full' );

				if ( ! empty( $full_src ) ) {
					$data['media_details']['sizes']['full'] = array(
						'file'       => wp_basename( $full_src[0] ),
						'width'      => $full_src[1],
						'height'     => $full_src[2],
						'mime_type'  => $post->post_mime_type,
						'source_url' => $full_src[0],
					);
				}
			} else {
				$data['media_details']['sizes'] = new stdClass();
			}
		}

		if ( in_array( 'post', $fields, true ) ) {
			$data['post'] = ! empty( $post->post_parent ) ? (int) $post->post_parent : null;
		}

		if ( in_array( 'source_url', $fields, true ) ) {
			$data['source_url'] = wp_get_attachment_url( $post->ID );
		}

		if ( in_array( 'missing_image_sizes', $fields, true ) ) {
			require_once ABSPATH . 'wp-admin/includes/image.php';
			$data['missing_image_sizes'] = array_keys( wp_get_missing_image_subsizes( $post->ID ) );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';

		$data = $this->filter_response_by_context( $data, $context );

		$links = $response->get_links();

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		foreach ( $links as $rel => $rel_links ) {
			foreach ( $rel_links as $link ) {
				$response->add_link( $rel, $link['href'], $link['attributes'] );
			}
		}

		/**
		 * Filters an attachment returned from the REST API.
		 *
		 * Allows modification of the attachment right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     The original attachment post.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_attachment', $response, $post, $request );
	}

	/**
	 * Prepares attachment links for the request.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_Post $post Post object.
	 * @return array Links for the given attachment.
	 */
	protected function prepare_links( $post ) {
		$links = parent::prepare_links( $post );

		if ( ! empty( $post->post_parent ) ) {
			$post = get_post( $post->post_parent );

			if ( ! empty( $post ) ) {
				$links['https://api.w.org/attached-to'] = array(
					'href'       => rest_url( rest_get_route_for_post( $post ) ),
					'embeddable' => true,
					'post_type'  => $post->post_type,
					'id'         => $post->ID,
				);
			}
		}

		return $links;
	}

	/**
	 * Retrieves the attachment's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema as an array.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = parent::get_item_schema();

		$schema['properties']['alt_text'] = array(
			'description' => __( 'Alternative text to display when attachment is not displayed.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => 'sanitize_text_field',
			),
		);

		$schema['properties']['caption'] = array(
			'description' => __( 'The attachment caption.' ),
			'type'        => 'object',
			'context'     => array( 'view', 'edit', 'embed' ),
			'arg_options' => array(
				'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
				'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
			),
			'properties'  => array(
				'raw'      => array(
					'description' => __( 'Caption for the attachment, as it exists in the database.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
				),
				'rendered' => array(
					'description' => __( 'HTML caption for the attachment, transformed for display.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
			),
		);

		$schema['properties']['description'] = array(
			'description' => __( 'The attachment description.' ),
			'type'        => 'object',
			'context'     => array( 'view', 'edit' ),
			'arg_options' => array(
				'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
				'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
			),
			'properties'  => array(
				'raw'      => array(
					'description' => __( 'Description for the attachment, as it exists in the database.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
				),
				'rendered' => array(
					'description' => __( 'HTML description for the attachment, transformed for display.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		$schema['properties']['media_type'] = array(
			'description' => __( 'Attachment type.' ),
			'type'        => 'string',
			'enum'        => array( 'image', 'file' ),
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['mime_type'] = array(
			'description' => __( 'The attachment MIME type.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['media_details'] = array(
			'description' => __( 'Details about the media file, specific to its type.' ),
			'type'        => 'object',
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['post'] = array(
			'description' => __( 'The ID for the associated post of the attachment.' ),
			'type'        => 'integer',
			'context'     => array( 'view', 'edit' ),
		);

		$schema['properties']['source_url'] = array(
			'description' => __( 'URL to the original attachment file.' ),
			'type'        => 'string',
			'format'      => 'uri',
			'context'     => array( 'view', 'edit', 'embed' ),
			'readonly'    => true,
		);

		$schema['properties']['missing_image_sizes'] = array(
			'description' => __( 'List of the missing image sizes of the attachment.' ),
			'type'        => 'array',
			'items'       => array( 'type' => 'string' ),
			'context'     => array( 'edit' ),
			'readonly'    => true,
		);

		unset( $schema['properties']['password'] );

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Handles an upload via raw POST data.
	 *
	 * @since 4.7.0
	 * @since 6.6.0 Added the `$time` parameter.
	 *
	 * @param string      $data    Supplied file data.
	 * @param array       $headers HTTP headers from the request.
	 * @param string|null $time    Optional. Time formatted in 'yyyy/mm'. Default null.
	 * @return array|WP_Error Data from wp_handle_sideload().
	 */
	protected function upload_from_data( $data, $headers, $time = null ) {
		if ( empty( $data ) ) {
			return new WP_Error(
				'rest_upload_no_data',
				__( 'No data supplied.' ),
				array( 'status' => 400 )
			);
		}

		if ( empty( $headers['content_type'] ) ) {
			return new WP_Error(
				'rest_upload_no_content_type',
				__( 'No Content-Type supplied.' ),
				array( 'status' => 400 )
			);
		}

		if ( empty( $headers['content_disposition'] ) ) {
			return new WP_Error(
				'rest_upload_no_content_disposition',
				__( 'No Content-Disposition supplied.' ),
				array( 'status' => 400 )
			);
		}

		$filename = self::get_filename_from_disposition( $headers['content_disposition'] );

		if ( empty( $filename ) ) {
			return new WP_Error(
				'rest_upload_invalid_disposition',
				__( 'Invalid Content-Disposition supplied. Content-Disposition needs to be formatted as `attachment; filename="image.png"` or similar.' ),
				array( 'status' => 400 )
			);
		}

		if ( ! empty( $headers['content_md5'] ) ) {
			$content_md5 = array_shift( $headers['content_md5'] );
			$expected    = trim( $content_md5 );
			$actual      = md5( $data );

			if ( $expected !== $actual ) {
				return new WP_Error(
					'rest_upload_hash_mismatch',
					__( 'Content hash did not match expected.' ),
					array( 'status' => 412 )
				);
			}
		}

		// Get the content-type.
		$type = array_shift( $headers['content_type'] );

		// Include filesystem functions to get access to wp_tempnam() and wp_handle_sideload().
		require_once ABSPATH . 'wp-admin/includes/file.php';

		// Save the file.
		$tmpfname = wp_tempnam( $filename );

		$fp = fopen( $tmpfname, 'w+' );

		if ( ! $fp ) {
			return new WP_Error(
				'rest_upload_file_error',
				__( 'Could not open file handle.' ),
				array( 'status' => 500 )
			);
		}

		fwrite( $fp, $data );
		fclose( $fp );

		// Now, sideload it in.
		$file_data = array(
			'error'    => null,
			'tmp_name' => $tmpfname,
			'name'     => $filename,
			'type'     => $type,
		);

		$size_check = self::check_upload_size( $file_data );
		if ( is_wp_error( $size_check ) ) {
			return $size_check;
		}

		$overrides = array(
			'test_form' => false,
		);

		$sideloaded = wp_handle_sideload( $file_data, $overrides, $time );

		if ( isset( $sideloaded['error'] ) ) {
			@unlink( $tmpfname );

			return new WP_Error(
				'rest_upload_sideload_error',
				$sideloaded['error'],
				array( 'status' => 500 )
			);
		}

		return $sideloaded;
	}

	/**
	 * Parses filename from a Content-Disposition header value.
	 *
	 * As per RFC6266:
	 *
	 *     content-disposition = "Content-Disposition" ":"
	 *                            disposition-type *( ";" disposition-parm )
	 *
	 *     disposition-type    = "inline" | "attachment" | disp-ext-type
	 *                         ; case-insensitive
	 *     disp-ext-type       = token
	 *
	 *     disposition-parm    = filename-parm | disp-ext-parm
	 *
	 *     filename-parm       = "filename" "=" value
	 *                         | "filename*" "=" ext-value
	 *
	 *     disp-ext-parm       = token "=" value
	 *                         | ext-token "=" ext-value
	 *     ext-token           = <the characters in token, followed by "*">
	 *
	 * @since 4.7.0
	 *
	 * @link https://tools.ietf.org/html/rfc2388
	 * @link https://tools.ietf.org/html/rfc6266
	 *
	 * @param string[] $disposition_header List of Content-Disposition header values.
	 * @return string|null Filename if available, or null if not found.
	 */
	public static function get_filename_from_disposition( $disposition_header ) {
		// Get the filename.
		$filename = null;

		foreach ( $disposition_header as $value ) {
			$value = trim( $value );

			if ( ! str_contains( $value, ';' ) ) {
				continue;
			}

			list( , $attr_parts ) = explode( ';', $value, 2 );

			$attr_parts = explode( ';', $attr_parts );
			$attributes = array();

			foreach ( $attr_parts as $part ) {
				if ( ! str_contains( $part, '=' ) ) {
					continue;
				}

				list( $key, $value ) = explode( '=', $part, 2 );

				$attributes[ trim( $key ) ] = trim( $value );
			}

			if ( empty( $attributes['filename'] ) ) {
				continue;
			}

			$filename = trim( $attributes['filename'] );

			// Unquote quoted filename, but after trimming.
			if ( str_starts_with( $filename, '"' ) && str_ends_with( $filename, '"' ) ) {
				$filename = substr( $filename, 1, -1 );
			}
		}

		return $filename;
	}

	/**
	 * Retrieves the query params for collections of attachments.
	 *
	 * @since 4.7.0
	 * @since 6.9.0 Extends the `media_type` and `mime_type` request arguments to support array values.
	 *
	 * @return array Query parameters for the attachment collection as an array.
	 */
	public function get_collection_params() {
		$params                            = parent::get_collection_params();
		$params['status']['default']       = 'inherit';
		$params['status']['items']['enum'] = array( 'inherit', 'private', 'trash' );
		$media_types                       = array_keys( $this->get_media_types() );

		$params['media_type'] = array(
			'default'     => null,
			'description' => __( 'Limit result set to attachments of a particular media type or media types.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
				'enum' => $media_types,
			),
		);

		$params['mime_type'] = array(
			'default'     => null,
			'description' => __( 'Limit result set to attachments of a particular MIME type or MIME types.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		return $params;
	}

	/**
	 * Handles an upload via multipart/form-data ($_FILES).
	 *
	 * @since 4.7.0
	 * @since 6.6.0 Added the `$time` parameter.
	 *
	 * @param array       $files   Data from the `$_FILES` superglobal.
	 * @param array       $headers HTTP headers from the request.
	 * @param string|null $time    Optional. Time formatted in 'yyyy/mm'. Default null.
	 * @return array|WP_Error Data from wp_handle_upload().
	 */
	protected function upload_from_file( $files, $headers, $time = null ) {
		if ( empty( $files ) ) {
			return new WP_Error(
				'rest_upload_no_data',
				__( 'No data supplied.' ),
				array( 'status' => 400 )
			);
		}

		// Verify hash, if given.
		if ( ! empty( $headers['content_md5'] ) ) {
			$content_md5 = array_shift( $headers['content_md5'] );
			$expected    = trim( $content_md5 );
			$actual      = md5_file( $files['file']['tmp_name'] );

			if ( $expected !== $actual ) {
				return new WP_Error(
					'rest_upload_hash_mismatch',
					__( 'Content hash did not match expected.' ),
					array( 'status' => 412 )
				);
			}
		}

		// Pass off to WP to handle the actual upload.
		$overrides = array(
			'test_form' => false,
		);

		// Bypasses is_uploaded_file() when running unit tests.
		if ( defined( 'DIR_TESTDATA' ) && DIR_TESTDATA ) {
			$overrides['action'] = 'wp_handle_mock_upload';
		}

		$size_check = self::check_upload_size( $files['file'] );
		if ( is_wp_error( $size_check ) ) {
			return $size_check;
		}

		// Include filesystem functions to get access to wp_handle_upload().
		require_once ABSPATH . 'wp-admin/includes/file.php';

		$file = wp_handle_upload( $files['file'], $overrides, $time );

		if ( isset( $file['error'] ) ) {
			return new WP_Error(
				'rest_upload_unknown_error',
				$file['error'],
				array( 'status' => 500 )
			);
		}

		return $file;
	}

	/**
	 * Retrieves the supported media types.
	 *
	 * Media types are considered the MIME type category.
	 *
	 * @since 4.7.0
	 *
	 * @return array Array of supported media types.
	 */
	protected function get_media_types() {
		$media_types = array();

		foreach ( get_allowed_mime_types() as $mime_type ) {
			$parts = explode( '/', $mime_type );

			if ( ! isset( $media_types[ $parts[0] ] ) ) {
				$media_types[ $parts[0] ] = array();
			}

			$media_types[ $parts[0] ][] = $mime_type;
		}

		return $media_types;
	}

	/**
	 * Determine if uploaded file exceeds space quota on multisite.
	 *
	 * Replicates check_upload_size().
	 *
	 * @since 4.9.8
	 *
	 * @param array $file $_FILES array for a given file.
	 * @return true|WP_Error True if can upload, error for errors.
	 */
	protected function check_upload_size( $file ) {
		if ( ! is_multisite() ) {
			return true;
		}

		if ( get_site_option( 'upload_space_check_disabled' ) ) {
			return true;
		}

		$space_left = get_upload_space_available();

		$file_size = filesize( $file['tmp_name'] );

		if ( $space_left < $file_size ) {
			return new WP_Error(
				'rest_upload_limited_space',
				/* translators: %s: Required disk space in kilobytes. */
				sprintf( __( 'Not enough space to upload. %s KB needed.' ), number_format( ( $file_size - $space_left ) / KB_IN_BYTES ) ),
				array( 'status' => 400 )
			);
		}

		if ( $file_size > ( KB_IN_BYTES * get_site_option( 'fileupload_maxk', 1500 ) ) ) {
			return new WP_Error(
				'rest_upload_file_too_big',
				/* translators: %s: Maximum allowed file size in kilobytes. */
				sprintf( __( 'This file is too big. Files must be less than %s KB in size.' ), get_site_option( 'fileupload_maxk', 1500 ) ),
				array( 'status' => 400 )
			);
		}

		// Include multisite admin functions to get access to upload_is_user_over_quota().
		require_once ABSPATH . 'wp-admin/includes/ms.php';

		if ( upload_is_user_over_quota( false ) ) {
			return new WP_Error(
				'rest_upload_user_quota_exceeded',
				__( 'You have used your space quota. Please delete files before uploading.' ),
				array( 'status' => 400 )
			);
		}

		return true;
	}

	/**
	 * Gets the request args for the edit item route.
	 *
	 * @since 5.5.0
	 * @since 6.9.0 Adds flips capability and editable fields for the newly-created attachment post.
	 *
	 * @return array
	 */
	protected function get_edit_media_item_args() {
		$args = array(
			'src'       => array(
				'description' => __( 'URL to the edited image file.' ),
				'type'        => 'string',
				'format'      => 'uri',
				'required'    => true,
			),
			// The `modifiers` param takes precedence over the older format.
			'modifiers' => array(
				'description' => __( 'Array of image edits.' ),
				'type'        => 'array',
				'minItems'    => 1,
				'items'       => array(
					'description' => __( 'Image edit.' ),
					'type'        => 'object',
					'required'    => array(
						'type',
						'args',
					),
					'oneOf'       => array(
						array(
							'title'      => __( 'Flip' ),
							'properties' => array(
								'type' => array(
									'description' => __( 'Flip type.' ),
									'type'        => 'string',
									'enum'        => array( 'flip' ),
								),
								'args' => array(
									'description' => __( 'Flip arguments.' ),
									'type'        => 'object',
									'required'    => array(
										'flip',
									),
									'properties'  => array(
										'flip' => array(
											'description' => __( 'Flip direction.' ),
											'type'        => 'object',
											'required'    => array(
												'horizontal',
												'vertical',
											),
											'properties'  => array(
												'horizontal' => array(
													'description' => __( 'Whether to flip in the horizontal direction.' ),
													'type' => 'boolean',
												),
												'vertical' => array(
													'description' => __( 'Whether to flip in the vertical direction.' ),
													'type' => 'boolean',
												),
											),
										),
									),
								),
							),
						),
						array(
							'title'      => __( 'Rotation' ),
							'properties' => array(
								'type' => array(
									'description' => __( 'Rotation type.' ),
									'type'        => 'string',
									'enum'        => array( 'rotate' ),
								),
								'args' => array(
									'description' => __( 'Rotation arguments.' ),
									'type'        => 'object',
									'required'    => array(
										'angle',
									),
									'properties'  => array(
										'angle' => array(
											'description' => __( 'Angle to rotate clockwise in degrees.' ),
											'type'        => 'number',
										),
									),
								),
							),
						),
						array(
							'title'      => __( 'Crop' ),
							'properties' => array(
								'type' => array(
									'description' => __( 'Crop type.' ),
									'type'        => 'string',
									'enum'        => array( 'crop' ),
								),
								'args' => array(
									'description' => __( 'Crop arguments.' ),
									'type'        => 'object',
									'required'    => array(
										'left',
										'top',
										'width',
										'height',
									),
									'properties'  => array(
										'left'   => array(
											'description' => __( 'Horizontal position from the left to begin the crop as a percentage of the image width.' ),
											'type'        => 'number',
										),
										'top'    => array(
											'description' => __( 'Vertical position from the top to begin the crop as a percentage of the image height.' ),
											'type'        => 'number',
										),
										'width'  => array(
											'description' => __( 'Width of the crop as a percentage of the image width.' ),
											'type'        => 'number',
										),
										'height' => array(
											'description' => __( 'Height of the crop as a percentage of the image height.' ),
											'type'        => 'number',
										),
									),
								),
							),
						),
					),
				),
			),
			'rotation'  => array(
				'description'      => __( 'The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.' ),
				'type'             => 'integer',
				'minimum'          => 0,
				'exclusiveMinimum' => true,
				'maximum'          => 360,
				'exclusiveMaximum' => true,
			),
			'x'         => array(
				'description' => __( 'As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.' ),
				'type'        => 'number',
				'minimum'     => 0,
				'maximum'     => 100,
			),
			'y'         => array(
				'description' => __( 'As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.' ),
				'type'        => 'number',
				'minimum'     => 0,
				'maximum'     => 100,
			),
			'width'     => array(
				'description' => __( 'As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.' ),
				'type'        => 'number',
				'minimum'     => 0,
				'maximum'     => 100,
			),
			'height'    => array(
				'description' => __( 'As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.' ),
				'type'        => 'number',
				'minimum'     => 0,
				'maximum'     => 100,
			),
		);

		/*
		 * Get the args based on the post schema. This calls `rest_get_endpoint_args_for_schema()`,
		 * which also takes care of sanitization and validation.
		 */
		$update_item_args = $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE );

		if ( isset( $update_item_args['caption'] ) ) {
			$args['caption'] = $update_item_args['caption'];
		}

		if ( isset( $update_item_args['description'] ) ) {
			$args['description'] = $update_item_args['description'];
		}

		if ( isset( $update_item_args['title'] ) ) {
			$args['title'] = $update_item_args['title'];
		}

		if ( isset( $update_item_args['post'] ) ) {
			$args['post'] = $update_item_args['post'];
		}

		if ( isset( $update_item_args['alt_text'] ) ) {
			$args['alt_text'] = $update_item_args['alt_text'];
		}

		return $args;
	}
}
endpoints/class-wp-rest-font-collections-controller.php000064400000024740152222510010017422 0ustar00<?php
/**
 * Rest Font Collections Controller.
 *
 * This file contains the class for the REST API Font Collections Controller.
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since      6.5.0
 */

/**
 * Font Library Controller class.
 *
 * @since 6.5.0
 */
class WP_REST_Font_Collections_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 6.5.0
	 */
	public function __construct() {
		$this->rest_base = 'font-collections';
		$this->namespace = 'wp/v2';
	}

	/**
	 * Registers the routes for the objects of the controller.
	 *
	 * @since 6.5.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),

				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<slug>[\/\w-]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Gets the font collections available.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$collections_all = WP_Font_Library::get_instance()->get_font_collections();

		$page        = $request['page'];
		$per_page    = $request['per_page'];
		$total_items = count( $collections_all );
		$max_pages   = (int) ceil( $total_items / $per_page );

		if ( $page > $max_pages && $total_items > 0 ) {
			return new WP_Error(
				'rest_post_invalid_page_number',
				__( 'The page number requested is larger than the number of pages available.' ),
				array( 'status' => 400 )
			);
		}

		$collections_page = array_slice( $collections_all, ( $page - 1 ) * $per_page, $per_page );

		$is_head_request = $request->is_method( 'HEAD' );

		$items = array();
		foreach ( $collections_page as $collection ) {
			$item = $this->prepare_item_for_response( $collection, $request );

			// If there's an error loading a collection, skip it and continue loading valid collections.
			if ( is_wp_error( $item ) ) {
				continue;
			}

			/*
			 * Skip preparing the response body for HEAD requests.
			 * Cannot exit earlier due to backward compatibility reasons,
			 * as validation occurs in the prepare_item_for_response method.
			 */
			if ( $is_head_request ) {
				continue;
			}

			$item    = $this->prepare_response_for_collection( $item );
			$items[] = $item;
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $items );

		$response->header( 'X-WP-Total', (int) $total_items );
		$response->header( 'X-WP-TotalPages', $max_pages );

		$request_params = $request->get_query_params();
		$collection_url = rest_url( $this->namespace . '/' . $this->rest_base );
		$base           = add_query_arg( urlencode_deep( $request_params ), $collection_url );

		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Gets a font collection.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$slug       = $request->get_param( 'slug' );
		$collection = WP_Font_Library::get_instance()->get_font_collection( $slug );

		if ( ! $collection ) {
			return new WP_Error( 'rest_font_collection_not_found', __( 'Font collection not found.' ), array( 'status' => 404 ) );
		}

		return $this->prepare_item_for_response( $collection, $request );
	}

	/**
	* Prepare a single collection output for response.
	*
	* @since 6.5.0
	*
	* @param WP_Font_Collection $item    Font collection object.
	* @param WP_REST_Request    $request Request object.
	* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	*/
	public function prepare_item_for_response( $item, $request ) {
		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'slug', $fields ) ) {
			$data['slug'] = $item->slug;
		}

		// If any data fields are requested, get the collection data.
		$data_fields = array( 'name', 'description', 'font_families', 'categories' );
		if ( ! empty( array_intersect( $fields, $data_fields ) ) ) {
			$collection_data = $item->get_data();
			if ( is_wp_error( $collection_data ) ) {
				$collection_data->add_data( array( 'status' => 500 ) );
				return $collection_data;
			}

			/**
			 * Don't prepare the response body for HEAD requests.
			 * Can't exit at the beginning of the method due to the potential need to return a WP_Error object.
			 */
			if ( $request->is_method( 'HEAD' ) ) {
				/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php */
				return apply_filters( 'rest_prepare_font_collection', new WP_REST_Response( array() ), $item, $request );
			}

			foreach ( $data_fields as $field ) {
				if ( rest_is_field_included( $field, $fields ) ) {
					$data[ $field ] = $collection_data[ $field ];
				}
			}
		}

		/**
		 * Don't prepare the response body for HEAD requests.
		 * Can't exit at the beginning of the method due to the potential need to return a WP_Error object.
		 */
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php */
			return apply_filters( 'rest_prepare_font_collection', new WP_REST_Response( array() ), $item, $request );
		}

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) ) {
			$links = $this->prepare_links( $item );
			$response->add_links( $links );
		}

		$context        = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$response->data = $this->add_additional_fields_to_object( $response->data, $request );
		$response->data = $this->filter_response_by_context( $response->data, $context );

		/**
		 * Filters the font collection data for a REST API response.
		 *
		 * @since 6.5.0
		 *
		 * @param WP_REST_Response   $response The response object.
		 * @param WP_Font_Collection $item     The font collection object.
		 * @param WP_REST_Request    $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_font_collection', $response, $item, $request );
	}

	/**
	 * Retrieves the font collection's schema, conforming to JSON Schema.
	 *
	 * @since 6.5.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'font-collection',
			'type'       => 'object',
			'properties' => array(
				'slug'          => array(
					'description' => __( 'Unique identifier for the font collection.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'name'          => array(
					'description' => __( 'The name for the font collection.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'description'   => array(
					'description' => __( 'The description for the font collection.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'font_families' => array(
					'description' => __( 'The font families for the font collection.' ),
					'type'        => 'array',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'categories'    => array(
					'description' => __( 'The categories for the font collection.' ),
					'type'        => 'array',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Font_Collection $collection Font collection data
	 * @return array Links for the given font collection.
	 */
	protected function prepare_links( $collection ) {
		return array(
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $collection->slug ) ),
			),
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
		);
	}

	/**
	 * Retrieves the search params for the font collections.
	 *
	 * @since 6.5.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context'] = $this->get_context_param( array( 'default' => 'view' ) );

		unset( $query_params['search'] );

		/**
		 * Filters REST API collection parameters for the font collections controller.
		 *
		 * @since 6.5.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_font_collections_collection_params', $query_params );
	}

	/**
	 * Checks whether the user has permissions to use the Fonts Collections.
	 *
	 * @since 6.5.0
	 *
	 * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
		if ( current_user_can( 'edit_theme_options' ) ) {
			return true;
		}

		return new WP_Error(
			'rest_cannot_read',
			__( 'Sorry, you are not allowed to access font collections.' ),
			array(
				'status' => rest_authorization_required_code(),
			)
		);
	}
}
endpoints/class-wp-rest-abilities-v1-run-controller.php000064400000015573152222510010017237 0ustar00<?php
/**
 * REST API run controller for Abilities API.
 *
 * @package WordPress
 * @subpackage Abilities_API
 * @since 6.9.0
 */

declare( strict_types = 1 );

/**
 * Core controller used to execute abilities via the REST API.
 *
 * @since 6.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Abilities_V1_Run_Controller extends WP_REST_Controller {

	/**
	 * REST API namespace.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $namespace = 'wp-abilities/v1';

	/**
	 * REST API base route.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $rest_base = 'abilities';

	/**
	 * Registers the routes for ability execution.
	 *
	 * @since 6.9.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes(): void {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<name>[a-zA-Z0-9\-\/]+?)/run',
			array(
				'args'   => array(
					'name' => array(
						'description' => __( 'Unique identifier for the ability.' ),
						'type'        => 'string',
						'pattern'     => '^[a-zA-Z0-9\-\/]+$',
					),
				),

				// TODO: We register ALLMETHODS because at route registration time, we don't know which abilities
				// exist or their annotations (`destructive`, `idempotent`, `readonly`). This is due to WordPress
				// load order - routes are registered early, before plugins have registered their abilities.
				// This approach works but could be improved with lazy route registration or a different
				// architecture that allows type-specific routes after abilities are registered.
				// This was the same issue that we ended up seeing with the Feature API.
				array(
					'methods'             => WP_REST_Server::ALLMETHODS,
					'callback'            => array( $this, 'execute_ability' ),
					'permission_callback' => array( $this, 'check_ability_permissions' ),
					'args'                => $this->get_run_args(),
				),
				'schema' => array( $this, 'get_run_schema' ),
			)
		);
	}

	/**
	 * Executes an ability.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function execute_ability( $request ) {
		$ability = wp_get_ability( $request['name'] );
		if ( ! $ability ) {
			return new WP_Error(
				'rest_ability_not_found',
				__( 'Ability not found.' ),
				array( 'status' => 404 )
			);
		}

		$input  = $this->get_input_from_request( $request );
		$result = $ability->execute( $input );
		if ( is_wp_error( $result ) ) {
			return $result;
		}

		return rest_ensure_response( $result );
	}

	/**
	 * Validates if the HTTP method matches the expected method for the ability based on its annotations.
	 *
	 * @since 6.9.0
	 *
	 * @param string                     $request_method The HTTP method of the request.
	 * @param array<string, (null|bool)> $annotations    The ability annotations.
	 * @return true|WP_Error True on success, or WP_Error object on failure.
	 */
	public function validate_request_method( string $request_method, array $annotations ) {
		$expected_method = 'POST';
		if ( ! empty( $annotations['readonly'] ) ) {
			$expected_method = 'GET';
		} elseif ( ! empty( $annotations['destructive'] ) && ! empty( $annotations['idempotent'] ) ) {
			$expected_method = 'DELETE';
		}

		if ( $expected_method === $request_method ) {
			return true;
		}

		$error_message = __( 'Abilities that perform updates require POST method.' );
		if ( 'GET' === $expected_method ) {
			$error_message = __( 'Read-only abilities require GET method.' );
		} elseif ( 'DELETE' === $expected_method ) {
			$error_message = __( 'Abilities that perform destructive actions require DELETE method.' );
		}
		return new WP_Error(
			'rest_ability_invalid_method',
			$error_message,
			array( 'status' => 405 )
		);
	}

	/**
	 * Checks if a given request has permission to execute a specific ability.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has execution permission, WP_Error object otherwise.
	 */
	public function check_ability_permissions( $request ) {
		$ability = wp_get_ability( $request['name'] );
		if ( ! $ability || ! $ability->get_meta_item( 'show_in_rest' ) ) {
			return new WP_Error(
				'rest_ability_not_found',
				__( 'Ability not found.' ),
				array( 'status' => 404 )
			);
		}

		$is_valid = $this->validate_request_method(
			$request->get_method(),
			$ability->get_meta_item( 'annotations' )
		);
		if ( is_wp_error( $is_valid ) ) {
			return $is_valid;
		}

		$input    = $this->get_input_from_request( $request );
		$input    = $ability->normalize_input( $input );
		$is_valid = $ability->validate_input( $input );
		if ( is_wp_error( $is_valid ) ) {
			$is_valid->add_data( array( 'status' => 400 ) );
			return $is_valid;
		}

		$result = $ability->check_permissions( $input );
		if ( is_wp_error( $result ) ) {
			$result->add_data( array( 'status' => rest_authorization_required_code() ) );
			return $result;
		}
		if ( ! $result ) {
			return new WP_Error(
				'rest_ability_cannot_execute',
				__( 'Sorry, you are not allowed to execute this ability.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Extracts input parameters from the request.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request The request object.
	 * @return mixed|null The input parameters.
	 */
	private function get_input_from_request( $request ) {
		if ( in_array( $request->get_method(), array( 'GET', 'DELETE' ), true ) ) {
			// For GET and DELETE requests, look for 'input' query parameter.
			$query_params = $request->get_query_params();
			return $query_params['input'] ?? null;
		}

		// For POST requests, look for 'input' in JSON body.
		$json_params = $request->get_json_params();
		return $json_params['input'] ?? null;
	}

	/**
	 * Retrieves the arguments for ability execution endpoint.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Arguments for the run endpoint.
	 */
	public function get_run_args(): array {
		return array(
			'input' => array(
				'description' => __( 'Input parameters for the ability execution.' ),
				'type'        => array( 'integer', 'number', 'boolean', 'string', 'array', 'object', 'null' ),
				'default'     => null,
			),
		);
	}

	/**
	 * Retrieves the schema for ability execution endpoint.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Schema for the run endpoint.
	 */
	public function get_run_schema(): array {
		return array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'ability-execution',
			'type'       => 'object',
			'properties' => array(
				'result' => array(
					'description' => __( 'The result of the ability execution.' ),
					'type'        => array( 'integer', 'number', 'boolean', 'string', 'array', 'object', 'null' ),
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);
	}
}
endpoints/class-wp-rest-abilities-v1-categories-controller.php000064400000017625152222510010020560 0ustar00<?php
/**
 * REST API ability categories controller for Abilities API.
 *
 * @package WordPress
 * @subpackage Abilities_API
 * @since 6.9.0
 */

declare( strict_types = 1 );

/**
 * Core controller used to access ability categories via the REST API.
 *
 * @since 6.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Abilities_V1_Categories_Controller extends WP_REST_Controller {

	/**
	 * REST API namespace.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $namespace = 'wp-abilities/v1';

	/**
	 * REST API base route.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $rest_base = 'categories';

	/**
	 * Registers the routes for ability categories.
	 *
	 * @since 6.9.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes(): void {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)',
			array(
				'args'   => array(
					'slug' => array(
						'description' => __( 'Unique identifier for the ability category.' ),
						'type'        => 'string',
						'pattern'     => '^[a-z0-9]+(?:-[a-z0-9]+)*$',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Retrieves all ability categories.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object on success.
	 */
	public function get_items( $request ) {
		$categories = wp_get_ability_categories();

		$page     = $request['page'];
		$per_page = $request['per_page'];
		$offset   = ( $page - 1 ) * $per_page;

		$total_categories = count( $categories );
		$max_pages        = (int) ceil( $total_categories / $per_page );

		if ( $request->get_method() === 'HEAD' ) {
			$response = new WP_REST_Response( array() );
		} else {
			$categories = array_slice( $categories, $offset, $per_page );

			$data = array();
			foreach ( $categories as $category ) {
				$item   = $this->prepare_item_for_response( $category, $request );
				$data[] = $this->prepare_response_for_collection( $item );
			}

			$response = rest_ensure_response( $data );
		}

		$response->header( 'X-WP-Total', (string) $total_categories );
		$response->header( 'X-WP-TotalPages', (string) $max_pages );

		$query_params = $request->get_query_params();
		$base         = add_query_arg(
			urlencode_deep( $query_params ),
			rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) )
		);

		if ( $page > 1 ) {
			$prev_page = $page - 1;
			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}

		if ( $page < $max_pages ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );
			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Retrieves a specific ability category.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$category = wp_get_ability_category( $request['slug'] );
		if ( ! $category ) {
			return new WP_Error(
				'rest_ability_category_not_found',
				__( 'Ability category not found.' ),
				array( 'status' => 404 )
			);
		}

		$data = $this->prepare_item_for_response( $category, $request );
		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read ability categories.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the request has read access.
	 */
	public function get_items_permissions_check( $request ) {
		return current_user_can( 'read' );
	}

	/**
	 * Checks if a given request has access to read an ability category.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the request has read access.
	 */
	public function get_item_permissions_check( $request ) {
		return current_user_can( 'read' );
	}

	/**
	 * Prepares an ability category for response.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_Ability_Category $category The ability category object.
	 * @param WP_REST_Request     $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $category, $request ) {
		$data = array(
			'slug'        => $category->get_slug(),
			'label'       => $category->get_label(),
			'description' => $category->get_description(),
			'meta'        => $category->get_meta(),
		);

		$context = $request['context'] ?? 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		$fields = $this->get_fields_for_response( $request );
		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = array(
				'self'       => array(
					'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $category->get_slug() ) ),
				),
				'collection' => array(
					'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
				),
				'abilities'  => array(
					'href' => rest_url( sprintf( '%s/abilities?category=%s', $this->namespace, $category->get_slug() ) ),
				),
			);

			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Retrieves the ability category's schema, conforming to JSON Schema.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Item schema data.
	 */
	public function get_item_schema(): array {
		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'ability-category',
			'type'       => 'object',
			'properties' => array(
				'slug'        => array(
					'description' => __( 'Unique identifier for the ability category.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'label'       => array(
					'description' => __( 'Display label for the category.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'description' => array(
					'description' => __( 'Description of the category.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'meta'        => array(
					'description' => __( 'Meta information about the category.' ),
					'type'        => 'object',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Collection parameters.
	 */
	public function get_collection_params(): array {
		return array(
			'context'  => $this->get_context_param( array( 'default' => 'view' ) ),
			'page'     => array(
				'description' => __( 'Current page of the collection.' ),
				'type'        => 'integer',
				'default'     => 1,
				'minimum'     => 1,
			),
			'per_page' => array(
				'description' => __( 'Maximum number of items to be returned in result set.' ),
				'type'        => 'integer',
				'default'     => 50,
				'minimum'     => 1,
				'maximum'     => 100,
			),
		);
	}
}
endpoints/class-wp-rest-block-pattern-categories-controller.php000064400000011316152222510010021023 0ustar00<?php
/**
 * REST API: WP_REST_Block_Pattern_Categories_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since      6.0.0
 */

/**
 * Core class used to access block pattern categories via the REST API.
 *
 * @since 6.0.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Block_Pattern_Categories_Controller extends WP_REST_Controller {

	/**
	 * Constructs the controller.
	 *
	 * @since 6.0.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'block-patterns/categories';
	}

	/**
	 * Registers the routes for the objects of the controller.
	 *
	 * @since 6.0.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read block patterns.
	 *
	 * @since 6.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view',
			__( 'Sorry, you are not allowed to view the registered block pattern categories.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Retrieves all block pattern categories.
	 *
	 * @since 6.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$response   = array();
		$categories = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered();
		foreach ( $categories as $category ) {
			$prepared_category = $this->prepare_item_for_response( $category, $request );
			$response[]        = $this->prepare_response_for_collection( $prepared_category );
		}

		return rest_ensure_response( $response );
	}

	/**
	 * Prepare a raw block pattern category before it gets output in a REST API response.
	 *
	 * @since 6.0.0
	 *
	 * @param array           $item    Raw category as registered, before any changes.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$fields = $this->get_fields_for_response( $request );
		$keys   = array( 'name', 'label', 'description' );
		$data   = array();
		foreach ( $keys as $key ) {
			if ( isset( $item[ $key ] ) && rest_is_field_included( $key, $fields ) ) {
				$data[ $key ] = $item[ $key ];
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		return rest_ensure_response( $data );
	}

	/**
	 * Retrieves the block pattern category schema, conforming to JSON Schema.
	 *
	 * @since 6.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'block-pattern-category',
			'type'       => 'object',
			'properties' => array(
				'name'        => array(
					'description' => __( 'The category name.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'label'       => array(
					'description' => __( 'The category label, in human readable format.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'description' => array(
					'description' => __( 'The category description, in human readable format.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-sidebars-controller.php000064400000037510152222510010015733 0ustar00<?php
/**
 * REST API: WP_REST_Sidebars_Controller class
 *
 * Original code from {@link https://github.com/martin-pettersson/wp-rest-api-sidebars Martin Pettersson (martin_pettersson@outlook.com)}.
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.8.0
 */

/**
 * Core class used to manage a site's sidebars.
 *
 * @since 5.8.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Sidebars_Controller extends WP_REST_Controller {

	/**
	 * Tracks whether {@see retrieve_widgets()} has been called in the current request.
	 *
	 * @since 5.9.0
	 * @var bool
	 */
	protected $widgets_retrieved = false;

	/**
	 * Sidebars controller constructor.
	 *
	 * @since 5.8.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'sidebars';
	}

	/**
	 * Registers the controllers routes.
	 *
	 * @since 5.8.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\w-]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'id'      => array(
							'description' => __( 'The id of a registered sidebar' ),
							'type'        => 'string',
						),
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to get sidebars.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$this->retrieve_widgets();
		foreach ( wp_get_sidebars_widgets() as $id => $widgets ) {
			$sidebar = $this->get_sidebar( $id );

			if ( ! $sidebar ) {
				continue;
			}

			if ( $this->check_read_permission( $sidebar ) ) {
				return true;
			}
		}

		return $this->do_permissions_check();
	}

	/**
	 * Retrieves the list of sidebars (active or inactive).
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object on success.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$this->retrieve_widgets();

		$data              = array();
		$permissions_check = $this->do_permissions_check();

		foreach ( wp_get_sidebars_widgets() as $id => $widgets ) {
			$sidebar = $this->get_sidebar( $id );

			if ( ! $sidebar ) {
				continue;
			}

			if ( is_wp_error( $permissions_check ) && ! $this->check_read_permission( $sidebar ) ) {
				continue;
			}

			$data[] = $this->prepare_response_for_collection(
				$this->prepare_item_for_response( $sidebar, $request )
			);
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to get a single sidebar.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$this->retrieve_widgets();

		$sidebar = $this->get_sidebar( $request['id'] );
		if ( $sidebar && $this->check_read_permission( $sidebar ) ) {
			return true;
		}

		return $this->do_permissions_check();
	}

	/**
	 * Checks if a sidebar can be read publicly.
	 *
	 * @since 5.9.0
	 *
	 * @param array $sidebar The registered sidebar configuration.
	 * @return bool Whether the side can be read.
	 */
	protected function check_read_permission( $sidebar ) {
		return ! empty( $sidebar['show_in_rest'] );
	}

	/**
	 * Retrieves one sidebar from the collection.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$this->retrieve_widgets();

		$sidebar = $this->get_sidebar( $request['id'] );
		if ( ! $sidebar ) {
			return new WP_Error( 'rest_sidebar_not_found', __( 'No sidebar exists with that id.' ), array( 'status' => 404 ) );
		}

		return $this->prepare_item_for_response( $sidebar, $request );
	}

	/**
	 * Checks if a given request has access to update sidebars.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		return $this->do_permissions_check();
	}

	/**
	 * Updates a sidebar.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		if ( isset( $request['widgets'] ) ) {
			$sidebars = wp_get_sidebars_widgets();

			foreach ( $sidebars as $sidebar_id => $widgets ) {
				foreach ( $widgets as $i => $widget_id ) {
					// This automatically removes the passed widget IDs from any other sidebars in use.
					if ( $sidebar_id !== $request['id'] && in_array( $widget_id, $request['widgets'], true ) ) {
						unset( $sidebars[ $sidebar_id ][ $i ] );
					}

					// This automatically removes omitted widget IDs to the inactive sidebar.
					if ( $sidebar_id === $request['id'] && ! in_array( $widget_id, $request['widgets'], true ) ) {
						$sidebars['wp_inactive_widgets'][] = $widget_id;
					}
				}
			}

			$sidebars[ $request['id'] ] = $request['widgets'];

			wp_set_sidebars_widgets( $sidebars );
		}

		$request['context'] = 'edit';

		$sidebar = $this->get_sidebar( $request['id'] );

		/**
		 * Fires after a sidebar is updated via the REST API.
		 *
		 * @since 5.8.0
		 *
		 * @param array           $sidebar The updated sidebar.
		 * @param WP_REST_Request $request Request object.
		 */
		do_action( 'rest_save_sidebar', $sidebar, $request );

		return $this->prepare_item_for_response( $sidebar, $request );
	}

	/**
	 * Checks if the user has permissions to make the request.
	 *
	 * @since 5.8.0
	 *
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	protected function do_permissions_check() {
		/*
		 * Verify if the current user has edit_theme_options capability.
		 * This capability is required to access the widgets screen.
		 */
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_manage_widgets',
				__( 'Sorry, you are not allowed to manage widgets on this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves the registered sidebar with the given id.
	 *
	 * @since 5.8.0
	 *
	 * @param string|int $id ID of the sidebar.
	 * @return array|null The discovered sidebar, or null if it is not registered.
	 */
	protected function get_sidebar( $id ) {
		return wp_get_sidebar( $id );
	}

	/**
	 * Looks for "lost" widgets once per request.
	 *
	 * @since 5.9.0
	 *
	 * @see retrieve_widgets()
	 */
	protected function retrieve_widgets() {
		if ( ! $this->widgets_retrieved ) {
			retrieve_widgets();
			$this->widgets_retrieved = true;
		}
	}

	/**
	 * Prepares a single sidebar output for response.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Renamed `$raw_sidebar` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @global array $wp_registered_sidebars The registered sidebars.
	 * @global array $wp_registered_widgets  The registered widgets.
	 *
	 * @param array           $item    Sidebar instance.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Prepared response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		global $wp_registered_sidebars, $wp_registered_widgets;

		// Restores the more descriptive, specific name for use within this method.
		$raw_sidebar = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php */
			return apply_filters( 'rest_prepare_sidebar', new WP_REST_Response( array() ), $raw_sidebar, $request );
		}

		$id      = $raw_sidebar['id'];
		$sidebar = array( 'id' => $id );

		if ( isset( $wp_registered_sidebars[ $id ] ) ) {
			$registered_sidebar = $wp_registered_sidebars[ $id ];

			$sidebar['status']        = 'active';
			$sidebar['name']          = isset( $registered_sidebar['name'] ) ? $registered_sidebar['name'] : '';
			$sidebar['description']   = isset( $registered_sidebar['description'] ) ? wp_sidebar_description( $id ) : '';
			$sidebar['class']         = isset( $registered_sidebar['class'] ) ? $registered_sidebar['class'] : '';
			$sidebar['before_widget'] = isset( $registered_sidebar['before_widget'] ) ? $registered_sidebar['before_widget'] : '';
			$sidebar['after_widget']  = isset( $registered_sidebar['after_widget'] ) ? $registered_sidebar['after_widget'] : '';
			$sidebar['before_title']  = isset( $registered_sidebar['before_title'] ) ? $registered_sidebar['before_title'] : '';
			$sidebar['after_title']   = isset( $registered_sidebar['after_title'] ) ? $registered_sidebar['after_title'] : '';
		} else {
			$sidebar['status']      = 'inactive';
			$sidebar['name']        = $raw_sidebar['name'];
			$sidebar['description'] = '';
			$sidebar['class']       = '';
		}

		if ( wp_is_block_theme() ) {
			$sidebar['status'] = 'inactive';
		}

		$fields = $this->get_fields_for_response( $request );
		if ( rest_is_field_included( 'widgets', $fields ) ) {
			$sidebars = wp_get_sidebars_widgets();
			$widgets  = array_filter(
				isset( $sidebars[ $sidebar['id'] ] ) ? $sidebars[ $sidebar['id'] ] : array(),
				static function ( $widget_id ) use ( $wp_registered_widgets ) {
					return isset( $wp_registered_widgets[ $widget_id ] );
				}
			);

			$sidebar['widgets'] = array_values( $widgets );
		}

		$schema = $this->get_item_schema();
		$data   = array();
		foreach ( $schema['properties'] as $property_id => $property ) {
			if ( isset( $sidebar[ $property_id ] ) && true === rest_validate_value_from_schema( $sidebar[ $property_id ], $property ) ) {
				$data[ $property_id ] = $sidebar[ $property_id ];
			} elseif ( isset( $property['default'] ) ) {
				$data[ $property_id ] = $property['default'];
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $sidebar ) );
		}

		/**
		 * Filters the REST API response for a sidebar.
		 *
		 * @since 5.8.0
		 *
		 * @param WP_REST_Response $response    The response object.
		 * @param array            $raw_sidebar The raw sidebar data.
		 * @param WP_REST_Request  $request     The request object.
		 */
		return apply_filters( 'rest_prepare_sidebar', $response, $raw_sidebar, $request );
	}

	/**
	 * Prepares links for the sidebar.
	 *
	 * @since 5.8.0
	 *
	 * @param array $sidebar Sidebar.
	 * @return array Links for the given widget.
	 */
	protected function prepare_links( $sidebar ) {
		return array(
			'collection'               => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'self'                     => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $sidebar['id'] ) ),
			),
			'https://api.w.org/widget' => array(
				'href'       => add_query_arg( 'sidebar', $sidebar['id'], rest_url( '/wp/v2/widgets' ) ),
				'embeddable' => true,
			),
		);
	}

	/**
	 * Retrieves the block type' schema, conforming to JSON Schema.
	 *
	 * @since 5.8.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'sidebar',
			'type'       => 'object',
			'properties' => array(
				'id'            => array(
					'description' => __( 'ID of sidebar.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'name'          => array(
					'description' => __( 'Unique name identifying the sidebar.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'description'   => array(
					'description' => __( 'Description of sidebar.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'class'         => array(
					'description' => __( 'Extra CSS class to assign to the sidebar in the Widgets interface.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'before_widget' => array(
					'description' => __( 'HTML content to prepend to each widget\'s HTML output when assigned to this sidebar. Default is an opening list item element.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'after_widget'  => array(
					'description' => __( 'HTML content to append to each widget\'s HTML output when assigned to this sidebar. Default is a closing list item element.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'before_title'  => array(
					'description' => __( 'HTML content to prepend to the sidebar title when displayed. Default is an opening h2 element.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'after_title'   => array(
					'description' => __( 'HTML content to append to the sidebar title when displayed. Default is a closing h2 element.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'status'        => array(
					'description' => __( 'Status of sidebar.' ),
					'type'        => 'string',
					'enum'        => array( 'active', 'inactive' ),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'widgets'       => array(
					'description' => __( 'Nested widgets.' ),
					'type'        => 'array',
					'items'       => array(
						'type' => array( 'object', 'string' ),
					),
					'default'     => array(),
					'context'     => array( 'embed', 'view', 'edit' ),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/error_log000064400005611012152222510010010460 0ustar00[17-Feb-2024 04:53:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Feb-2024 04:53:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Feb-2024 04:53:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Feb-2024 04:53:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Feb-2024 04:53:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Feb-2024 04:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Feb-2024 04:54:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Feb-2024 04:54:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Feb-2024 04:54:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Feb-2024 04:54:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Feb-2024 04:54:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Feb-2024 04:54:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Feb-2024 04:54:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Feb-2024 04:54:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Feb-2024 04:54:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Feb-2024 04:54:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Feb-2024 04:54:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Feb-2024 04:54:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Feb-2024 04:55:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[17-Feb-2024 04:55:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Feb-2024 04:55:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Feb-2024 04:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Feb-2024 04:55:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Feb-2024 04:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Feb-2024 04:55:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Feb-2024 04:56:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Feb-2024 04:56:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Feb-2024 04:56:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Feb-2024 04:56:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Feb-2024 04:56:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Feb-2024 04:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Feb-2024 04:56:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Feb-2024 04:56:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Feb-2024 04:56:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Feb-2024 04:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Feb-2024 04:56:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Feb-2024 04:57:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[17-Feb-2024 06:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Feb-2024 06:31:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Feb-2024 06:31:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Feb-2024 06:31:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Feb-2024 06:31:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Feb-2024 06:32:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Feb-2024 06:32:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Feb-2024 06:32:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Feb-2024 06:32:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Feb-2024 06:32:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Feb-2024 06:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Feb-2024 06:32:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Feb-2024 06:32:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Feb-2024 06:32:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Feb-2024 06:32:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Feb-2024 06:32:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Feb-2024 06:32:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Feb-2024 06:32:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Feb-2024 06:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[17-Feb-2024 06:33:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Feb-2024 06:33:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Feb-2024 06:33:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Feb-2024 06:33:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Feb-2024 06:33:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Feb-2024 06:33:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Feb-2024 06:33:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Feb-2024 06:33:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Feb-2024 06:33:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Feb-2024 06:33:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Feb-2024 06:33:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Feb-2024 06:33:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Feb-2024 06:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Feb-2024 06:33:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Feb-2024 06:34:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Feb-2024 06:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Feb-2024 06:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Feb-2024 06:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:44:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:44:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:45:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:45:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:45:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:45:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:45:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:45:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:45:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:45:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:45:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:45:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:45:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:45:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:45:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:45:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:45:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:45:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:45:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:45:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:45:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:45:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:45:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:45:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:45:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:45:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:45:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:46:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:46:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:46:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:46:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:46:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:46:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:46:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:46:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:46:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:46:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:46:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:46:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:46:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:46:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:46:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:46:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:46:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:46:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:46:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:46:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:46:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:46:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:46:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:46:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:46:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:46:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:47:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:47:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:47:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:47:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:47:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:47:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:47:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:47:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:47:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:47:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:47:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:47:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:47:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:49:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:49:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Mar-2024 11:49:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:49:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Mar-2024 11:49:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:49:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Mar-2024 11:49:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:49:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Mar-2024 11:49:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:49:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Mar-2024 11:49:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:49:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Mar-2024 11:49:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:50:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Mar-2024 11:50:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:50:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Mar-2024 11:50:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:50:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Mar-2024 11:50:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:50:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Mar-2024 11:50:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:50:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Mar-2024 11:50:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:50:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Mar-2024 11:50:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:50:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Mar-2024 11:50:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:50:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Mar-2024 11:50:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:50:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Mar-2024 11:50:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:50:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Mar-2024 11:50:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:50:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Mar-2024 11:51:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:51:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Mar-2024 11:51:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:51:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Mar-2024 11:51:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:51:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Mar-2024 11:51:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:51:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Mar-2024 11:51:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:51:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Mar-2024 11:51:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:51:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Mar-2024 11:51:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:51:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Mar-2024 11:51:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:51:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Mar-2024 11:51:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:51:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Mar-2024 11:51:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:51:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Mar-2024 11:51:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:51:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Mar-2024 11:52:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:52:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Mar-2024 11:52:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:52:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Mar-2024 11:52:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:52:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Mar-2024 11:52:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:52:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Mar-2024 11:52:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:52:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Mar-2024 11:52:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:52:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Mar-2024 11:52:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:52:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Mar-2024 11:52:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Mar-2024 11:52:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[31-Mar-2024 19:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[31-Mar-2024 19:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[31-Mar-2024 19:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[31-Mar-2024 19:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[31-Mar-2024 19:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[31-Mar-2024 19:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[31-Mar-2024 19:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[31-Mar-2024 19:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[31-Mar-2024 19:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[31-Mar-2024 19:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[31-Mar-2024 19:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[31-Mar-2024 19:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[31-Mar-2024 19:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[31-Mar-2024 19:59:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[31-Mar-2024 19:59:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[31-Mar-2024 19:59:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[01-Apr-2024 16:18:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[01-Apr-2024 16:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[01-Apr-2024 16:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[01-Apr-2024 16:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[01-Apr-2024 16:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[01-Apr-2024 16:18:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Apr-2024 16:18:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[01-Apr-2024 16:18:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[01-Apr-2024 16:18:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[01-Apr-2024 16:18:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[01-Apr-2024 16:18:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[01-Apr-2024 16:18:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[01-Apr-2024 16:18:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[01-Apr-2024 16:18:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[01-Apr-2024 16:18:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Apr-2024 11:37:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[29-Apr-2024 11:37:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[29-Apr-2024 11:37:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[29-Apr-2024 11:37:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[29-Apr-2024 11:38:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[29-Apr-2024 11:38:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[29-Apr-2024 11:38:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[29-Apr-2024 11:38:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[29-Apr-2024 11:38:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[29-Apr-2024 11:38:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[29-Apr-2024 11:38:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[29-Apr-2024 11:38:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[29-Apr-2024 11:38:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[29-Apr-2024 11:38:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[29-Apr-2024 11:38:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[29-Apr-2024 11:38:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[29-Apr-2024 11:38:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[29-Apr-2024 11:38:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[29-Apr-2024 11:38:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[29-Apr-2024 11:38:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[29-Apr-2024 11:38:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[29-Apr-2024 11:38:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[29-Apr-2024 11:38:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[29-Apr-2024 11:38:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[29-Apr-2024 11:38:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[29-Apr-2024 11:38:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[29-Apr-2024 11:38:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[29-Apr-2024 11:39:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[29-Apr-2024 11:39:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[29-Apr-2024 11:39:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[29-Apr-2024 11:39:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[29-Apr-2024 11:39:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[29-Apr-2024 11:39:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[29-Apr-2024 11:39:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[29-Apr-2024 11:39:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[29-Apr-2024 11:39:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[29-Apr-2024 11:39:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[29-Apr-2024 11:39:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[29-Apr-2024 11:39:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[29-Apr-2024 11:39:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-May-2024 20:57:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-May-2024 20:57:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-May-2024 20:57:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-May-2024 20:57:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-May-2024 20:57:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-May-2024 20:57:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-May-2024 20:57:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-May-2024 20:57:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-May-2024 20:57:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-May-2024 20:57:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-May-2024 20:57:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-May-2024 20:57:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-May-2024 20:57:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-May-2024 20:57:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-May-2024 20:58:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-May-2024 20:58:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-May-2024 20:58:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-May-2024 20:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-May-2024 20:58:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-May-2024 20:58:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-May-2024 20:58:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-May-2024 20:58:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-May-2024 20:58:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-May-2024 20:58:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-May-2024 20:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-May-2024 20:58:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-May-2024 20:58:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-May-2024 20:58:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-May-2024 20:59:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-May-2024 20:59:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-May-2024 20:59:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-May-2024 20:59:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-May-2024 20:59:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-May-2024 20:59:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-May-2024 20:59:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-May-2024 20:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-May-2024 20:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-May-2024 20:59:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-May-2024 20:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-May-2024 20:59:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-May-2024 05:58:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-May-2024 05:58:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-May-2024 05:58:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-May-2024 05:58:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-May-2024 05:58:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-May-2024 05:58:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-May-2024 05:58:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-May-2024 05:58:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-May-2024 05:58:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-May-2024 05:58:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-May-2024 05:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-May-2024 05:59:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-May-2024 05:59:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-May-2024 05:59:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-May-2024 06:00:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-May-2024 06:00:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-May-2024 06:00:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-May-2024 06:00:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-May-2024 06:00:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-May-2024 06:00:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-May-2024 06:01:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-May-2024 06:01:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-May-2024 06:01:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-May-2024 06:01:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-May-2024 06:01:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-May-2024 06:01:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-May-2024 06:01:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-May-2024 06:01:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-May-2024 06:01:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-May-2024 06:01:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-May-2024 06:01:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-May-2024 06:01:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-May-2024 06:01:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-May-2024 06:01:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-May-2024 06:02:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-May-2024 06:02:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-May-2024 06:02:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-May-2024 06:02:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-May-2024 06:02:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-May-2024 06:02:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-May-2024 18:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-May-2024 18:31:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-May-2024 18:31:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-May-2024 18:31:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-May-2024 18:31:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-May-2024 18:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-May-2024 18:31:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-May-2024 18:31:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-May-2024 18:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-May-2024 18:31:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-May-2024 18:31:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-May-2024 18:31:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-May-2024 18:31:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-May-2024 18:31:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-May-2024 18:31:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-May-2024 18:31:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-May-2024 18:31:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-May-2024 18:31:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-May-2024 18:31:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-May-2024 18:31:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-May-2024 18:31:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-May-2024 18:31:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-May-2024 18:31:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-May-2024 18:31:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-May-2024 18:31:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-May-2024 18:31:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-May-2024 18:31:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-May-2024 18:31:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-May-2024 18:32:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-May-2024 18:32:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-May-2024 18:32:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-May-2024 18:32:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-May-2024 18:32:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-May-2024 18:32:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-May-2024 18:32:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-May-2024 18:32:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-May-2024 18:32:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-May-2024 18:32:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-May-2024 18:32:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-May-2024 18:32:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[11-May-2024 09:42:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-May-2024 09:42:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-May-2024 09:42:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-May-2024 09:42:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-May-2024 09:42:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-May-2024 09:42:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-May-2024 09:43:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-May-2024 09:43:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-May-2024 09:43:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-May-2024 09:43:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-May-2024 09:43:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-May-2024 09:43:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-May-2024 09:43:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-May-2024 09:43:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-May-2024 09:43:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-May-2024 09:43:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-May-2024 09:43:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-May-2024 09:43:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-May-2024 09:43:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-May-2024 09:43:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-May-2024 09:43:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-May-2024 09:43:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-May-2024 09:43:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-May-2024 09:43:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-May-2024 09:43:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-May-2024 09:43:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-May-2024 09:43:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-May-2024 09:43:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-May-2024 09:43:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-May-2024 09:43:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-May-2024 09:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-May-2024 09:43:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-May-2024 09:43:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-May-2024 09:43:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-May-2024 09:43:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-May-2024 09:43:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-May-2024 09:44:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-May-2024 09:44:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-May-2024 09:44:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-May-2024 09:44:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[11-May-2024 16:43:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-May-2024 16:43:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-May-2024 16:43:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-May-2024 16:44:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-May-2024 16:44:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-May-2024 16:44:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-May-2024 16:44:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-May-2024 16:44:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-May-2024 16:44:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-May-2024 16:44:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-May-2024 16:44:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-May-2024 16:45:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-May-2024 16:45:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-May-2024 16:45:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-May-2024 16:45:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-May-2024 16:45:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-May-2024 16:45:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-May-2024 16:46:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-May-2024 16:46:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-May-2024 16:46:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-May-2024 16:46:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-May-2024 16:46:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-May-2024 16:46:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-May-2024 16:46:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-May-2024 16:46:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-May-2024 16:46:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-May-2024 16:47:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-May-2024 16:47:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-May-2024 16:47:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-May-2024 16:47:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-May-2024 16:47:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-May-2024 16:48:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-May-2024 16:48:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-May-2024 16:48:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-May-2024 16:48:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-May-2024 16:48:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-May-2024 16:49:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-May-2024 16:49:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-May-2024 16:49:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-May-2024 16:49:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[12-Jul-2024 17:39:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[12-Jul-2024 17:39:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[12-Jul-2024 17:39:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[12-Jul-2024 17:39:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[12-Jul-2024 17:39:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[12-Jul-2024 17:39:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[12-Jul-2024 17:40:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[12-Jul-2024 17:40:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[12-Jul-2024 17:40:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[12-Jul-2024 17:40:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[12-Jul-2024 17:41:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[12-Jul-2024 17:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[12-Jul-2024 17:42:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[12-Jul-2024 17:42:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[12-Jul-2024 17:42:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[12-Jul-2024 17:42:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[12-Jul-2024 17:42:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[12-Jul-2024 17:42:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[12-Jul-2024 17:42:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[12-Jul-2024 17:43:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[12-Jul-2024 17:43:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[12-Jul-2024 17:43:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[12-Jul-2024 17:43:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[12-Jul-2024 17:43:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[12-Jul-2024 17:43:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[12-Jul-2024 17:44:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[12-Jul-2024 17:44:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[12-Jul-2024 17:44:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[12-Jul-2024 17:44:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[12-Jul-2024 17:45:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[12-Jul-2024 17:45:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[12-Jul-2024 17:45:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[12-Jul-2024 17:45:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[12-Jul-2024 17:45:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[12-Jul-2024 17:45:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[12-Jul-2024 17:46:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[12-Jul-2024 17:46:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[12-Jul-2024 17:46:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[12-Jul-2024 17:46:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[12-Jul-2024 17:46:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Jul-2024 16:51:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Jul-2024 16:51:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Jul-2024 16:51:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Jul-2024 16:51:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Jul-2024 16:51:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Jul-2024 16:52:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Jul-2024 16:52:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Jul-2024 16:52:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Jul-2024 16:52:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Jul-2024 16:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Jul-2024 16:52:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Jul-2024 16:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Jul-2024 16:53:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Jul-2024 16:53:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Jul-2024 16:53:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Jul-2024 16:53:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Jul-2024 16:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Jul-2024 16:53:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Jul-2024 16:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Jul-2024 16:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Jul-2024 16:54:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Jul-2024 16:54:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Jul-2024 16:54:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Jul-2024 16:54:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Jul-2024 16:54:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Jul-2024 16:54:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Jul-2024 16:54:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jul-2024 16:55:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Jul-2024 16:55:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Jul-2024 16:55:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Jul-2024 16:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Jul-2024 16:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Jul-2024 16:55:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Jul-2024 16:55:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Jul-2024 16:55:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Jul-2024 16:56:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Jul-2024 16:56:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Jul-2024 16:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Jul-2024 16:56:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Jul-2024 16:56:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Aug-2024 05:25:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[07-Aug-2024 05:25:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[07-Aug-2024 05:25:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[07-Aug-2024 05:25:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Aug-2024 05:26:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[07-Aug-2024 05:26:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[07-Aug-2024 05:26:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Aug-2024 05:26:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[07-Aug-2024 05:26:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Aug-2024 05:26:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Aug-2024 05:26:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[07-Aug-2024 05:26:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[07-Aug-2024 05:26:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[07-Aug-2024 05:26:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Aug-2024 05:26:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[07-Aug-2024 05:26:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[07-Aug-2024 05:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Aug-2024 05:26:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Aug-2024 05:26:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[07-Aug-2024 05:26:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Aug-2024 05:27:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[07-Aug-2024 05:27:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[07-Aug-2024 05:27:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Aug-2024 05:27:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[07-Aug-2024 05:27:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[07-Aug-2024 05:27:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Aug-2024 05:28:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[07-Aug-2024 05:28:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[07-Aug-2024 05:28:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[07-Aug-2024 05:28:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[07-Aug-2024 05:28:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Aug-2024 05:28:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Aug-2024 05:28:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Aug-2024 05:28:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[07-Aug-2024 05:28:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[07-Aug-2024 05:28:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[07-Aug-2024 05:28:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Aug-2024 05:28:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[07-Aug-2024 05:29:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[07-Aug-2024 05:29:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Aug-2024 21:21:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Aug-2024 21:22:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Aug-2024 21:22:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Aug-2024 21:22:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Aug-2024 21:22:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Aug-2024 21:22:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Aug-2024 21:22:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Aug-2024 21:23:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Aug-2024 21:23:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Aug-2024 21:23:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Aug-2024 21:23:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Aug-2024 21:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Aug-2024 21:23:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Aug-2024 21:23:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Aug-2024 21:23:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Aug-2024 21:24:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Aug-2024 21:24:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Aug-2024 21:24:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Aug-2024 21:24:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Aug-2024 21:24:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Aug-2024 21:25:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Aug-2024 21:25:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Aug-2024 21:25:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Aug-2024 21:25:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Aug-2024 21:25:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Aug-2024 21:25:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Aug-2024 21:26:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Aug-2024 21:26:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Aug-2024 21:26:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Aug-2024 21:26:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Aug-2024 21:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Aug-2024 21:27:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Aug-2024 21:27:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Aug-2024 21:27:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Aug-2024 21:27:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Aug-2024 21:28:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Aug-2024 21:28:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Aug-2024 21:28:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Aug-2024 21:28:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Aug-2024 21:28:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:03:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:03:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:03:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:03:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:03:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:03:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:03:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:03:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:03:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:03:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:04:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:04:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:04:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:04:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:04:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:04:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:04:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:04:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:04:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:04:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:04:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:04:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:04:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:04:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:04:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:04:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:04:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:04:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:04:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:04:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:04:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:04:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:04:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:04:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:04:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:04:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:05:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:05:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:05:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:05:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:05:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:05:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:05:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:05:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:05:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:05:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:05:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:05:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:05:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:05:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:05:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:05:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:05:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:05:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:05:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:05:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:05:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:05:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:05:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:05:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:05:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:05:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:05:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:05:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:05:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:05:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:05:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:06:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:06:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:06:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:06:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Sep-2024 22:06:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:06:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Sep-2024 22:06:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:06:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Sep-2024 22:06:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:06:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Sep-2024 22:06:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:06:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Sep-2024 22:06:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:06:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Sep-2024 22:06:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:06:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Sep-2024 22:06:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:06:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Sep-2024 22:06:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:06:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Sep-2024 22:06:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:07:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Sep-2024 22:07:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:07:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Sep-2024 22:07:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:07:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Sep-2024 22:07:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:07:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Sep-2024 22:07:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:07:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Sep-2024 22:07:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:07:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Sep-2024 22:07:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:07:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Sep-2024 22:07:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:07:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Sep-2024 22:07:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:07:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Sep-2024 22:07:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:07:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Sep-2024 22:07:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:07:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Sep-2024 22:07:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:07:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Sep-2024 22:07:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:07:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Sep-2024 22:07:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:07:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Sep-2024 22:07:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:07:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Sep-2024 22:07:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:07:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Sep-2024 22:07:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:07:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Sep-2024 22:07:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:07:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Sep-2024 22:07:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:07:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Sep-2024 22:07:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:07:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Sep-2024 22:07:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:07:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Sep-2024 22:07:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:07:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Sep-2024 22:08:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:08:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Sep-2024 22:08:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:08:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Sep-2024 22:08:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:08:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Sep-2024 22:08:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:08:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Sep-2024 22:08:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:08:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Sep-2024 22:08:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:08:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Sep-2024 22:08:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:08:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Sep-2024 22:08:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:08:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Sep-2024 22:08:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Sep-2024 22:08:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2024 20:19:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2024 20:19:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2024 20:19:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2024 20:19:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2024 20:19:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2024 20:19:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2024 20:19:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2024 20:19:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2024 20:19:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2024 20:19:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2024 20:19:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2024 20:19:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2024 20:19:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2024 20:19:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2024 20:20:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2024 20:20:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2024 20:20:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2024 20:20:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2024 20:20:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2024 20:20:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2024 20:20:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2024 20:20:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2024 20:20:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2024 20:20:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2024 20:20:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2024 20:20:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2024 20:20:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2024 20:20:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2024 20:20:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2024 20:20:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2024 20:29:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2024 20:29:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2024 20:29:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2024 20:29:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2024 20:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2024 20:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2024 20:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2024 20:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2024 20:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2024 20:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2024 20:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2024 20:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2024 20:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2024 20:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2024 20:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2024 20:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2024 20:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2024 20:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2024 20:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2024 20:29:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2024 20:29:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2024 20:29:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2024 20:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2024 20:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2024 20:29:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Nov-2024 10:16:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Nov-2024 10:16:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Nov-2024 10:16:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Nov-2024 10:16:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Nov-2024 10:16:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Nov-2024 10:16:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Nov-2024 10:17:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Nov-2024 10:17:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Nov-2024 10:17:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Nov-2024 10:17:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Nov-2024 10:18:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Nov-2024 10:18:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Nov-2024 10:18:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Nov-2024 10:18:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Nov-2024 10:18:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Nov-2024 10:18:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Nov-2024 10:18:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Nov-2024 10:19:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Nov-2024 10:19:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Nov-2024 10:19:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Nov-2024 10:19:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Nov-2024 10:19:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Nov-2024 10:19:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Nov-2024 10:20:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Nov-2024 10:20:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Nov-2024 10:20:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Nov-2024 10:20:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Nov-2024 10:20:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Nov-2024 10:20:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Nov-2024 10:20:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Nov-2024 10:20:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Nov-2024 10:21:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Nov-2024 10:21:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Nov-2024 10:21:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Nov-2024 10:21:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Nov-2024 10:21:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Nov-2024 10:21:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Nov-2024 10:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Nov-2024 10:21:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Nov-2024 10:22:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[10-Nov-2024 11:34:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[10-Nov-2024 11:34:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[10-Nov-2024 11:34:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[10-Nov-2024 11:34:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[10-Nov-2024 11:34:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[10-Nov-2024 11:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[10-Nov-2024 11:34:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[10-Nov-2024 11:34:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[10-Nov-2024 11:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[10-Nov-2024 11:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[10-Nov-2024 11:34:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[10-Nov-2024 11:34:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[10-Nov-2024 11:34:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[10-Nov-2024 11:34:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[10-Nov-2024 11:34:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[10-Nov-2024 11:34:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[10-Nov-2024 11:34:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[10-Nov-2024 11:34:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[10-Nov-2024 11:34:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[10-Nov-2024 11:34:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[10-Nov-2024 11:34:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[10-Nov-2024 11:34:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[10-Nov-2024 11:34:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[10-Nov-2024 11:34:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[10-Nov-2024 11:34:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[10-Nov-2024 11:34:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[10-Nov-2024 11:34:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[10-Nov-2024 11:34:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[10-Nov-2024 11:34:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[10-Nov-2024 11:34:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[10-Nov-2024 11:34:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[10-Nov-2024 11:34:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[10-Nov-2024 11:34:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[10-Nov-2024 11:34:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[10-Nov-2024 11:34:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[10-Nov-2024 11:34:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[10-Nov-2024 11:34:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[10-Nov-2024 11:34:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[10-Nov-2024 11:34:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[10-Nov-2024 11:34:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[16-Nov-2024 04:31:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[16-Nov-2024 04:31:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[16-Nov-2024 04:31:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[16-Nov-2024 04:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[16-Nov-2024 04:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[16-Nov-2024 04:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[16-Nov-2024 04:31:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[16-Nov-2024 04:31:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[16-Nov-2024 04:31:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[16-Nov-2024 04:31:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[16-Nov-2024 04:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[16-Nov-2024 04:31:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[16-Nov-2024 04:31:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[16-Nov-2024 04:31:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[16-Nov-2024 04:31:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[16-Nov-2024 04:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[16-Nov-2024 04:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[16-Nov-2024 04:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[16-Nov-2024 04:31:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[16-Nov-2024 04:31:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[16-Nov-2024 04:31:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[16-Nov-2024 04:31:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Nov-2024 02:02:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[17-Nov-2024 02:02:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[17-Nov-2024 02:02:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[17-Nov-2024 02:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[17-Nov-2024 02:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[17-Nov-2024 02:02:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[17-Nov-2024 02:02:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[17-Nov-2024 02:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[17-Nov-2024 02:02:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[17-Nov-2024 02:02:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[17-Nov-2024 02:02:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[17-Nov-2024 02:02:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[17-Nov-2024 02:02:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[17-Nov-2024 02:02:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[17-Nov-2024 02:02:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[17-Nov-2024 02:02:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[17-Nov-2024 02:02:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[17-Nov-2024 02:02:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[17-Nov-2024 02:02:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[17-Nov-2024 02:02:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[17-Nov-2024 02:02:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[17-Nov-2024 02:02:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[17-Nov-2024 02:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[17-Nov-2024 02:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[17-Nov-2024 02:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[17-Nov-2024 02:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[17-Nov-2024 02:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[17-Nov-2024 02:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[17-Nov-2024 02:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[17-Nov-2024 02:02:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[17-Nov-2024 02:02:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[17-Nov-2024 02:02:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[17-Nov-2024 02:03:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[17-Nov-2024 02:03:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Nov-2024 00:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Nov-2024 00:36:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Nov-2024 00:36:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Nov-2024 00:36:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Nov-2024 00:36:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Nov-2024 00:36:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Nov-2024 00:36:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Nov-2024 00:36:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Nov-2024 00:36:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Nov-2024 00:36:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Nov-2024 00:36:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Nov-2024 00:36:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Nov-2024 00:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Nov-2024 00:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Nov-2024 00:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Nov-2024 00:36:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Nov-2024 00:36:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Nov-2024 00:36:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Nov-2024 00:36:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Nov-2024 00:36:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Nov-2024 00:36:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Nov-2024 00:36:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Nov-2024 00:36:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Nov-2024 00:36:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Nov-2024 00:36:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Nov-2024 00:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Nov-2024 00:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Nov-2024 00:36:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Nov-2024 00:36:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Nov-2024 00:36:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Nov-2024 00:36:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Nov-2024 00:36:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Nov-2024 00:36:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Nov-2024 00:36:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Dec-2024 16:29:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Dec-2024 16:29:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Dec-2024 16:29:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Dec-2024 16:29:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Dec-2024 16:29:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Dec-2024 16:29:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Dec-2024 16:29:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Dec-2024 16:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Dec-2024 16:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Dec-2024 16:29:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Dec-2024 16:30:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Dec-2024 16:30:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Dec-2024 16:30:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Dec-2024 16:30:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Dec-2024 16:30:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Dec-2024 16:30:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Dec-2024 16:30:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Dec-2024 16:30:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Dec-2024 16:30:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Dec-2024 16:30:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Dec-2024 16:31:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Dec-2024 16:31:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Dec-2024 16:31:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Dec-2024 16:31:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Dec-2024 16:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Dec-2024 16:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Dec-2024 16:31:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Dec-2024 16:31:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Dec-2024 16:31:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Dec-2024 16:31:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Dec-2024 16:31:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Dec-2024 16:32:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Dec-2024 16:32:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Dec-2024 16:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Dec-2024 16:33:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Dec-2024 16:33:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Dec-2024 16:33:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Dec-2024 16:33:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Dec-2024 16:33:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Dec-2024 16:33:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Dec-2024 08:35:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Dec-2024 08:35:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Dec-2024 08:35:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Dec-2024 08:35:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Dec-2024 08:35:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Dec-2024 08:35:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Dec-2024 08:35:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Dec-2024 08:35:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Dec-2024 08:35:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Dec-2024 08:35:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Dec-2024 08:35:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Dec-2024 08:35:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Dec-2024 08:35:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Dec-2024 08:35:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Dec-2024 08:35:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Dec-2024 08:35:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Dec-2024 08:35:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Dec-2024 08:35:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Dec-2024 08:35:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Dec-2024 08:35:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Dec-2024 08:35:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Dec-2024 08:36:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Dec-2024 08:36:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Dec-2024 08:36:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Dec-2024 08:36:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Dec-2024 08:36:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Dec-2024 08:36:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Dec-2024 08:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Dec-2024 08:36:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Dec-2024 08:36:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Dec-2024 08:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Dec-2024 08:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Dec-2024 08:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Dec-2024 08:36:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Dec-2024 08:36:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Dec-2024 08:36:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Dec-2024 08:36:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Dec-2024 08:36:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Dec-2024 08:36:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Dec-2024 08:36:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[16-Jan-2025 07:47:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[16-Jan-2025 07:47:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[16-Jan-2025 07:47:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[16-Jan-2025 07:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[16-Jan-2025 07:47:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[16-Jan-2025 07:47:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[16-Jan-2025 07:47:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[16-Jan-2025 07:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[16-Jan-2025 07:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[16-Jan-2025 07:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[16-Jan-2025 07:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[16-Jan-2025 07:47:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[16-Jan-2025 07:47:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[16-Jan-2025 07:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[16-Jan-2025 07:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[16-Jan-2025 07:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[16-Jan-2025 07:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[16-Jan-2025 07:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[16-Jan-2025 07:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[16-Jan-2025 07:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[16-Jan-2025 07:47:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[16-Jan-2025 07:47:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[16-Jan-2025 07:47:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[16-Jan-2025 07:47:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[16-Jan-2025 07:47:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Feb-2025 02:11:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Feb-2025 02:11:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Feb-2025 02:11:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Feb-2025 02:11:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Feb-2025 02:11:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Feb-2025 02:11:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Feb-2025 02:11:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Feb-2025 02:11:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Feb-2025 02:11:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Feb-2025 02:11:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Feb-2025 02:11:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Feb-2025 02:11:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Feb-2025 02:11:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Feb-2025 02:11:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Feb-2025 02:11:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Feb-2025 02:11:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Feb-2025 02:11:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Feb-2025 02:11:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Feb-2025 02:11:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Feb-2025 02:11:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Feb-2025 02:11:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Feb-2025 02:11:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Feb-2025 02:11:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Feb-2025 02:11:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Feb-2025 02:11:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Feb-2025 02:11:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Feb-2025 02:11:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Feb-2025 02:11:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Feb-2025 02:11:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Feb-2025 02:11:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Feb-2025 02:11:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Feb-2025 02:11:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Feb-2025 02:11:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Feb-2025 02:11:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Feb-2025 02:35:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Feb-2025 02:35:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Feb-2025 02:35:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Feb-2025 02:35:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Feb-2025 02:35:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Feb-2025 02:35:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Feb-2025 02:35:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Feb-2025 02:35:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Feb-2025 02:36:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Feb-2025 02:36:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Feb-2025 02:36:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Feb-2025 02:36:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Feb-2025 02:36:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Feb-2025 02:36:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Feb-2025 02:36:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Feb-2025 02:36:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Feb-2025 02:36:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Feb-2025 02:36:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Feb-2025 02:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Feb-2025 02:36:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Feb-2025 02:36:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Feb-2025 02:36:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Feb-2025 02:36:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Feb-2025 02:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Feb-2025 02:36:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Feb-2025 02:36:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Feb-2025 02:36:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Feb-2025 06:15:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Feb-2025 06:15:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Feb-2025 06:15:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Feb-2025 06:15:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Feb-2025 06:15:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Feb-2025 06:15:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Feb-2025 06:15:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Feb-2025 06:15:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Feb-2025 06:15:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Feb-2025 06:15:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Feb-2025 06:15:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Feb-2025 06:15:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Feb-2025 06:15:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Feb-2025 06:15:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Feb-2025 06:15:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Feb-2025 06:15:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Feb-2025 06:15:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Feb-2025 06:15:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Feb-2025 06:15:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Feb-2025 06:15:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Feb-2025 06:15:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Feb-2025 06:15:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Feb-2025 06:15:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Feb-2025 06:15:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Feb-2025 06:15:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Feb-2025 06:15:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Feb-2025 06:15:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Feb-2025 06:15:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-Mar-2025 11:44:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[11-Mar-2025 11:44:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[11-Mar-2025 11:44:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[11-Mar-2025 11:45:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[11-Mar-2025 11:45:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[11-Mar-2025 11:46:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[11-Mar-2025 11:46:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[11-Mar-2025 11:46:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[11-Mar-2025 11:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[11-Mar-2025 11:46:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[11-Mar-2025 11:47:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[11-Mar-2025 11:47:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[11-Mar-2025 11:47:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[11-Mar-2025 11:48:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[11-Mar-2025 11:48:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[11-Mar-2025 11:49:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[11-Mar-2025 11:49:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[11-Mar-2025 11:49:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[11-Mar-2025 11:50:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[11-Mar-2025 11:50:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[11-Mar-2025 11:50:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[11-Mar-2025 11:51:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[11-Mar-2025 11:51:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[11-Mar-2025 11:51:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[11-Mar-2025 11:52:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[11-Mar-2025 11:52:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[11-Mar-2025 11:52:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[11-Mar-2025 11:53:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[11-Mar-2025 11:53:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[11-Mar-2025 11:53:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[11-Mar-2025 11:53:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[11-Mar-2025 11:53:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[11-Mar-2025 11:54:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[11-Mar-2025 11:54:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[11-Mar-2025 11:54:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[11-Mar-2025 11:54:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[11-Mar-2025 11:55:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[11-Mar-2025 11:55:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[11-Mar-2025 11:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[11-Mar-2025 11:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Mar-2025 10:04:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[29-Mar-2025 10:04:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[29-Mar-2025 10:05:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[29-Mar-2025 10:05:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[29-Mar-2025 10:05:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[29-Mar-2025 10:05:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[29-Mar-2025 10:05:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[29-Mar-2025 10:05:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[29-Mar-2025 10:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[29-Mar-2025 10:05:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[29-Mar-2025 10:05:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[29-Mar-2025 10:05:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[29-Mar-2025 10:05:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[29-Mar-2025 10:05:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[29-Mar-2025 10:05:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[29-Mar-2025 10:05:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[29-Mar-2025 10:05:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[29-Mar-2025 10:05:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[29-Mar-2025 10:05:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[29-Mar-2025 10:05:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[29-Mar-2025 10:05:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[29-Mar-2025 10:05:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[29-Mar-2025 10:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[29-Mar-2025 10:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[29-Mar-2025 10:05:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[29-Mar-2025 10:05:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[29-Mar-2025 10:05:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[29-Mar-2025 10:05:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[29-Mar-2025 10:05:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[29-Mar-2025 10:05:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[29-Mar-2025 10:05:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[29-Mar-2025 10:05:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[29-Mar-2025 10:05:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[29-Mar-2025 10:05:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[29-Mar-2025 10:05:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[29-Mar-2025 10:05:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[29-Mar-2025 10:05:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[29-Mar-2025 10:05:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[29-Mar-2025 10:05:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[29-Mar-2025 10:05:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:49:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-May-2025 09:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-May-2025 09:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-May-2025 09:49:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-May-2025 09:49:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-May-2025 09:49:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-May-2025 09:49:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-May-2025 09:49:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-May-2025 09:49:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-May-2025 09:49:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-May-2025 09:49:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-May-2025 09:49:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:49:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-May-2025 09:50:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-May-2025 09:50:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-May-2025 09:50:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-May-2025 09:50:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-May-2025 09:50:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-May-2025 09:50:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-May-2025 09:50:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-May-2025 09:50:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:50:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-May-2025 09:51:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-May-2025 09:51:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-May-2025 09:51:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-May-2025 09:51:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-May-2025 09:51:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-May-2025 09:51:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-May-2025 09:51:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-May-2025 09:51:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:52:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:52:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 11:53:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 11:53:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 11:53:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 11:53:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 11:53:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 11:53:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 11:53:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 11:53:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 11:53:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 11:54:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 11:54:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 11:54:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 11:54:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 11:54:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 11:54:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 11:54:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 11:54:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 11:54:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 11:54:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:54:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 11:55:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 11:55:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-May-2025 14:21:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-May-2025 14:21:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-May-2025 14:21:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-May-2025 14:21:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-May-2025 14:21:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-May-2025 14:21:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-May-2025 14:21:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-May-2025 14:21:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:21:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:21:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-May-2025 14:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-May-2025 14:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-May-2025 14:22:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-May-2025 14:22:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-May-2025 14:22:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-May-2025 14:22:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-May-2025 14:22:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:22:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:22:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-May-2025 14:23:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-May-2025 14:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-May-2025 14:23:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-May-2025 14:23:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-May-2025 14:23:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-May-2025 14:23:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jun-2025 16:53:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Jun-2025 16:53:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Jun-2025 16:53:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Jun-2025 16:53:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Jun-2025 16:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Jun-2025 16:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Jun-2025 16:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Jun-2025 16:53:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Jun-2025 16:53:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Jun-2025 16:53:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Jun-2025 16:53:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Jun-2025 16:53:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Jun-2025 16:53:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Jun-2025 16:53:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Jun-2025 16:53:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Jun-2025 16:53:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Jun-2025 16:53:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Jun-2025 16:53:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Jun-2025 16:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Jun-2025 16:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Jun-2025 16:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Jun-2025 16:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Jun-2025 16:53:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Jun-2025 16:53:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Jun-2025 16:53:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Jun-2025 16:53:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Jun-2025 16:54:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Jun-2025 16:54:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Jun-2025 16:54:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Jun-2025 16:54:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Jun-2025 16:54:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Jun-2025 16:54:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Jun-2025 16:54:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Jun-2025 16:54:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Jun-2025 16:54:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Jun-2025 16:54:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Jun-2025 16:54:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Jun-2025 16:54:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Jun-2025 16:54:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Jul-2025 14:22:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[01-Jul-2025 14:22:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[01-Jul-2025 14:22:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[01-Jul-2025 14:22:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[01-Jul-2025 14:22:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[01-Jul-2025 14:22:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[01-Jul-2025 14:22:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[01-Jul-2025 14:22:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[01-Jul-2025 14:22:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[01-Jul-2025 14:22:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[01-Jul-2025 14:22:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[01-Jul-2025 14:22:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[01-Jul-2025 14:22:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[01-Jul-2025 14:22:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[01-Jul-2025 14:22:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[01-Jul-2025 14:22:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[01-Jul-2025 14:22:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[01-Jul-2025 14:22:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[01-Jul-2025 14:22:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[01-Jul-2025 14:22:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[01-Jul-2025 14:22:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[01-Jul-2025 14:22:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[01-Jul-2025 14:22:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[01-Jul-2025 14:22:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[01-Jul-2025 14:22:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[01-Jul-2025 14:22:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[01-Jul-2025 14:22:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[01-Jul-2025 14:23:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[01-Jul-2025 14:23:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[01-Jul-2025 14:23:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[01-Jul-2025 14:23:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[01-Jul-2025 14:23:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[01-Jul-2025 14:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[01-Jul-2025 14:23:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[01-Jul-2025 14:23:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[01-Jul-2025 14:23:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[01-Jul-2025 14:23:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[01-Jul-2025 14:23:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[01-Jul-2025 14:23:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[01-Jul-2025 14:23:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Jul-2025 09:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Jul-2025 09:19:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Jul-2025 09:19:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Jul-2025 09:19:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Jul-2025 09:19:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Jul-2025 09:19:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Jul-2025 09:19:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Jul-2025 09:19:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Jul-2025 09:19:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Jul-2025 09:19:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Jul-2025 09:19:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Jul-2025 09:19:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Jul-2025 09:19:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Jul-2025 09:20:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Jul-2025 09:20:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Jul-2025 09:20:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Jul-2025 09:20:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Jul-2025 09:20:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Jul-2025 09:20:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Jul-2025 09:20:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Jul-2025 09:20:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Jul-2025 09:20:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Jul-2025 09:20:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Jul-2025 09:20:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Jul-2025 09:20:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Jul-2025 09:20:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Jul-2025 09:20:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Jul-2025 09:20:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Jul-2025 09:20:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Jul-2025 09:20:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Jul-2025 09:20:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Jul-2025 09:20:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Jul-2025 09:20:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Jul-2025 09:20:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Jul-2025 09:20:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Jul-2025 09:20:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Jul-2025 09:20:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Jul-2025 09:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Jul-2025 09:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Jul-2025 09:21:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 10:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Aug-2025 10:58:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[08-Aug-2025 10:58:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Aug-2025 10:58:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[08-Aug-2025 10:58:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Aug-2025 10:58:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[08-Aug-2025 10:58:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Aug-2025 10:59:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[08-Aug-2025 10:59:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Aug-2025 10:59:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[08-Aug-2025 10:59:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Aug-2025 10:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[08-Aug-2025 10:59:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Aug-2025 10:59:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[08-Aug-2025 10:59:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Aug-2025 10:59:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[08-Aug-2025 11:00:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Aug-2025 11:00:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[08-Aug-2025 11:00:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Aug-2025 11:00:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[08-Aug-2025 11:00:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Aug-2025 11:00:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[08-Aug-2025 11:01:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Aug-2025 11:01:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[08-Aug-2025 11:01:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Aug-2025 11:01:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[08-Aug-2025 11:01:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Aug-2025 11:01:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[08-Aug-2025 11:01:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 11:01:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[08-Aug-2025 11:01:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Aug-2025 11:01:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[08-Aug-2025 11:02:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Aug-2025 11:02:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[08-Aug-2025 11:02:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Aug-2025 11:02:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[08-Aug-2025 11:02:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Aug-2025 11:02:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[08-Aug-2025 11:02:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Aug-2025 11:02:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[08-Aug-2025 11:03:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Aug-2025 11:03:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[08-Aug-2025 11:03:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Aug-2025 11:03:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[08-Aug-2025 11:03:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Aug-2025 11:03:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[08-Aug-2025 11:03:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Aug-2025 11:03:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[08-Aug-2025 11:04:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Aug-2025 11:04:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[08-Aug-2025 11:04:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Aug-2025 11:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[08-Aug-2025 11:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Aug-2025 11:04:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[08-Aug-2025 11:04:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Aug-2025 11:04:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[08-Aug-2025 11:04:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Aug-2025 11:05:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[08-Aug-2025 11:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Aug-2025 11:05:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[08-Aug-2025 11:05:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Aug-2025 11:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[08-Aug-2025 11:05:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Aug-2025 11:05:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[08-Aug-2025 11:05:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Aug-2025 11:06:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[08-Aug-2025 11:06:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Aug-2025 11:06:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[08-Aug-2025 11:06:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Aug-2025 11:06:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[08-Aug-2025 11:06:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Aug-2025 11:06:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[08-Aug-2025 11:06:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Aug-2025 11:06:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[08-Aug-2025 11:06:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Aug-2025 11:07:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[08-Aug-2025 11:07:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Aug-2025 11:07:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[08-Aug-2025 11:07:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[08-Aug-2025 11:07:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:11:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:11:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:11:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:11:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:11:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:11:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:12:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:12:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:12:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:12:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:12:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:12:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 05:12:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 05:12:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 05:12:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 05:12:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 05:12:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 05:12:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 05:12:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 05:13:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 05:13:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 05:13:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 05:13:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 05:13:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 05:13:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 05:13:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 05:13:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 05:13:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 05:13:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 05:13:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 05:13:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 05:13:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 05:13:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 05:13:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 05:13:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 05:14:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 05:14:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 05:14:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 05:14:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 05:14:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 05:14:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 05:14:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 05:14:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 05:14:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 05:14:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 05:14:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 05:14:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 05:14:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 05:14:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 05:14:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 05:15:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 05:15:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 05:15:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 05:15:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 05:15:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 05:15:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 05:15:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 05:15:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 05:15:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 05:15:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 05:15:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 05:15:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 05:15:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 05:15:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 05:15:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 05:15:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 05:15:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 05:16:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 05:16:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 05:16:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 05:16:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 05:16:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 05:16:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 05:16:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 05:16:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 05:16:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 05:16:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 05:16:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:16:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 05:59:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:59:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Aug-2025 05:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Aug-2025 05:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:59:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Aug-2025 05:59:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:59:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Aug-2025 05:59:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:59:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Aug-2025 05:59:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 05:59:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Aug-2025 06:00:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 06:00:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Aug-2025 06:00:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 06:00:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Aug-2025 06:00:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 06:00:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Aug-2025 06:00:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 06:00:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Aug-2025 06:00:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 06:00:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Aug-2025 06:01:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 06:01:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Aug-2025 06:01:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 06:01:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Aug-2025 06:01:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 06:01:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Aug-2025 06:01:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 06:01:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Aug-2025 06:01:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 06:01:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Aug-2025 06:01:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 06:01:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Aug-2025 06:01:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 06:01:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Aug-2025 06:01:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 06:01:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Aug-2025 06:02:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 06:02:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Aug-2025 06:02:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 06:02:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Aug-2025 06:02:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 06:02:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Aug-2025 06:02:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 06:02:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Aug-2025 06:02:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 06:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Aug-2025 06:02:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 06:02:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Aug-2025 06:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 06:03:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Aug-2025 06:03:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 06:03:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Aug-2025 06:03:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 06:03:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Aug-2025 06:03:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 06:03:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Aug-2025 06:03:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 06:03:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Aug-2025 06:03:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 06:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Aug-2025 06:03:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 06:03:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Aug-2025 06:03:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 06:03:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Aug-2025 06:04:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 06:04:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Aug-2025 06:04:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 06:04:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Aug-2025 06:04:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 06:04:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Aug-2025 06:04:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 06:04:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Aug-2025 06:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 06:04:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Aug-2025 06:04:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 06:04:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Aug-2025 06:04:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Aug-2025 06:04:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[20-Aug-2025 23:23:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[20-Aug-2025 23:23:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[20-Aug-2025 23:23:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[20-Aug-2025 23:23:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[20-Aug-2025 23:23:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[20-Aug-2025 23:23:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[20-Aug-2025 23:23:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[20-Aug-2025 23:23:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[20-Aug-2025 23:23:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[20-Aug-2025 23:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[20-Aug-2025 23:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[20-Aug-2025 23:23:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[20-Aug-2025 23:23:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[20-Aug-2025 23:23:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[20-Aug-2025 23:23:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[20-Aug-2025 23:23:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[20-Aug-2025 23:23:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[20-Aug-2025 23:23:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[20-Aug-2025 23:23:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[20-Aug-2025 23:23:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[20-Aug-2025 23:23:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[20-Aug-2025 23:23:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[20-Aug-2025 23:23:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[20-Aug-2025 23:23:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[20-Aug-2025 23:23:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[20-Aug-2025 23:23:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[20-Aug-2025 23:23:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[20-Aug-2025 23:23:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[20-Aug-2025 23:23:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[20-Aug-2025 23:23:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[20-Aug-2025 23:23:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[20-Aug-2025 23:23:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[20-Aug-2025 23:23:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[20-Aug-2025 23:23:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[20-Aug-2025 23:23:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[20-Aug-2025 23:23:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[20-Aug-2025 23:23:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[20-Aug-2025 23:23:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Aug-2025 20:51:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[21-Aug-2025 20:51:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[21-Aug-2025 20:52:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[21-Aug-2025 20:52:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[21-Aug-2025 20:52:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[21-Aug-2025 20:52:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[21-Aug-2025 20:53:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[21-Aug-2025 20:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[21-Aug-2025 20:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[21-Aug-2025 20:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[21-Aug-2025 20:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[21-Aug-2025 20:53:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[21-Aug-2025 20:54:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[21-Aug-2025 20:54:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[21-Aug-2025 20:54:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[21-Aug-2025 20:54:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Aug-2025 20:55:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[21-Aug-2025 20:55:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[21-Aug-2025 20:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[21-Aug-2025 20:55:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[21-Aug-2025 20:55:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[21-Aug-2025 20:55:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[21-Aug-2025 20:56:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[21-Aug-2025 20:56:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[21-Aug-2025 20:57:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[21-Aug-2025 20:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[21-Aug-2025 20:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[21-Aug-2025 20:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[21-Aug-2025 20:57:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[21-Aug-2025 20:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[21-Aug-2025 20:57:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[21-Aug-2025 20:58:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[21-Aug-2025 20:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[21-Aug-2025 20:58:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[21-Aug-2025 20:58:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[21-Aug-2025 20:58:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[21-Aug-2025 20:58:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[21-Aug-2025 20:59:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[21-Aug-2025 20:59:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[21-Aug-2025 20:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:44:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 20:44:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 20:44:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 20:44:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 20:44:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 20:44:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 20:44:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 20:44:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 20:44:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 20:44:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 20:44:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 20:44:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 20:44:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 20:44:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 20:44:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 20:44:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 20:44:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 20:44:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 20:44:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 20:44:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 20:44:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 20:44:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 20:45:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 20:45:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 20:45:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 20:45:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 20:45:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 20:45:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 20:45:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 20:45:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 20:45:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:45:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 20:45:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 20:45:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 20:45:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 20:45:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 20:45:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 20:45:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 20:45:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 20:45:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 20:45:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 20:45:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 20:45:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 20:45:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 20:45:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 20:45:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 20:45:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 20:45:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 20:45:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 20:45:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 20:45:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 20:45:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 20:45:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 20:45:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 20:45:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 20:46:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 20:46:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 20:46:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 20:46:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 20:46:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 20:46:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 20:46:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 20:46:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 20:46:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 20:46:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 20:46:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 20:46:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 20:46:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 20:46:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 20:46:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 20:46:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 20:46:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 20:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 20:46:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 20:46:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 20:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 20:46:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 20:46:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 20:46:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 20:46:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 21:09:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 21:09:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Aug-2025 21:09:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 21:09:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Aug-2025 21:09:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 21:09:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Aug-2025 21:09:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 21:09:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Aug-2025 21:09:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 21:09:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Aug-2025 21:09:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 21:09:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Aug-2025 21:09:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 21:09:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Aug-2025 21:09:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 21:09:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Aug-2025 21:10:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 21:10:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Aug-2025 21:10:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 21:10:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Aug-2025 21:10:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 21:10:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Aug-2025 21:10:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 21:10:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Aug-2025 21:10:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 21:10:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Aug-2025 21:10:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 21:10:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Aug-2025 21:10:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 21:10:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Aug-2025 21:10:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 21:10:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Aug-2025 21:10:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 21:10:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Aug-2025 21:10:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 21:10:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Aug-2025 21:10:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 21:11:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Aug-2025 21:11:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 21:11:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Aug-2025 21:11:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 21:11:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Aug-2025 21:11:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 21:11:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Aug-2025 21:11:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 21:11:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Aug-2025 21:11:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 21:11:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Aug-2025 21:11:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 21:11:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Aug-2025 21:11:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 21:11:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Aug-2025 21:11:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 21:11:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Aug-2025 21:11:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 21:11:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Aug-2025 21:11:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 21:11:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Aug-2025 21:11:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 21:11:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Aug-2025 21:11:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 21:11:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Aug-2025 21:11:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 21:12:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Aug-2025 21:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 21:12:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Aug-2025 21:12:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 21:12:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Aug-2025 21:12:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 21:12:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Aug-2025 21:12:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 21:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Aug-2025 21:12:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 21:12:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Aug-2025 21:12:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 21:12:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Aug-2025 21:12:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 21:12:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Aug-2025 21:12:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Aug-2025 21:12:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[26-Aug-2025 06:25:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[26-Aug-2025 06:25:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[26-Aug-2025 06:25:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[26-Aug-2025 06:25:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[26-Aug-2025 06:25:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[26-Aug-2025 06:25:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[26-Aug-2025 06:25:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[26-Aug-2025 06:25:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[26-Aug-2025 06:25:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[26-Aug-2025 06:25:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[26-Aug-2025 06:25:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[26-Aug-2025 06:25:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[26-Aug-2025 06:25:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[26-Aug-2025 06:25:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[26-Aug-2025 06:25:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[26-Aug-2025 06:25:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[26-Aug-2025 06:25:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[26-Aug-2025 06:25:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[26-Aug-2025 06:25:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[26-Aug-2025 06:25:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[26-Aug-2025 06:25:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[26-Aug-2025 06:25:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[26-Aug-2025 06:25:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[26-Aug-2025 06:25:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[26-Aug-2025 06:25:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[26-Aug-2025 06:25:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[26-Aug-2025 06:25:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[26-Aug-2025 06:25:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[26-Aug-2025 06:26:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[26-Aug-2025 06:26:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[26-Aug-2025 06:26:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[26-Aug-2025 06:26:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[26-Aug-2025 06:26:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[26-Aug-2025 06:26:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[26-Aug-2025 06:26:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[26-Aug-2025 06:26:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[26-Aug-2025 06:35:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[26-Aug-2025 06:35:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[26-Aug-2025 06:35:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[26-Aug-2025 06:35:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[26-Aug-2025 06:35:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[26-Aug-2025 06:35:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[26-Aug-2025 06:35:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[26-Aug-2025 06:35:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[26-Aug-2025 06:35:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[26-Aug-2025 06:35:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[26-Aug-2025 06:35:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[26-Aug-2025 06:35:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[26-Aug-2025 06:35:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[26-Aug-2025 06:35:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[26-Aug-2025 06:35:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[26-Aug-2025 06:35:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[26-Aug-2025 06:35:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[26-Aug-2025 06:35:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[26-Aug-2025 06:35:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[26-Aug-2025 06:35:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[26-Aug-2025 06:35:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[26-Aug-2025 06:35:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[26-Aug-2025 06:35:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[26-Aug-2025 06:35:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[26-Aug-2025 06:35:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[26-Aug-2025 06:35:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[26-Aug-2025 06:35:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[26-Aug-2025 06:35:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[26-Aug-2025 06:35:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[26-Aug-2025 06:35:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[26-Aug-2025 06:35:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[26-Aug-2025 06:35:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[26-Aug-2025 06:35:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[26-Aug-2025 06:35:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[27-Aug-2025 12:57:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[27-Aug-2025 12:57:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[27-Aug-2025 12:58:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[27-Aug-2025 12:58:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[27-Aug-2025 12:58:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[27-Aug-2025 13:00:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[27-Aug-2025 13:00:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[27-Aug-2025 13:01:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[27-Aug-2025 13:01:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[27-Aug-2025 13:02:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[27-Aug-2025 13:02:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[27-Aug-2025 13:02:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[27-Aug-2025 13:02:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[27-Aug-2025 13:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[27-Aug-2025 13:03:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[27-Aug-2025 13:03:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[27-Aug-2025 13:03:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[27-Aug-2025 13:04:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[27-Aug-2025 13:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[27-Aug-2025 13:04:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[27-Aug-2025 13:04:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[27-Aug-2025 13:05:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[27-Aug-2025 13:05:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[27-Aug-2025 13:05:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[27-Aug-2025 13:05:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[27-Aug-2025 13:05:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[27-Aug-2025 13:05:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[27-Aug-2025 13:06:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[27-Aug-2025 13:06:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[27-Aug-2025 13:06:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[27-Aug-2025 13:06:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[27-Aug-2025 13:07:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[27-Aug-2025 13:07:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[27-Aug-2025 13:08:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[27-Aug-2025 13:08:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[27-Aug-2025 13:08:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[27-Aug-2025 13:08:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[27-Aug-2025 13:08:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[27-Aug-2025 13:09:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[27-Aug-2025 13:09:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[27-Aug-2025 15:05:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[27-Aug-2025 15:05:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[27-Aug-2025 15:05:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[27-Aug-2025 15:06:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[27-Aug-2025 15:06:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[27-Aug-2025 15:06:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[27-Aug-2025 15:07:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[27-Aug-2025 15:07:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[27-Aug-2025 15:07:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[27-Aug-2025 15:07:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[27-Aug-2025 15:08:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[27-Aug-2025 15:08:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[27-Aug-2025 15:08:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[27-Aug-2025 15:09:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[27-Aug-2025 15:09:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[27-Aug-2025 15:09:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[27-Aug-2025 15:10:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[27-Aug-2025 15:10:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[27-Aug-2025 15:10:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[27-Aug-2025 15:10:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[27-Aug-2025 15:10:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[27-Aug-2025 15:11:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[27-Aug-2025 15:11:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[27-Aug-2025 15:12:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[27-Aug-2025 15:12:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[27-Aug-2025 15:13:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[27-Aug-2025 15:13:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[27-Aug-2025 15:13:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[27-Aug-2025 15:13:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[27-Aug-2025 15:14:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[27-Aug-2025 15:14:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[27-Aug-2025 15:15:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[27-Aug-2025 15:15:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[27-Aug-2025 15:15:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[27-Aug-2025 15:15:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[27-Aug-2025 15:16:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[27-Aug-2025 15:16:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[27-Aug-2025 15:16:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[27-Aug-2025 15:16:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[27-Aug-2025 15:17:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Sep-2025 00:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Sep-2025 00:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Sep-2025 00:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Sep-2025 00:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Sep-2025 00:41:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Sep-2025 00:41:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Sep-2025 00:41:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Sep-2025 00:42:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Sep-2025 00:42:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Sep-2025 00:42:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Sep-2025 00:42:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Sep-2025 00:42:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Sep-2025 00:42:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Sep-2025 00:42:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Sep-2025 00:42:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Sep-2025 00:42:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Sep-2025 00:42:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Sep-2025 00:42:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Sep-2025 00:42:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Sep-2025 00:42:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Sep-2025 00:42:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Sep-2025 00:42:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Sep-2025 00:42:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Sep-2025 00:42:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Sep-2025 00:42:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Sep-2025 00:42:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Sep-2025 00:42:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Sep-2025 00:42:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Sep-2025 00:42:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Sep-2025 00:42:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Sep-2025 00:42:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Sep-2025 00:42:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Sep-2025 00:42:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Sep-2025 00:42:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Sep-2025 00:42:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Sep-2025 00:42:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Sep-2025 00:42:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Sep-2025 00:42:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Sep-2025 00:59:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Sep-2025 00:59:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Sep-2025 00:59:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Sep-2025 00:59:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Sep-2025 00:59:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Sep-2025 00:59:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Sep-2025 00:59:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Sep-2025 00:59:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Sep-2025 01:00:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Sep-2025 01:00:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Sep-2025 01:00:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Sep-2025 01:00:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Sep-2025 01:00:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Sep-2025 01:00:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Sep-2025 01:00:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Sep-2025 01:00:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Sep-2025 01:00:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Sep-2025 01:00:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Sep-2025 01:00:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Sep-2025 01:00:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Sep-2025 01:00:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Sep-2025 01:00:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Sep-2025 01:00:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Sep-2025 01:00:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Sep-2025 01:00:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Sep-2025 01:00:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Sep-2025 01:00:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Sep-2025 01:00:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Sep-2025 01:00:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Sep-2025 01:00:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Sep-2025 01:00:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Sep-2025 01:00:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Sep-2025 01:00:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Sep-2025 01:00:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Sep-2025 01:55:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Sep-2025 01:55:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Sep-2025 01:55:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Sep-2025 01:55:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Sep-2025 01:55:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Sep-2025 01:55:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Sep-2025 01:55:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Sep-2025 01:55:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Sep-2025 01:55:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Sep-2025 01:55:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Sep-2025 01:55:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Sep-2025 01:55:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Sep-2025 01:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Sep-2025 01:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Sep-2025 01:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Sep-2025 01:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Sep-2025 01:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Sep-2025 01:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Sep-2025 01:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Sep-2025 01:55:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Sep-2025 01:55:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Sep-2025 01:55:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Sep-2025 01:55:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Sep-2025 01:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Sep-2025 01:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Sep-2025 01:55:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Sep-2025 01:55:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Sep-2025 01:55:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Sep-2025 02:03:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Sep-2025 02:03:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Sep-2025 02:03:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Sep-2025 02:03:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Sep-2025 02:03:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Sep-2025 02:03:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Sep-2025 02:03:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Sep-2025 02:03:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Sep-2025 02:03:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Sep-2025 02:03:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Sep-2025 02:03:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Sep-2025 02:03:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Sep-2025 02:03:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Sep-2025 02:03:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Sep-2025 02:03:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Sep-2025 02:03:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Sep-2025 02:03:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Sep-2025 02:03:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Sep-2025 02:03:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Sep-2025 02:03:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Sep-2025 02:03:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Sep-2025 02:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Sep-2025 02:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Sep-2025 02:03:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Sep-2025 02:03:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Sep-2025 02:03:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Sep-2025 02:03:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Sep-2025 02:03:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Sep-2025 02:03:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Sep-2025 02:03:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[09-Sep-2025 17:43:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[09-Sep-2025 17:43:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[09-Sep-2025 17:43:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[09-Sep-2025 17:43:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[09-Sep-2025 17:43:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[09-Sep-2025 17:43:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[09-Sep-2025 17:43:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[09-Sep-2025 17:43:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[09-Sep-2025 17:43:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[09-Sep-2025 17:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[09-Sep-2025 17:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[09-Sep-2025 17:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[09-Sep-2025 17:43:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[09-Sep-2025 17:44:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[09-Sep-2025 17:44:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[09-Sep-2025 17:44:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[09-Sep-2025 17:44:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[09-Sep-2025 17:44:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[09-Sep-2025 17:44:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[09-Sep-2025 17:44:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[09-Sep-2025 17:44:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[09-Sep-2025 17:44:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[09-Sep-2025 17:44:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[09-Sep-2025 17:44:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[09-Sep-2025 17:44:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[09-Sep-2025 17:44:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[09-Sep-2025 17:44:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[09-Sep-2025 17:44:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[09-Sep-2025 17:44:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[09-Sep-2025 17:44:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[09-Sep-2025 17:44:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[09-Sep-2025 17:44:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[09-Sep-2025 17:44:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[09-Sep-2025 17:44:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[09-Sep-2025 17:44:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[09-Sep-2025 17:44:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[09-Sep-2025 17:44:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[09-Sep-2025 17:55:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[09-Sep-2025 17:55:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[09-Sep-2025 17:55:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[09-Sep-2025 17:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[09-Sep-2025 17:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[09-Sep-2025 17:55:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[09-Sep-2025 17:55:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[09-Sep-2025 17:55:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[09-Sep-2025 17:55:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[09-Sep-2025 17:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[09-Sep-2025 17:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[09-Sep-2025 17:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[09-Sep-2025 17:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[09-Sep-2025 17:55:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[09-Sep-2025 17:55:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[09-Sep-2025 17:55:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[09-Sep-2025 17:55:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[09-Sep-2025 17:55:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[09-Sep-2025 17:55:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[09-Sep-2025 17:55:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[09-Sep-2025 17:55:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[09-Sep-2025 17:55:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[09-Sep-2025 17:55:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[09-Sep-2025 17:55:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[09-Sep-2025 17:55:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[09-Sep-2025 17:55:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[09-Sep-2025 17:55:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[09-Sep-2025 17:55:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[09-Sep-2025 17:55:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[09-Sep-2025 17:55:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[09-Sep-2025 17:55:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[09-Sep-2025 17:55:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[09-Sep-2025 17:55:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[09-Sep-2025 17:55:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[09-Sep-2025 17:55:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[09-Sep-2025 17:55:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Sep-2025 15:08:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Sep-2025 15:08:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Sep-2025 15:08:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Sep-2025 15:08:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Sep-2025 15:08:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Sep-2025 15:08:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Sep-2025 15:08:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Sep-2025 15:08:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Sep-2025 15:08:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Sep-2025 15:08:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Sep-2025 15:08:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Sep-2025 15:08:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Sep-2025 15:08:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Sep-2025 15:08:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Sep-2025 15:08:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Sep-2025 15:08:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Sep-2025 15:08:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Sep-2025 15:08:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Sep-2025 15:08:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Sep-2025 15:08:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Sep-2025 15:08:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Sep-2025 15:08:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Sep-2025 15:08:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Sep-2025 15:08:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Sep-2025 15:08:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Sep-2025 15:08:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Sep-2025 15:16:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Sep-2025 15:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Sep-2025 15:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Sep-2025 15:16:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Sep-2025 15:16:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Sep-2025 15:16:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Sep-2025 15:16:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Sep-2025 15:16:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Sep-2025 15:16:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Sep-2025 15:16:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Sep-2025 15:16:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Sep-2025 15:16:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Sep-2025 15:16:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Sep-2025 15:16:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Sep-2025 15:16:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Sep-2025 15:16:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Sep-2025 15:16:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Sep-2025 15:16:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Sep-2025 15:16:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Sep-2025 15:16:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Sep-2025 15:16:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Sep-2025 15:16:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Sep-2025 15:16:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Sep-2025 15:16:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Sep-2025 15:16:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Sep-2025 15:16:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Sep-2025 15:16:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Sep-2025 15:16:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Sep-2025 15:17:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Sep-2025 15:17:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Sep-2025 15:17:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Sep-2025 17:02:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Sep-2025 17:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Sep-2025 17:02:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Sep-2025 17:02:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Sep-2025 17:02:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Sep-2025 17:02:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Sep-2025 17:02:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Sep-2025 17:02:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Sep-2025 17:02:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Sep-2025 17:02:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Sep-2025 17:02:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Sep-2025 17:02:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Sep-2025 17:02:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Sep-2025 17:02:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Sep-2025 17:02:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Sep-2025 17:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Sep-2025 17:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Sep-2025 17:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Sep-2025 17:02:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Sep-2025 17:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Sep-2025 17:02:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Sep-2025 17:03:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Sep-2025 17:03:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Sep-2025 17:03:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Sep-2025 17:03:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Sep-2025 17:03:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Sep-2025 17:03:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Sep-2025 17:03:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Sep-2025 17:03:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Sep-2025 17:03:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Sep-2025 17:03:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Sep-2025 17:03:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[18-Sep-2025 17:14:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[18-Sep-2025 17:14:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[18-Sep-2025 17:14:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[18-Sep-2025 17:14:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[18-Sep-2025 17:14:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[18-Sep-2025 17:14:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[18-Sep-2025 17:14:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[18-Sep-2025 17:14:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[18-Sep-2025 17:14:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[18-Sep-2025 17:14:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[18-Sep-2025 17:14:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[18-Sep-2025 17:14:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[18-Sep-2025 17:14:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[18-Sep-2025 17:14:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[18-Sep-2025 17:14:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[18-Sep-2025 17:14:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[18-Sep-2025 17:14:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[18-Sep-2025 17:14:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[18-Sep-2025 17:14:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[18-Sep-2025 17:14:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[18-Sep-2025 17:14:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[18-Sep-2025 17:14:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[18-Sep-2025 17:14:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[18-Sep-2025 17:14:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[18-Sep-2025 17:14:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[18-Sep-2025 17:14:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[18-Sep-2025 17:14:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[18-Sep-2025 17:14:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[18-Sep-2025 17:14:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[18-Sep-2025 17:14:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[18-Sep-2025 17:14:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[18-Sep-2025 17:14:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[18-Sep-2025 17:14:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[18-Sep-2025 17:14:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[18-Sep-2025 17:14:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[18-Sep-2025 17:15:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[18-Sep-2025 17:15:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2025 06:33:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2025 06:33:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2025 06:33:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2025 06:33:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2025 06:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2025 06:33:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2025 06:33:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2025 06:33:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2025 06:33:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2025 06:33:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2025 06:33:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2025 06:33:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2025 06:33:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2025 06:33:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2025 06:33:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2025 06:33:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2025 06:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2025 06:33:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2025 06:33:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2025 06:33:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2025 06:33:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2025 06:33:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2025 06:34:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2025 06:34:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2025 06:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2025 06:34:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2025 06:34:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2025 06:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2025 06:34:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2025 06:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2025 06:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2025 06:34:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2025 06:34:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[19-Sep-2025 06:46:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[19-Sep-2025 06:46:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[19-Sep-2025 06:46:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[19-Sep-2025 06:46:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[19-Sep-2025 06:46:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[19-Sep-2025 06:46:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[19-Sep-2025 06:46:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[19-Sep-2025 06:46:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[19-Sep-2025 06:46:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[19-Sep-2025 06:46:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[19-Sep-2025 06:46:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[19-Sep-2025 06:46:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[19-Sep-2025 06:46:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[19-Sep-2025 06:46:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[19-Sep-2025 06:46:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[19-Sep-2025 06:46:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[19-Sep-2025 06:46:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[19-Sep-2025 06:46:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[19-Sep-2025 06:46:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[19-Sep-2025 06:46:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[19-Sep-2025 06:46:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[19-Sep-2025 06:46:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[19-Sep-2025 06:46:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[19-Sep-2025 06:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[19-Sep-2025 06:46:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[19-Sep-2025 06:46:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[19-Sep-2025 06:46:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[19-Sep-2025 06:46:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[19-Sep-2025 06:46:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[19-Sep-2025 06:46:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[19-Sep-2025 06:46:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[19-Sep-2025 06:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[19-Sep-2025 06:46:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[19-Sep-2025 06:46:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[19-Sep-2025 06:46:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[19-Sep-2025 06:46:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[19-Sep-2025 06:46:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[19-Sep-2025 06:46:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Sep-2025 12:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Sep-2025 12:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Sep-2025 12:41:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Sep-2025 12:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Sep-2025 12:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Sep-2025 12:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Sep-2025 12:41:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Sep-2025 12:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Sep-2025 12:41:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Sep-2025 12:41:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Sep-2025 12:41:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Sep-2025 12:41:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Sep-2025 12:42:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Sep-2025 12:42:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Sep-2025 12:42:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Sep-2025 12:42:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Sep-2025 12:42:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Sep-2025 12:42:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Sep-2025 12:42:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Sep-2025 12:42:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Sep-2025 12:42:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Sep-2025 12:42:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Sep-2025 12:42:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Sep-2025 12:42:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Sep-2025 12:42:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Sep-2025 12:42:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Sep-2025 12:42:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Sep-2025 12:42:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Sep-2025 12:42:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Sep-2025 12:42:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Sep-2025 12:42:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Sep-2025 12:42:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Sep-2025 12:42:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Sep-2025 12:42:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Sep-2025 12:42:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Sep-2025 12:42:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Sep-2025 12:42:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[22-Sep-2025 12:56:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[22-Sep-2025 12:56:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[22-Sep-2025 12:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[22-Sep-2025 12:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[22-Sep-2025 12:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[22-Sep-2025 12:56:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[22-Sep-2025 12:56:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[22-Sep-2025 12:56:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[22-Sep-2025 12:56:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[22-Sep-2025 12:56:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[22-Sep-2025 12:57:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[22-Sep-2025 12:57:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[22-Sep-2025 12:57:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[22-Sep-2025 12:57:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[22-Sep-2025 12:57:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[22-Sep-2025 12:57:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[22-Sep-2025 12:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[22-Sep-2025 12:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[22-Sep-2025 12:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[22-Sep-2025 12:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[22-Sep-2025 12:57:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[22-Sep-2025 12:57:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[22-Sep-2025 12:57:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[22-Sep-2025 12:57:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[22-Sep-2025 12:57:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[22-Sep-2025 12:57:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[22-Sep-2025 12:57:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[22-Sep-2025 12:57:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[22-Sep-2025 12:57:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[22-Sep-2025 12:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[22-Sep-2025 12:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[22-Sep-2025 12:57:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[22-Sep-2025 12:57:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[22-Sep-2025 12:57:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[22-Sep-2025 12:57:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[22-Sep-2025 12:57:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[22-Sep-2025 12:57:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[22-Sep-2025 12:57:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[25-Sep-2025 21:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[25-Sep-2025 21:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[25-Sep-2025 21:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[25-Sep-2025 21:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[25-Sep-2025 21:59:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[25-Sep-2025 21:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[25-Sep-2025 21:59:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[25-Sep-2025 21:59:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[25-Sep-2025 21:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[25-Sep-2025 21:59:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[25-Sep-2025 21:59:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[25-Sep-2025 21:59:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[25-Sep-2025 21:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[25-Sep-2025 21:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[25-Sep-2025 21:59:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[25-Sep-2025 21:59:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[25-Sep-2025 21:59:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[25-Sep-2025 21:59:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[25-Sep-2025 21:59:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[25-Sep-2025 21:59:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[25-Sep-2025 21:59:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[25-Sep-2025 21:59:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[25-Sep-2025 21:59:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[25-Sep-2025 21:59:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[25-Sep-2025 21:59:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[25-Sep-2025 21:59:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[25-Sep-2025 21:59:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[25-Sep-2025 21:59:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[25-Sep-2025 21:59:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[25-Sep-2025 21:59:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[25-Sep-2025 21:59:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[25-Sep-2025 21:59:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[25-Sep-2025 21:59:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[25-Sep-2025 21:59:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[25-Sep-2025 21:59:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[25-Sep-2025 21:59:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[25-Sep-2025 21:59:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[25-Sep-2025 21:59:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[25-Sep-2025 21:59:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[25-Sep-2025 21:59:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[25-Sep-2025 22:11:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[25-Sep-2025 22:11:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[25-Sep-2025 22:11:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[25-Sep-2025 22:11:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[25-Sep-2025 22:11:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[25-Sep-2025 22:11:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[25-Sep-2025 22:11:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[25-Sep-2025 22:11:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[25-Sep-2025 22:11:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[25-Sep-2025 22:11:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[25-Sep-2025 22:11:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[25-Sep-2025 22:11:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[25-Sep-2025 22:12:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[25-Sep-2025 22:12:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[25-Sep-2025 22:12:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[25-Sep-2025 22:12:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[25-Sep-2025 22:12:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[25-Sep-2025 22:12:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[25-Sep-2025 22:12:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[25-Sep-2025 22:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[25-Sep-2025 22:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[25-Sep-2025 22:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[25-Sep-2025 22:12:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[25-Sep-2025 22:12:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[25-Sep-2025 22:12:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[25-Sep-2025 22:12:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[25-Sep-2025 22:12:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[25-Sep-2025 22:12:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[25-Sep-2025 22:12:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[25-Sep-2025 22:12:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[25-Sep-2025 22:12:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[25-Sep-2025 22:12:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[25-Sep-2025 22:12:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[25-Sep-2025 22:12:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[25-Sep-2025 22:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[25-Sep-2025 22:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[25-Sep-2025 22:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[25-Sep-2025 22:12:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Oct-2025 10:41:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Oct-2025 10:41:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Oct-2025 10:41:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Oct-2025 10:41:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Oct-2025 10:41:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Oct-2025 10:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Oct-2025 10:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Oct-2025 10:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Oct-2025 10:41:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Oct-2025 10:41:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Oct-2025 10:41:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Oct-2025 10:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Oct-2025 10:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Oct-2025 10:41:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Oct-2025 10:41:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Oct-2025 10:41:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Oct-2025 10:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Oct-2025 10:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Oct-2025 10:41:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Oct-2025 10:41:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Oct-2025 10:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Oct-2025 10:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Oct-2025 10:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Oct-2025 10:49:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Oct-2025 10:49:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Oct-2025 10:49:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Oct-2025 10:49:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Oct-2025 10:49:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Oct-2025 10:49:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Oct-2025 10:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Oct-2025 10:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Oct-2025 10:49:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Oct-2025 10:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Oct-2025 10:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Oct-2025 10:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Oct-2025 10:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Oct-2025 10:49:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Oct-2025 10:49:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Oct-2025 10:49:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Oct-2025 10:49:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Oct-2025 10:49:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Oct-2025 10:49:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Oct-2025 10:49:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Oct-2025 10:49:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Oct-2025 10:49:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Oct-2025 10:49:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Oct-2025 10:49:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Oct-2025 10:49:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Oct-2025 10:49:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Oct-2025 02:58:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Oct-2025 03:09:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Oct-2025 03:16:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Oct-2025 03:20:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Oct-2025 03:35:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Oct-2025 03:48:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Oct-2025 03:53:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Oct-2025 04:01:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Oct-2025 04:13:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Oct-2025 04:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Oct-2025 04:27:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[07-Oct-2025 04:37:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Oct-2025 04:41:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Oct-2025 04:43:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Oct-2025 04:59:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Oct-2025 05:06:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:30:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Nov-2025 08:30:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Nov-2025 08:30:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Nov-2025 08:30:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Nov-2025 08:30:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Nov-2025 08:30:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Nov-2025 08:30:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Nov-2025 08:30:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Nov-2025 08:30:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Nov-2025 08:30:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Nov-2025 08:30:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Nov-2025 08:30:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Nov-2025 08:30:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Nov-2025 08:30:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Nov-2025 08:30:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Nov-2025 08:30:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Nov-2025 08:30:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Nov-2025 08:30:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Nov-2025 08:30:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Nov-2025 08:30:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Nov-2025 08:30:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Nov-2025 08:30:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Nov-2025 08:30:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Nov-2025 08:30:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Nov-2025 08:30:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Nov-2025 08:30:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Nov-2025 08:30:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Nov-2025 08:30:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Nov-2025 08:30:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:30:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[02-Nov-2025 08:39:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[02-Nov-2025 08:39:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[02-Nov-2025 08:39:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[02-Nov-2025 08:39:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[02-Nov-2025 08:39:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[02-Nov-2025 08:39:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[02-Nov-2025 08:39:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[02-Nov-2025 08:39:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[02-Nov-2025 08:39:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[02-Nov-2025 08:39:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[02-Nov-2025 08:39:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[02-Nov-2025 08:39:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[02-Nov-2025 08:39:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[02-Nov-2025 08:39:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[02-Nov-2025 08:39:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[02-Nov-2025 08:39:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[02-Nov-2025 08:39:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[02-Nov-2025 08:39:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[02-Nov-2025 08:39:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[02-Nov-2025 08:39:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[02-Nov-2025 08:39:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[02-Nov-2025 08:39:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[02-Nov-2025 08:39:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[02-Nov-2025 08:40:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[02-Nov-2025 08:40:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[02-Nov-2025 08:40:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[02-Nov-2025 08:40:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[02-Nov-2025 08:40:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[02-Nov-2025 08:40:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[02-Nov-2025 08:40:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[02-Nov-2025 08:40:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[02-Nov-2025 08:40:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[02-Nov-2025 08:40:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[02-Nov-2025 08:40:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[02-Nov-2025 08:40:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[02-Nov-2025 08:40:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[02-Nov-2025 08:40:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[02-Nov-2025 08:40:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[02-Nov-2025 08:40:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[02-Nov-2025 08:40:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Dec-2025 18:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Dec-2025 18:47:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Dec-2025 18:47:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Dec-2025 18:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Dec-2025 18:47:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Dec-2025 18:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Dec-2025 18:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Dec-2025 18:47:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Dec-2025 18:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Dec-2025 18:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Dec-2025 18:47:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Dec-2025 18:47:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Dec-2025 18:47:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Dec-2025 18:47:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Dec-2025 18:47:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Dec-2025 18:47:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Dec-2025 18:47:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Dec-2025 18:47:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Dec-2025 18:47:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Dec-2025 18:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Dec-2025 18:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Dec-2025 18:47:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Dec-2025 18:47:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Dec-2025 18:47:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Dec-2025 18:47:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Dec-2025 18:47:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Dec-2025 18:47:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Dec-2025 18:47:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Dec-2025 18:47:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Dec-2025 18:47:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Dec-2025 18:47:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Dec-2025 18:47:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Dec-2025 18:47:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Dec-2025 18:47:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Dec-2025 18:47:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Dec-2025 18:47:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Dec-2025 18:47:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Dec-2025 18:47:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Dec-2025 18:47:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Dec-2025 18:47:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Dec-2025 18:57:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Dec-2025 18:57:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Dec-2025 18:57:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Dec-2025 18:57:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Dec-2025 18:57:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Dec-2025 18:57:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Dec-2025 18:57:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Dec-2025 18:57:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Dec-2025 18:57:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Dec-2025 18:57:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Dec-2025 18:57:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Dec-2025 18:57:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Dec-2025 18:57:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Dec-2025 18:57:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Dec-2025 18:57:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Dec-2025 18:58:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Dec-2025 18:58:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Dec-2025 18:58:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Dec-2025 18:58:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Dec-2025 18:58:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Dec-2025 18:58:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Dec-2025 18:58:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Dec-2025 18:58:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Dec-2025 18:58:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Dec-2025 18:58:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Dec-2025 18:58:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Dec-2025 18:58:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Dec-2025 18:58:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Dec-2025 18:58:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Dec-2025 18:58:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Dec-2025 18:58:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Dec-2025 18:58:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Dec-2025 18:58:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Dec-2025 18:58:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Dec-2025 18:58:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Dec-2025 18:58:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Dec-2025 18:58:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Dec-2025 18:58:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[23-Dec-2025 11:43:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[23-Dec-2025 11:43:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[23-Dec-2025 11:43:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[23-Dec-2025 11:43:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[23-Dec-2025 11:43:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[23-Dec-2025 11:43:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[23-Dec-2025 11:43:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[23-Dec-2025 11:43:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[23-Dec-2025 11:43:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[23-Dec-2025 11:43:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[23-Dec-2025 11:43:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[23-Dec-2025 11:43:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[23-Dec-2025 11:43:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[23-Dec-2025 11:43:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[23-Dec-2025 11:43:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[23-Dec-2025 11:43:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[23-Dec-2025 11:43:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[23-Dec-2025 11:43:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[23-Dec-2025 11:43:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[23-Dec-2025 11:43:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[23-Dec-2025 11:43:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[23-Dec-2025 11:43:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[23-Dec-2025 11:43:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[23-Dec-2025 11:44:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[23-Dec-2025 11:44:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[23-Dec-2025 11:44:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[23-Dec-2025 11:44:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[23-Dec-2025 11:44:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[23-Dec-2025 11:44:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[23-Dec-2025 11:44:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[23-Dec-2025 11:44:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[23-Dec-2025 11:44:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[23-Dec-2025 11:44:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[23-Dec-2025 11:44:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[23-Dec-2025 11:44:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[23-Dec-2025 11:44:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[23-Dec-2025 11:44:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[23-Dec-2025 11:44:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[23-Dec-2025 11:44:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[23-Dec-2025 11:44:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[23-Dec-2025 11:44:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[23-Dec-2025 11:44:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[23-Dec-2025 11:44:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[23-Dec-2025 11:59:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[23-Dec-2025 11:59:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[23-Dec-2025 11:59:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[23-Dec-2025 12:00:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[23-Dec-2025 12:00:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[23-Dec-2025 12:00:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[23-Dec-2025 12:00:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[23-Dec-2025 12:00:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[23-Dec-2025 12:00:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[23-Dec-2025 12:00:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[23-Dec-2025 12:00:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[23-Dec-2025 12:00:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[23-Dec-2025 12:00:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[23-Dec-2025 12:00:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[23-Dec-2025 12:00:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[23-Dec-2025 12:00:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[23-Dec-2025 12:00:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[23-Dec-2025 12:00:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[23-Dec-2025 12:00:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[23-Dec-2025 12:00:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[23-Dec-2025 12:00:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[23-Dec-2025 12:00:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[23-Dec-2025 12:00:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[23-Dec-2025 12:00:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[23-Dec-2025 12:00:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[23-Dec-2025 12:00:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[23-Dec-2025 12:00:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[23-Dec-2025 12:00:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[23-Dec-2025 12:00:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[23-Dec-2025 12:00:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[23-Dec-2025 12:00:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[23-Dec-2025 12:00:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[23-Dec-2025 12:00:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[23-Dec-2025 12:00:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[23-Dec-2025 12:01:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[23-Dec-2025 12:01:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[23-Dec-2025 12:01:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[23-Dec-2025 12:01:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[23-Dec-2025 12:01:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[23-Dec-2025 12:01:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[23-Dec-2025 12:01:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[23-Dec-2025 12:01:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[23-Dec-2025 12:01:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Dec-2025 14:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[24-Dec-2025 14:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[24-Dec-2025 14:57:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[24-Dec-2025 14:57:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Dec-2025 14:57:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Dec-2025 14:57:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Dec-2025 14:57:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Dec-2025 14:57:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Dec-2025 14:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Dec-2025 14:57:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Dec-2025 14:57:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Dec-2025 14:57:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Dec-2025 14:57:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Dec-2025 14:57:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Dec-2025 14:57:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[24-Dec-2025 14:57:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[24-Dec-2025 14:58:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[24-Dec-2025 14:58:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Dec-2025 14:58:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Dec-2025 14:58:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Dec-2025 14:58:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Dec-2025 14:58:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Dec-2025 14:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Dec-2025 14:58:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Dec-2025 14:58:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Dec-2025 14:58:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Dec-2025 14:58:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Dec-2025 14:58:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Dec-2025 14:58:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Dec-2025 14:58:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Dec-2025 14:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Dec-2025 14:58:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Dec-2025 14:58:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Dec-2025 14:58:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Dec-2025 14:58:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Dec-2025 14:58:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Dec-2025 14:58:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Dec-2025 14:58:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Dec-2025 14:59:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Dec-2025 14:59:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Dec-2025 14:59:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Dec-2025 14:59:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Dec-2025 14:59:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[24-Dec-2025 15:20:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[24-Dec-2025 15:20:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[24-Dec-2025 15:20:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[24-Dec-2025 15:20:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[24-Dec-2025 15:20:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[24-Dec-2025 15:20:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[24-Dec-2025 15:20:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[24-Dec-2025 15:20:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[24-Dec-2025 15:20:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[24-Dec-2025 15:20:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[24-Dec-2025 15:20:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[24-Dec-2025 15:20:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[24-Dec-2025 15:20:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[24-Dec-2025 15:20:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[24-Dec-2025 15:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[24-Dec-2025 15:21:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[24-Dec-2025 15:21:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[24-Dec-2025 15:21:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[24-Dec-2025 15:21:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[24-Dec-2025 15:21:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[24-Dec-2025 15:21:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[24-Dec-2025 15:21:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[24-Dec-2025 15:21:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[24-Dec-2025 15:21:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[24-Dec-2025 15:21:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[24-Dec-2025 15:21:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[24-Dec-2025 15:21:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[24-Dec-2025 15:21:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[24-Dec-2025 15:21:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[24-Dec-2025 15:21:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[24-Dec-2025 15:21:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[24-Dec-2025 15:21:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[24-Dec-2025 15:21:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[24-Dec-2025 15:21:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[24-Dec-2025 15:21:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[24-Dec-2025 15:21:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[24-Dec-2025 15:21:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[24-Dec-2025 15:21:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[24-Dec-2025 15:21:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[24-Dec-2025 15:21:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[24-Dec-2025 15:21:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[24-Dec-2025 15:21:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[24-Dec-2025 15:21:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Jan-2026 10:10:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[04-Jan-2026 10:10:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[04-Jan-2026 10:10:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[04-Jan-2026 10:10:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Jan-2026 10:10:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Jan-2026 10:10:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Jan-2026 10:10:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Jan-2026 10:10:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Jan-2026 10:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Jan-2026 10:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Jan-2026 10:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Jan-2026 10:10:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Jan-2026 10:10:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Jan-2026 10:10:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Jan-2026 10:10:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Jan-2026 10:10:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Jan-2026 10:10:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Jan-2026 10:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Jan-2026 10:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Jan-2026 10:10:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Jan-2026 10:10:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Jan-2026 10:10:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Jan-2026 10:10:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Jan-2026 10:10:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Jan-2026 10:10:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Jan-2026 10:10:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Jan-2026 10:10:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Jan-2026 10:10:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[04-Jan-2026 10:19:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[04-Jan-2026 10:19:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[04-Jan-2026 10:19:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[04-Jan-2026 10:19:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[04-Jan-2026 10:19:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[04-Jan-2026 10:19:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[04-Jan-2026 10:19:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[04-Jan-2026 10:19:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[04-Jan-2026 10:19:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[04-Jan-2026 10:19:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[04-Jan-2026 10:19:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[04-Jan-2026 10:19:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[04-Jan-2026 10:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[04-Jan-2026 10:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[04-Jan-2026 10:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[04-Jan-2026 10:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[04-Jan-2026 10:19:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[04-Jan-2026 10:19:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[04-Jan-2026 10:19:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[04-Jan-2026 10:19:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[04-Jan-2026 10:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[04-Jan-2026 10:19:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[04-Jan-2026 10:19:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[04-Jan-2026 10:19:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[04-Jan-2026 10:19:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[04-Jan-2026 10:19:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[04-Jan-2026 10:19:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[04-Jan-2026 10:19:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[04-Jan-2026 10:19:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[05-Jan-2026 18:33:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[05-Jan-2026 18:33:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[05-Jan-2026 18:33:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[05-Jan-2026 18:33:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[05-Jan-2026 18:33:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[05-Jan-2026 18:33:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[05-Jan-2026 18:33:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[05-Jan-2026 18:33:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[05-Jan-2026 18:33:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[05-Jan-2026 18:33:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[05-Jan-2026 18:33:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[05-Jan-2026 18:33:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[05-Jan-2026 18:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[05-Jan-2026 18:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[05-Jan-2026 18:33:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[05-Jan-2026 18:33:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[05-Jan-2026 18:33:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[05-Jan-2026 18:33:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[05-Jan-2026 18:33:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[05-Jan-2026 18:33:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[05-Jan-2026 18:33:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[05-Jan-2026 18:33:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[05-Jan-2026 18:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[05-Jan-2026 18:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[05-Jan-2026 18:33:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[05-Jan-2026 18:33:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[05-Jan-2026 18:33:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[05-Jan-2026 18:34:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[05-Jan-2026 18:34:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[05-Jan-2026 18:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[05-Jan-2026 18:34:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[05-Jan-2026 18:34:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[05-Jan-2026 18:34:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[05-Jan-2026 18:34:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[05-Jan-2026 18:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[05-Jan-2026 18:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[05-Jan-2026 18:34:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[05-Jan-2026 18:34:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[05-Jan-2026 18:34:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[05-Jan-2026 18:34:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[05-Jan-2026 18:34:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[05-Jan-2026 18:34:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[05-Jan-2026 18:34:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:21:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[06-Jan-2026 01:21:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[06-Jan-2026 01:21:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[06-Jan-2026 01:21:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Jan-2026 01:21:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Jan-2026 01:21:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Jan-2026 01:21:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Jan-2026 01:21:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Jan-2026 01:21:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Jan-2026 01:21:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Jan-2026 01:21:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Jan-2026 01:21:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Jan-2026 01:21:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Jan-2026 01:21:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Jan-2026 01:21:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Jan-2026 01:21:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Jan-2026 01:21:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Jan-2026 01:21:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Jan-2026 01:21:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Jan-2026 01:21:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Jan-2026 01:21:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Jan-2026 01:21:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Jan-2026 01:21:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Jan-2026 01:21:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Jan-2026 01:22:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Jan-2026 01:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Jan-2026 01:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:22:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Jan-2026 01:22:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Jan-2026 01:22:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Jan-2026 01:22:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Jan-2026 01:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Jan-2026 01:22:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Jan-2026 01:22:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Jan-2026 01:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Jan-2026 01:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Jan-2026 01:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Jan-2026 01:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Jan-2026 01:22:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[06-Jan-2026 01:33:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[06-Jan-2026 01:33:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[06-Jan-2026 01:33:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[06-Jan-2026 01:33:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[06-Jan-2026 01:33:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[06-Jan-2026 01:33:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[06-Jan-2026 01:33:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[06-Jan-2026 01:33:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[06-Jan-2026 01:33:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[06-Jan-2026 01:33:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[06-Jan-2026 01:33:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[06-Jan-2026 01:33:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[06-Jan-2026 01:33:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[06-Jan-2026 01:33:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[06-Jan-2026 01:33:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[06-Jan-2026 01:33:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[06-Jan-2026 01:33:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[06-Jan-2026 01:33:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[06-Jan-2026 01:33:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[06-Jan-2026 01:33:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[06-Jan-2026 01:33:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[06-Jan-2026 01:33:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[06-Jan-2026 01:33:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[06-Jan-2026 01:33:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[06-Jan-2026 01:33:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[06-Jan-2026 01:33:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[06-Jan-2026 01:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[06-Jan-2026 01:33:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[06-Jan-2026 01:33:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[06-Jan-2026 01:33:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[06-Jan-2026 01:33:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[06-Jan-2026 01:33:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[06-Jan-2026 01:33:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[06-Jan-2026 01:33:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[06-Jan-2026 01:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[06-Jan-2026 01:33:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[06-Jan-2026 01:33:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[06-Jan-2026 01:33:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[06-Jan-2026 01:33:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[06-Jan-2026 01:34:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[06-Jan-2026 01:34:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[06-Jan-2026 01:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[06-Jan-2026 01:34:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Jan-2026 04:24:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[07-Jan-2026 04:24:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[07-Jan-2026 04:24:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[07-Jan-2026 04:24:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[07-Jan-2026 04:24:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[07-Jan-2026 04:24:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[07-Jan-2026 04:24:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[07-Jan-2026 04:24:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[07-Jan-2026 04:24:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[07-Jan-2026 04:24:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[07-Jan-2026 04:24:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[07-Jan-2026 04:25:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[07-Jan-2026 04:25:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[07-Jan-2026 04:25:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[07-Jan-2026 04:25:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[07-Jan-2026 04:25:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[07-Jan-2026 04:25:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[07-Jan-2026 04:25:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[07-Jan-2026 04:25:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[07-Jan-2026 04:25:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[07-Jan-2026 04:25:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[07-Jan-2026 04:25:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[07-Jan-2026 04:25:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[07-Jan-2026 04:25:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[07-Jan-2026 04:25:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[07-Jan-2026 04:25:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[07-Jan-2026 04:25:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 06:29:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[13-Jan-2026 06:29:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-Jan-2026 06:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-Jan-2026 06:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-Jan-2026 06:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-Jan-2026 06:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-Jan-2026 06:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-Jan-2026 06:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-Jan-2026 06:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-Jan-2026 06:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-Jan-2026 06:29:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-Jan-2026 06:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-Jan-2026 06:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-Jan-2026 06:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-Jan-2026 06:29:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-Jan-2026 06:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-Jan-2026 06:29:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-Jan-2026 06:29:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-Jan-2026 06:29:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 06:29:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-Jan-2026 06:29:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-Jan-2026 06:29:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-Jan-2026 06:29:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-Jan-2026 06:29:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-Jan-2026 06:29:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-Jan-2026 06:29:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-Jan-2026 06:29:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[13-Jan-2026 23:57:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[13-Jan-2026 23:57:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[13-Jan-2026 23:57:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[13-Jan-2026 23:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[13-Jan-2026 23:57:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[13-Jan-2026 23:57:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[13-Jan-2026 23:57:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[13-Jan-2026 23:57:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[13-Jan-2026 23:57:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[13-Jan-2026 23:57:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[13-Jan-2026 23:58:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[13-Jan-2026 23:58:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[13-Jan-2026 23:58:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[13-Jan-2026 23:58:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[13-Jan-2026 23:58:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[13-Jan-2026 23:58:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[13-Jan-2026 23:58:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[13-Jan-2026 23:58:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[13-Jan-2026 23:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[13-Jan-2026 23:58:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[13-Jan-2026 23:58:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[13-Jan-2026 23:58:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[13-Jan-2026 23:58:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[13-Jan-2026 23:58:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[13-Jan-2026 23:58:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[13-Jan-2026 23:58:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[13-Jan-2026 23:58:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[13-Jan-2026 23:58:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[13-Jan-2026 23:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[13-Jan-2026 23:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[13-Jan-2026 23:58:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[13-Jan-2026 23:58:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[13-Jan-2026 23:58:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[13-Jan-2026 23:58:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[13-Jan-2026 23:58:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[13-Jan-2026 23:58:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[13-Jan-2026 23:58:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[13-Jan-2026 23:58:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[13-Jan-2026 23:58:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[13-Jan-2026 23:58:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[13-Jan-2026 23:58:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[13-Jan-2026 23:59:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[13-Jan-2026 23:59:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[14-Jan-2026 00:15:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[14-Jan-2026 00:15:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[14-Jan-2026 00:15:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[14-Jan-2026 00:15:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[14-Jan-2026 00:15:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[14-Jan-2026 00:15:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[14-Jan-2026 00:15:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[14-Jan-2026 00:15:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[14-Jan-2026 00:15:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[14-Jan-2026 00:15:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[14-Jan-2026 00:15:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[14-Jan-2026 00:15:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[14-Jan-2026 00:15:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[14-Jan-2026 00:15:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[14-Jan-2026 00:15:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[14-Jan-2026 00:15:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[14-Jan-2026 00:15:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[14-Jan-2026 00:15:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[14-Jan-2026 00:15:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[14-Jan-2026 00:15:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[14-Jan-2026 00:15:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[14-Jan-2026 00:15:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[14-Jan-2026 00:15:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[14-Jan-2026 00:15:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[14-Jan-2026 00:15:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[14-Jan-2026 00:15:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[14-Jan-2026 00:15:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[14-Jan-2026 00:15:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[14-Jan-2026 00:15:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[14-Jan-2026 00:15:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[14-Jan-2026 00:16:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[14-Jan-2026 00:16:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[14-Jan-2026 00:16:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[14-Jan-2026 00:16:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[14-Jan-2026 00:16:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[14-Jan-2026 00:16:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[14-Jan-2026 00:16:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[14-Jan-2026 00:16:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[14-Jan-2026 00:16:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[14-Jan-2026 00:16:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[14-Jan-2026 00:16:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[14-Jan-2026 00:16:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[14-Jan-2026 00:16:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
[21-Feb-2026 02:57:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php on line 19
[21-Feb-2026 02:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php on line 17
[21-Feb-2026 02:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17
[21-Feb-2026 02:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18
[21-Feb-2026 02:57:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php on line 17
[21-Feb-2026 02:57:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17
[21-Feb-2026 02:57:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17
[21-Feb-2026 02:57:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20
[21-Feb-2026 02:57:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php on line 17
[21-Feb-2026 02:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php on line 13
[21-Feb-2026 02:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php:15
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php on line 15
[21-Feb-2026 02:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php:13
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php on line 13
[21-Feb-2026 02:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php on line 17
[21-Feb-2026 02:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Terms_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php:20
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php on line 20
[21-Feb-2026 02:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17
[21-Feb-2026 02:57:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17
[21-Feb-2026 02:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php:19
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php on line 19
[21-Feb-2026 02:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php on line 17
[21-Feb-2026 02:57:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Autosaves_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php on line 17
[21-Feb-2026 02:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17
[21-Feb-2026 02:57:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17
[21-Feb-2026 02:57:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php:18
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php on line 18
[21-Feb-2026 02:57:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17
[21-Feb-2026 02:57:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php on line 17
[21-Feb-2026 02:57:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Controller' not found in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php on line 17
endpoints/class-wp-rest-block-patterns-controller.php000064400000022120152222510010017056 0ustar00<?php
/**
 * REST API: WP_REST_Block_Patterns_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since      6.0.0
 */

/**
 * Core class used to access block patterns via the REST API.
 *
 * @since 6.0.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Block_Patterns_Controller extends WP_REST_Controller {

	/**
	 * Defines whether remote patterns should be loaded.
	 *
	 * @since 6.0.0
	 * @var bool
	 */
	private $remote_patterns_loaded;

	/**
	 * An array that maps old categories names to new ones.
	 *
	 * @since 6.2.0
	 * @var array
	 */
	protected static $categories_migration = array(
		'buttons' => 'call-to-action',
		'columns' => 'text',
		'query'   => 'posts',
	);

	/**
	 * Constructs the controller.
	 *
	 * @since 6.0.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'block-patterns/patterns';
	}

	/**
	 * Registers the routes for the objects of the controller.
	 *
	 * @since 6.0.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read block patterns.
	 *
	 * @since 6.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view',
			__( 'Sorry, you are not allowed to view the registered block patterns.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Retrieves all block patterns.
	 *
	 * @since 6.0.0
	 * @since 6.2.0 Added migration for old core pattern categories to the new ones.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( ! $this->remote_patterns_loaded ) {
			// Load block patterns from w.org.
			_load_remote_block_patterns(); // Patterns with the `core` keyword.
			_load_remote_featured_patterns(); // Patterns in the `featured` category.
			_register_remote_theme_patterns(); // Patterns requested by current theme.

			$this->remote_patterns_loaded = true;
		}

		$response = array();
		$patterns = WP_Block_Patterns_Registry::get_instance()->get_all_registered();
		foreach ( $patterns as $pattern ) {
			$migrated_pattern = $this->migrate_pattern_categories( $pattern );
			$prepared_pattern = $this->prepare_item_for_response( $migrated_pattern, $request );
			$response[]       = $this->prepare_response_for_collection( $prepared_pattern );
		}
		return rest_ensure_response( $response );
	}

	/**
	 * Migrates old core pattern categories to the new categories.
	 *
	 * Core pattern categories are revamped. Migration is needed to ensure
	 * backwards compatibility.
	 *
	 * @since 6.2.0
	 *
	 * @param array $pattern Raw pattern as registered, before applying any changes.
	 * @return array Migrated pattern.
	 */
	protected function migrate_pattern_categories( $pattern ) {
		// No categories to migrate.
		if (
			! isset( $pattern['categories'] ) ||
			! is_array( $pattern['categories'] )
		) {
			return $pattern;
		}

		foreach ( $pattern['categories'] as $index => $category ) {
			// If the category exists as a key, then it needs migration.
			if ( isset( static::$categories_migration[ $category ] ) ) {
				$pattern['categories'][ $index ] = static::$categories_migration[ $category ];
			}
		}

		return $pattern;
	}

	/**
	 * Prepare a raw block pattern before it gets output in a REST API response.
	 *
	 * @since 6.0.0
	 * @since 6.3.0 Added `source` property.
	 *
	 * @param array           $item    Raw pattern as registered, before any changes.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Resolve pattern blocks so they don't need to be resolved client-side
		// in the editor, improving performance.
		$blocks          = parse_blocks( $item['content'] );
		$blocks          = resolve_pattern_blocks( $blocks );
		$item['content'] = serialize_blocks( $blocks );

		$fields = $this->get_fields_for_response( $request );
		$keys   = array(
			'name'          => 'name',
			'title'         => 'title',
			'content'       => 'content',
			'description'   => 'description',
			'viewportWidth' => 'viewport_width',
			'inserter'      => 'inserter',
			'categories'    => 'categories',
			'keywords'      => 'keywords',
			'blockTypes'    => 'block_types',
			'postTypes'     => 'post_types',
			'templateTypes' => 'template_types',
			'source'        => 'source',
		);
		$data   = array();
		foreach ( $keys as $item_key => $rest_key ) {
			if ( isset( $item[ $item_key ] ) && rest_is_field_included( $rest_key, $fields ) ) {
				$data[ $rest_key ] = $item[ $item_key ];
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );
		return rest_ensure_response( $data );
	}

	/**
	 * Retrieves the block pattern schema, conforming to JSON Schema.
	 *
	 * @since 6.0.0
	 * @since 6.3.0 Added `source` property.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'block-pattern',
			'type'       => 'object',
			'properties' => array(
				'name'           => array(
					'description' => __( 'The pattern name.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'title'          => array(
					'description' => __( 'The pattern title, in human readable format.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'content'        => array(
					'description' => __( 'The pattern content.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'description'    => array(
					'description' => __( 'The pattern detailed description.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'viewport_width' => array(
					'description' => __( 'The pattern viewport width for inserter preview.' ),
					'type'        => 'number',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'inserter'       => array(
					'description' => __( 'Determines whether the pattern is visible in inserter.' ),
					'type'        => 'boolean',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'categories'     => array(
					'description' => __( 'The pattern category slugs.' ),
					'type'        => 'array',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'keywords'       => array(
					'description' => __( 'The pattern keywords.' ),
					'type'        => 'array',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'block_types'    => array(
					'description' => __( 'Block types that the pattern is intended to be used with.' ),
					'type'        => 'array',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'post_types'     => array(
					'description' => __( 'An array of post types that the pattern is restricted to be used with.' ),
					'type'        => 'array',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'template_types' => array(
					'description' => __( 'An array of template types where the pattern fits.' ),
					'type'        => 'array',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'source'         => array(
					'description' => __( 'Where the pattern comes from e.g. core' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
					'enum'        => array(
						'core',
						'plugin',
						'theme',
						'pattern-directory/core',
						'pattern-directory/theme',
						'pattern-directory/featured',
					),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-users-controller.php000064400000141344152222510010015301 0ustar00<?php
/**
 * REST API: WP_REST_Users_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage users via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Users_Controller extends WP_REST_Controller {

	/**
	 * Instance of a user meta fields object.
	 *
	 * @since 4.7.0
	 * @var WP_REST_User_Meta_Fields
	 */
	protected $meta;

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 6.6.0
	 * @var array
	 */
	protected $allow_batch = array( 'v1' => true );

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'users';

		$this->meta = new WP_REST_User_Meta_Fields();
	}

	/**
	 * Registers the routes for users.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'        => array(
					'id' => array(
						'description' => __( 'Unique identifier for the user.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force'    => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Required to be true, as users do not support trashing.' ),
						),
						'reassign' => array(
							'type'              => 'integer',
							'description'       => __( 'Reassign the deleted user\'s posts and links to this user ID.' ),
							'required'          => true,
							'sanitize_callback' => array( $this, 'check_reassign' ),
						),
					),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/me',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'permission_callback' => '__return_true',
					'callback'            => array( $this, 'get_current_item' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_current_item' ),
					'permission_callback' => array( $this, 'update_current_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_current_item' ),
					'permission_callback' => array( $this, 'delete_current_item_permissions_check' ),
					'args'                => array(
						'force'    => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Required to be true, as users do not support trashing.' ),
						),
						'reassign' => array(
							'type'              => 'integer',
							'description'       => __( 'Reassign the deleted user\'s posts and links to this user ID.' ),
							'required'          => true,
							'sanitize_callback' => array( $this, 'check_reassign' ),
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks for a valid value for the reassign parameter when deleting users.
	 *
	 * The value can be an integer, 'false', false, or ''.
	 *
	 * @since 4.7.0
	 *
	 * @param int|bool        $value   The value passed to the reassign parameter.
	 * @param WP_REST_Request $request Full details about the request.
	 * @param string          $param   The parameter that is being sanitized.
	 * @return int|bool|WP_Error
	 */
	public function check_reassign( $value, $request, $param ) {
		if ( is_numeric( $value ) ) {
			return $value;
		}

		if ( empty( $value ) || false === $value || 'false' === $value ) {
			return false;
		}

		return new WP_Error(
			'rest_invalid_param',
			__( 'Invalid user parameter(s).' ),
			array( 'status' => 400 )
		);
	}

	/**
	 * Permissions check for getting all users.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, otherwise WP_Error object.
	 */
	public function get_items_permissions_check( $request ) {
		// Check if roles is specified in GET request and if user can list users.
		if ( ! empty( $request['roles'] ) && ! current_user_can( 'list_users' ) ) {
			return new WP_Error(
				'rest_user_cannot_view',
				__( 'Sorry, you are not allowed to filter users by role.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		// Check if capabilities is specified in GET request and if user can list users.
		if ( ! empty( $request['capabilities'] ) && ! current_user_can( 'list_users' ) ) {
			return new WP_Error(
				'rest_user_cannot_view',
				__( 'Sorry, you are not allowed to filter users by capability.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'edit' === $request['context'] && ! current_user_can( 'list_users' ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit users.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( in_array( $request['orderby'], array( 'email', 'registered_date' ), true ) && ! current_user_can( 'list_users' ) ) {
			return new WP_Error(
				'rest_forbidden_orderby',
				__( 'Sorry, you are not allowed to order users by this parameter.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'authors' === $request['who'] ) {
			$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );

			foreach ( $types as $type ) {
				if ( post_type_supports( $type->name, 'author' )
					&& current_user_can( $type->cap->edit_posts ) ) {
					return true;
				}
			}

			return new WP_Error(
				'rest_forbidden_who',
				__( 'Sorry, you are not allowed to query users by this parameter.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves all users.
	 *
	 * @since 4.7.0
	 * @since 6.8.0 Added support for the search_columns query param.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();

		/*
		 * This array defines mappings between public API query parameters whose
		 * values are accepted as-passed, and their internal WP_Query parameter
		 * name equivalents (some are the same). Only values which are also
		 * present in $registered will be set.
		 */
		$parameter_mappings = array(
			'exclude'      => 'exclude',
			'include'      => 'include',
			'order'        => 'order',
			'per_page'     => 'number',
			'search'       => 'search',
			'roles'        => 'role__in',
			'capabilities' => 'capability__in',
			'slug'         => 'nicename__in',
		);

		$prepared_args = array();

		/*
		 * For each known parameter which is both registered and present in the request,
		 * set the parameter's value on the query $prepared_args.
		 */
		foreach ( $parameter_mappings as $api_param => $wp_param ) {
			if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
				$prepared_args[ $wp_param ] = $request[ $api_param ];
			}
		}

		if ( isset( $registered['offset'] ) && ! empty( $request['offset'] ) ) {
			$prepared_args['offset'] = $request['offset'];
		} else {
			$prepared_args['offset'] = ( $request['page'] - 1 ) * $prepared_args['number'];
		}

		if ( isset( $registered['orderby'] ) ) {
			$orderby_possibles        = array(
				'id'              => 'ID',
				'include'         => 'include',
				'name'            => 'display_name',
				'registered_date' => 'registered',
				'slug'            => 'user_nicename',
				'include_slugs'   => 'nicename__in',
				'email'           => 'user_email',
				'url'             => 'user_url',
			);
			$prepared_args['orderby'] = $orderby_possibles[ $request['orderby'] ];
		}

		if ( isset( $registered['who'] ) && ! empty( $request['who'] ) && 'authors' === $request['who'] ) {
			$prepared_args['who'] = 'authors';
		} elseif ( ! current_user_can( 'list_users' ) ) {
			$prepared_args['has_published_posts'] = get_post_types( array( 'show_in_rest' => true ), 'names' );
		}

		if ( ! empty( $request['has_published_posts'] ) ) {
			$prepared_args['has_published_posts'] = ( true === $request['has_published_posts'] )
				? get_post_types( array( 'show_in_rest' => true ), 'names' )
				: (array) $request['has_published_posts'];
		}

		if ( ! empty( $prepared_args['search'] ) ) {
			if ( ! current_user_can( 'list_users' ) ) {
				$prepared_args['search_columns'] = array( 'ID', 'user_login', 'user_nicename', 'display_name' );
			}
			$search_columns         = $request->get_param( 'search_columns' );
			$valid_columns          = isset( $prepared_args['search_columns'] )
				? $prepared_args['search_columns']
				: array( 'ID', 'user_login', 'user_nicename', 'user_email', 'display_name' );
			$search_columns_mapping = array(
				'id'       => 'ID',
				'username' => 'user_login',
				'slug'     => 'user_nicename',
				'email'    => 'user_email',
				'name'     => 'display_name',
			);
			$search_columns         = array_map(
				static function ( $column ) use ( $search_columns_mapping ) {
					return $search_columns_mapping[ $column ];
				},
				$search_columns
			);
			$search_columns         = array_intersect( $search_columns, $valid_columns );
			if ( ! empty( $search_columns ) ) {
				$prepared_args['search_columns'] = $search_columns;
			}
			$prepared_args['search'] = '*' . $prepared_args['search'] . '*';
		}

		$is_head_request = $request->is_method( 'HEAD' );
		if ( $is_head_request ) {
			// Force the 'fields' argument. For HEAD requests, only user IDs are required.
			$prepared_args['fields'] = 'id';
		}
		/**
		 * Filters WP_User_Query arguments when querying users via the REST API.
		 *
		 * @link https://developer.wordpress.org/reference/classes/wp_user_query/
		 *
		 * @since 4.7.0
		 *
		 * @param array           $prepared_args Array of arguments for WP_User_Query.
		 * @param WP_REST_Request $request       The REST API request.
		 */
		$prepared_args = apply_filters( 'rest_user_query', $prepared_args, $request );

		$query = new WP_User_Query( $prepared_args );

		if ( ! $is_head_request ) {
			$users = array();

			foreach ( $query->get_results() as $user ) {
				if ( 'edit' === $request['context'] && ! current_user_can( 'edit_user', $user->ID ) ) {
					continue;
				}

				$data    = $this->prepare_item_for_response( $user, $request );
				$users[] = $this->prepare_response_for_collection( $data );
			}
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $users );

		// Store pagination values for headers then unset for count query.
		$per_page = (int) $prepared_args['number'];
		$page     = (int) ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );

		$prepared_args['fields'] = 'ID';

		$total_users = $query->get_total();

		if ( $total_users < 1 ) {
			// Out-of-bounds, run the query without pagination/offset to get the total count.
			unset( $prepared_args['number'], $prepared_args['offset'] );

			$prepared_args['number'] = 1;
			$prepared_args['fields'] = 'ID';
			$count_query             = new WP_User_Query( $prepared_args );
			$total_users             = $count_query->get_total();
		}

		$response->header( 'X-WP-Total', (int) $total_users );

		$max_pages = (int) ceil( $total_users / $per_page );

		$response->header( 'X-WP-TotalPages', $max_pages );

		$base = add_query_arg( urlencode_deep( $request->get_query_params() ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );
		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Get the user, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $id Supplied ID.
	 * @return WP_User|WP_Error True if ID is valid, WP_Error otherwise.
	 */
	protected function get_user( $id ) {
		$error = new WP_Error(
			'rest_user_invalid_id',
			__( 'Invalid user ID.' ),
			array( 'status' => 404 )
		);

		if ( (int) $id <= 0 ) {
			return $error;
		}

		$user = get_userdata( (int) $id );
		if ( empty( $user ) || ! $user->exists() ) {
			return $error;
		}

		if ( is_multisite() && ! is_user_member_of_blog( $user->ID ) ) {
			return $error;
		}

		return $user;
	}

	/**
	 * Checks if a given request has access to read a user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
	 */
	public function get_item_permissions_check( $request ) {
		$user = $this->get_user( $request['id'] );
		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$types = get_post_types( array( 'show_in_rest' => true ), 'names' );

		if ( get_current_user_id() === $user->ID ) {
			return true;
		}

		if ( 'edit' === $request['context'] && ! current_user_can( 'edit_user', $user->ID ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! current_user_can( 'edit_user', $user->ID ) && ! current_user_can( 'list_users' ) && ! count_user_posts( $user->ID, $types ) ) {
			return new WP_Error(
				'rest_user_cannot_view',
				__( 'Sorry, you are not allowed to list users.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves a single user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$user = $this->get_user( $request['id'] );
		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$user     = $this->prepare_item_for_response( $user, $request );
		$response = rest_ensure_response( $user );

		return $response;
	}

	/**
	 * Retrieves the current user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_current_item( $request ) {
		$current_user_id = get_current_user_id();

		if ( empty( $current_user_id ) ) {
			return new WP_Error(
				'rest_not_logged_in',
				__( 'You are not currently logged in.' ),
				array( 'status' => 401 )
			);
		}

		$user     = wp_get_current_user();
		$response = $this->prepare_item_for_response( $user, $request );
		$response = rest_ensure_response( $response );

		return $response;
	}

	/**
	 * Checks if a given request has access create users.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {

		if ( ! current_user_can( 'create_users' ) ) {
			return new WP_Error(
				'rest_cannot_create_user',
				__( 'Sorry, you are not allowed to create new users.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Creates a single user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( ! empty( $request['id'] ) ) {
			return new WP_Error(
				'rest_user_exists',
				__( 'Cannot create existing user.' ),
				array( 'status' => 400 )
			);
		}

		$schema = $this->get_item_schema();

		if ( ! empty( $request['roles'] ) && ! empty( $schema['properties']['roles'] ) ) {
			$check_permission = $this->check_role_update( $request['id'], $request['roles'] );

			if ( is_wp_error( $check_permission ) ) {
				return $check_permission;
			}
		}

		$user = $this->prepare_item_for_database( $request );

		if ( is_multisite() ) {
			$ret = wpmu_validate_user_signup( $user->user_login, $user->user_email );

			if ( is_wp_error( $ret['errors'] ) && $ret['errors']->has_errors() ) {
				$error = new WP_Error(
					'rest_invalid_param',
					__( 'Invalid user parameter(s).' ),
					array( 'status' => 400 )
				);

				foreach ( $ret['errors']->errors as $code => $messages ) {
					foreach ( $messages as $message ) {
						$error->add( $code, $message );
					}

					$error_data = $error->get_error_data( $code );

					if ( $error_data ) {
						$error->add_data( $error_data, $code );
					}
				}
				return $error;
			}
		}

		if ( is_multisite() ) {
			$user_id = wpmu_create_user( $user->user_login, $user->user_pass, $user->user_email );

			if ( ! $user_id ) {
				return new WP_Error(
					'rest_user_create',
					__( 'Error creating new user.' ),
					array( 'status' => 500 )
				);
			}

			$user->ID = $user_id;
			$user_id  = wp_update_user( wp_slash( (array) $user ) );

			if ( is_wp_error( $user_id ) ) {
				return $user_id;
			}

			$result = add_user_to_blog( get_site()->id, $user_id, '' );
			if ( is_wp_error( $result ) ) {
				return $result;
			}
		} else {
			$user_id = wp_insert_user( wp_slash( (array) $user ) );

			if ( is_wp_error( $user_id ) ) {
				return $user_id;
			}
		}

		$user = get_user_by( 'id', $user_id );

		/**
		 * Fires immediately after a user is created or updated via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_User         $user     Inserted or updated user object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a user, false when updating.
		 */
		do_action( 'rest_insert_user', $user, $request, true );

		if ( ! empty( $request['roles'] ) && ! empty( $schema['properties']['roles'] ) ) {
			array_map( array( $user, 'add_role' ), $request['roles'] );
		}

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $user_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$user          = get_user_by( 'id', $user_id );
		$fields_update = $this->update_additional_fields_for_object( $user, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/**
		 * Fires after a user is completely created or updated via the REST API.
		 *
		 * @since 5.0.0
		 *
		 * @param WP_User         $user     Inserted or updated user object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a user, false when updating.
		 */
		do_action( 'rest_after_insert_user', $user, $request, true );

		$response = $this->prepare_item_for_response( $user, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user_id ) ) );

		return $response;
	}

	/**
	 * Checks if a given request has access to update a user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$user = $this->get_user( $request['id'] );
		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! empty( $request['roles'] ) ) {
			if ( ! current_user_can( 'promote_user', $user->ID ) ) {
				return new WP_Error(
					'rest_cannot_edit_roles',
					__( 'Sorry, you are not allowed to edit roles of this user.' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}

			$request_params = array_keys( $request->get_params() );
			sort( $request_params );
			/*
			 * If only 'id' and 'roles' are specified (we are only trying to
			 * edit roles), then only the 'promote_user' cap is required.
			 */
			if ( array( 'id', 'roles' ) === $request_params ) {
				return true;
			}
		}

		if ( ! current_user_can( 'edit_user', $user->ID ) ) {
			return new WP_Error(
				'rest_cannot_edit',
				__( 'Sorry, you are not allowed to edit this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Updates a single user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$user = $this->get_user( $request['id'] );
		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$id = $user->ID;

		$owner_id = false;
		if ( is_string( $request['email'] ) ) {
			$owner_id = email_exists( $request['email'] );
		}

		if ( $owner_id && $owner_id !== $id ) {
			return new WP_Error(
				'rest_user_invalid_email',
				__( 'Invalid email address.' ),
				array( 'status' => 400 )
			);
		}

		if ( ! empty( $request['username'] ) && $request['username'] !== $user->user_login ) {
			return new WP_Error(
				'rest_user_invalid_argument',
				__( 'Username is not editable.' ),
				array( 'status' => 400 )
			);
		}

		if ( ! empty( $request['slug'] ) && $request['slug'] !== $user->user_nicename && get_user_by( 'slug', $request['slug'] ) ) {
			return new WP_Error(
				'rest_user_invalid_slug',
				__( 'Invalid slug.' ),
				array( 'status' => 400 )
			);
		}

		if ( ! empty( $request['roles'] ) ) {
			$check_permission = $this->check_role_update( $id, $request['roles'] );

			if ( is_wp_error( $check_permission ) ) {
				return $check_permission;
			}
		}

		$user = $this->prepare_item_for_database( $request );

		// Ensure we're operating on the same user we already checked.
		$user->ID = $id;

		$user_id = wp_update_user( wp_slash( (array) $user ) );

		if ( is_wp_error( $user_id ) ) {
			return $user_id;
		}

		$user = get_user_by( 'id', $user_id );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
		do_action( 'rest_insert_user', $user, $request, false );

		if ( ! empty( $request['roles'] ) ) {
			array_map( array( $user, 'add_role' ), $request['roles'] );
		}

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$user          = get_user_by( 'id', $user_id );
		$fields_update = $this->update_additional_fields_for_object( $user, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
		do_action( 'rest_after_insert_user', $user, $request, false );

		$response = $this->prepare_item_for_response( $user, $request );
		$response = rest_ensure_response( $response );

		return $response;
	}

	/**
	 * Checks if a given request has access to update the current user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function update_current_item_permissions_check( $request ) {
		$request['id'] = get_current_user_id();

		return $this->update_item_permissions_check( $request );
	}

	/**
	 * Updates the current user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_current_item( $request ) {
		$request['id'] = get_current_user_id();

		return $this->update_item( $request );
	}

	/**
	 * Checks if a given request has access delete a user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$user = $this->get_user( $request['id'] );
		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'delete_user', $user->ID ) ) {
			return new WP_Error(
				'rest_user_cannot_delete',
				__( 'Sorry, you are not allowed to delete this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes a single user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		// We don't support delete requests in multisite.
		if ( is_multisite() ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The user cannot be deleted.' ),
				array( 'status' => 501 )
			);
		}

		$user = $this->get_user( $request['id'] );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$id       = $user->ID;
		$reassign = false === $request['reassign'] ? null : absint( $request['reassign'] );
		$force    = isset( $request['force'] ) ? (bool) $request['force'] : false;

		// We don't support trashing for users.
		if ( ! $force ) {
			return new WP_Error(
				'rest_trash_not_supported',
				/* translators: %s: force=true */
				sprintf( __( "Users do not support trashing. Set '%s' to delete." ), 'force=true' ),
				array( 'status' => 501 )
			);
		}

		if ( ! empty( $reassign ) ) {
			if ( $reassign === $id || ! get_userdata( $reassign ) ) {
				return new WP_Error(
					'rest_user_invalid_reassign',
					__( 'Invalid user ID for reassignment.' ),
					array( 'status' => 400 )
				);
			}
		}

		$request->set_param( 'context', 'edit' );

		$previous = $this->prepare_item_for_response( $user, $request );

		// Include user admin functions to get access to wp_delete_user().
		require_once ABSPATH . 'wp-admin/includes/user.php';

		$result = wp_delete_user( $id, $reassign );

		if ( ! $result ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The user cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		$response = new WP_REST_Response();
		$response->set_data(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);

		/**
		 * Fires immediately after a user is deleted via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_User          $user     The user data.
		 * @param WP_REST_Response $response The response returned from the API.
		 * @param WP_REST_Request  $request  The request sent to the API.
		 */
		do_action( 'rest_delete_user', $user, $response, $request );

		return $response;
	}

	/**
	 * Checks if a given request has access to delete the current user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_current_item_permissions_check( $request ) {
		$request['id'] = get_current_user_id();

		return $this->delete_item_permissions_check( $request );
	}

	/**
	 * Deletes the current user.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_current_item( $request ) {
		$request['id'] = get_current_user_id();

		return $this->delete_item( $request );
	}

	/**
	 * Prepares a single user output for response.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$user` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_User         $item    User object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$user = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
			return apply_filters( 'rest_prepare_user', new WP_REST_Response( array() ), $user, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'id', $fields, true ) ) {
			$data['id'] = $user->ID;
		}

		if ( in_array( 'username', $fields, true ) ) {
			$data['username'] = $user->user_login;
		}

		if ( in_array( 'name', $fields, true ) ) {
			$data['name'] = $user->display_name;
		}

		if ( in_array( 'first_name', $fields, true ) ) {
			$data['first_name'] = $user->first_name;
		}

		if ( in_array( 'last_name', $fields, true ) ) {
			$data['last_name'] = $user->last_name;
		}

		if ( in_array( 'email', $fields, true ) ) {
			$data['email'] = $user->user_email;
		}

		if ( in_array( 'url', $fields, true ) ) {
			$data['url'] = $user->user_url;
		}

		if ( in_array( 'description', $fields, true ) ) {
			$data['description'] = $user->description;
		}

		if ( in_array( 'link', $fields, true ) ) {
			$data['link'] = get_author_posts_url( $user->ID, $user->user_nicename );
		}

		if ( in_array( 'locale', $fields, true ) ) {
			$data['locale'] = get_user_locale( $user );
		}

		if ( in_array( 'nickname', $fields, true ) ) {
			$data['nickname'] = $user->nickname;
		}

		if ( in_array( 'slug', $fields, true ) ) {
			$data['slug'] = $user->user_nicename;
		}

		if ( in_array( 'roles', $fields, true ) && ( current_user_can( 'list_users' ) || current_user_can( 'edit_user', $user->ID ) ) ) {
			// Defensively call array_values() to ensure an array is returned.
			$data['roles'] = array_values( $user->roles );
		}

		if ( in_array( 'registered_date', $fields, true ) ) {
			$data['registered_date'] = gmdate( 'c', strtotime( $user->user_registered ) );
		}

		if ( in_array( 'capabilities', $fields, true ) ) {
			$data['capabilities'] = (object) $user->allcaps;
		}

		if ( in_array( 'extra_capabilities', $fields, true ) ) {
			$data['extra_capabilities'] = (object) $user->caps;
		}

		if ( in_array( 'avatar_urls', $fields, true ) ) {
			$data['avatar_urls'] = rest_get_avatar_urls( $user );
		}

		if ( in_array( 'meta', $fields, true ) ) {
			$data['meta'] = $this->meta->get_value( $user->ID, $request );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'embed';

		$data = $this->add_additional_fields_to_object( $data, $request );
		$data = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $user ) );
		}

		/**
		 * Filters user data returned from the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_User          $user     User object used to create response.
		 * @param WP_REST_Request  $request  Request object.
		 */
		return apply_filters( 'rest_prepare_user', $response, $user, $request );
	}

	/**
	 * Prepares links for the user request.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_User $user User object.
	 * @return array Links for the given user.
	 */
	protected function prepare_links( $user ) {
		$links = array(
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user->ID ) ),
			),
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
		);

		return $links;
	}

	/**
	 * Prepares a single user for creation or update.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return object User object.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_user = new stdClass();

		$schema = $this->get_item_schema();

		// Required arguments.
		if ( isset( $request['email'] ) && ! empty( $schema['properties']['email'] ) ) {
			$prepared_user->user_email = $request['email'];
		}

		if ( isset( $request['username'] ) && ! empty( $schema['properties']['username'] ) ) {
			$prepared_user->user_login = $request['username'];
		}

		if ( isset( $request['password'] ) && ! empty( $schema['properties']['password'] ) ) {
			$prepared_user->user_pass = $request['password'];
		}

		// Optional arguments.
		if ( isset( $request['id'] ) ) {
			$prepared_user->ID = absint( $request['id'] );
		}

		if ( isset( $request['name'] ) && ! empty( $schema['properties']['name'] ) ) {
			$prepared_user->display_name = $request['name'];
		}

		if ( isset( $request['first_name'] ) && ! empty( $schema['properties']['first_name'] ) ) {
			$prepared_user->first_name = $request['first_name'];
		}

		if ( isset( $request['last_name'] ) && ! empty( $schema['properties']['last_name'] ) ) {
			$prepared_user->last_name = $request['last_name'];
		}

		if ( isset( $request['nickname'] ) && ! empty( $schema['properties']['nickname'] ) ) {
			$prepared_user->nickname = $request['nickname'];
		}

		if ( isset( $request['slug'] ) && ! empty( $schema['properties']['slug'] ) ) {
			$prepared_user->user_nicename = $request['slug'];
		}

		if ( isset( $request['description'] ) && ! empty( $schema['properties']['description'] ) ) {
			$prepared_user->description = $request['description'];
		}

		if ( isset( $request['url'] ) && ! empty( $schema['properties']['url'] ) ) {
			$prepared_user->user_url = $request['url'];
		}

		if ( isset( $request['locale'] ) && ! empty( $schema['properties']['locale'] ) ) {
			$prepared_user->locale = $request['locale'];
		}

		// Setting roles will be handled outside of this function.
		if ( isset( $request['roles'] ) ) {
			$prepared_user->role = false;
		}

		/**
		 * Filters user data before insertion via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param object          $prepared_user User object.
		 * @param WP_REST_Request $request       Request object.
		 */
		return apply_filters( 'rest_pre_insert_user', $prepared_user, $request );
	}

	/**
	 * Determines if the current user is allowed to make the desired roles change.
	 *
	 * @since 4.7.0
	 *
	 * @global WP_Roles $wp_roles WordPress role management object.
	 *
	 * @param int   $user_id User ID.
	 * @param array $roles   New user roles.
	 * @return true|WP_Error True if the current user is allowed to make the role change,
	 *                       otherwise a WP_Error object.
	 */
	protected function check_role_update( $user_id, $roles ) {
		global $wp_roles;

		foreach ( $roles as $role ) {

			if ( ! isset( $wp_roles->role_objects[ $role ] ) ) {
				return new WP_Error(
					'rest_user_invalid_role',
					/* translators: %s: Role key. */
					sprintf( __( 'The role %s does not exist.' ), $role ),
					array( 'status' => 400 )
				);
			}

			$potential_role = $wp_roles->role_objects[ $role ];

			/*
			 * Don't let anyone with 'edit_users' (admins) edit their own role to something without it.
			 * Multisite super admins can freely edit their blog roles -- they possess all caps.
			 */
			if ( ! ( is_multisite()
				&& current_user_can( 'manage_sites' ) )
				&& get_current_user_id() === $user_id
				&& ! $potential_role->has_cap( 'edit_users' )
			) {
				return new WP_Error(
					'rest_user_invalid_role',
					__( 'Sorry, you are not allowed to give users that role.' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}

			// Include user admin functions to get access to get_editable_roles().
			require_once ABSPATH . 'wp-admin/includes/user.php';

			// The new role must be editable by the logged-in user.
			$editable_roles = get_editable_roles();

			if ( empty( $editable_roles[ $role ] ) ) {
				return new WP_Error(
					'rest_user_invalid_role',
					__( 'Sorry, you are not allowed to give users that role.' ),
					array( 'status' => 403 )
				);
			}
		}

		return true;
	}

	/**
	 * Check a username for the REST API.
	 *
	 * Performs a couple of checks like edit_user() in wp-admin/includes/user.php.
	 *
	 * @since 4.7.0
	 *
	 * @param string          $value   The username submitted in the request.
	 * @param WP_REST_Request $request Full details about the request.
	 * @param string          $param   The parameter name.
	 * @return string|WP_Error The sanitized username, if valid, otherwise an error.
	 */
	public function check_username( $value, $request, $param ) {
		$username = (string) $value;

		if ( ! validate_username( $username ) ) {
			return new WP_Error(
				'rest_user_invalid_username',
				__( 'This username is invalid because it uses illegal characters. Please enter a valid username.' ),
				array( 'status' => 400 )
			);
		}

		/** This filter is documented in wp-includes/user.php */
		$illegal_logins = (array) apply_filters( 'illegal_user_logins', array() );

		if ( in_array( strtolower( $username ), array_map( 'strtolower', $illegal_logins ), true ) ) {
			return new WP_Error(
				'rest_user_invalid_username',
				__( 'Sorry, that username is not allowed.' ),
				array( 'status' => 400 )
			);
		}

		return $username;
	}

	/**
	 * Check a user password for the REST API.
	 *
	 * Performs a couple of checks like edit_user() in wp-admin/includes/user.php.
	 *
	 * @since 4.7.0
	 *
	 * @param string          $value   The password submitted in the request.
	 * @param WP_REST_Request $request Full details about the request.
	 * @param string          $param   The parameter name.
	 * @return string|WP_Error The sanitized password, if valid, otherwise an error.
	 */
	public function check_user_password(
		#[\SensitiveParameter]
		$value,
		$request,
		$param
	) {
		$password = (string) $value;

		if ( empty( $password ) ) {
			return new WP_Error(
				'rest_user_invalid_password',
				__( 'Passwords cannot be empty.' ),
				array( 'status' => 400 )
			);
		}

		if ( str_contains( $password, '\\' ) ) {
			return new WP_Error(
				'rest_user_invalid_password',
				sprintf(
					/* translators: %s: The '\' character. */
					__( 'Passwords cannot contain the "%s" character.' ),
					'\\'
				),
				array( 'status' => 400 )
			);
		}

		return $password;
	}

	/**
	 * Retrieves the user's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'user',
			'type'       => 'object',
			'properties' => array(
				'id'                 => array(
					'description' => __( 'Unique identifier for the user.' ),
					'type'        => 'integer',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'username'           => array(
					'description' => __( 'Login name for the user.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'required'    => true,
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'check_username' ),
					),
				),
				'name'               => array(
					'description' => __( 'Display name for the user.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'first_name'         => array(
					'description' => __( 'First name for the user.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'last_name'          => array(
					'description' => __( 'Last name for the user.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'email'              => array(
					'description' => __( 'The email address for the user.' ),
					'type'        => 'string',
					'format'      => 'email',
					'context'     => array( 'edit' ),
					'required'    => true,
				),
				'url'                => array(
					'description' => __( 'URL of the user.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'description'        => array(
					'description' => __( 'Description of the user.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'link'               => array(
					'description' => __( 'Author URL of the user.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'locale'             => array(
					'description' => __( 'Locale for the user.' ),
					'type'        => 'string',
					'enum'        => array_merge( array( '', 'en_US' ), get_available_languages() ),
					'context'     => array( 'edit' ),
				),
				'nickname'           => array(
					'description' => __( 'The nickname for the user.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'slug'               => array(
					'description' => __( 'An alphanumeric identifier for the user.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'sanitize_slug' ),
					),
				),
				'registered_date'    => array(
					'description' => __( 'Registration date for the user.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'roles'              => array(
					'description' => __( 'Roles assigned to the user.' ),
					'type'        => 'array',
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'edit' ),
				),
				'password'           => array(
					'description' => __( 'Password for the user (never included).' ),
					'type'        => 'string',
					'context'     => array(), // Password is never displayed.
					'required'    => true,
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'check_user_password' ),
					),
				),
				'capabilities'       => array(
					'description' => __( 'All capabilities assigned to the user.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'extra_capabilities' => array(
					'description' => __( 'Any extra capabilities assigned to the user.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
			),
		);

		if ( get_option( 'show_avatars' ) ) {
			$avatar_properties = array();

			$avatar_sizes = rest_get_avatar_sizes();

			foreach ( $avatar_sizes as $size ) {
				$avatar_properties[ $size ] = array(
					/* translators: %d: Avatar image size in pixels. */
					'description' => sprintf( __( 'Avatar URL with image size of %d pixels.' ), $size ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'embed', 'view', 'edit' ),
				);
			}

			$schema['properties']['avatar_urls'] = array(
				'description' => __( 'Avatar URLs for the user.' ),
				'type'        => 'object',
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
				'properties'  => $avatar_properties,
			);
		}

		$schema['properties']['meta'] = $this->meta->get_field_schema();

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['offset'] = array(
			'description' => __( 'Offset the result set by a specific number of items.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'default'     => 'asc',
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'enum'        => array( 'asc', 'desc' ),
			'type'        => 'string',
		);

		$query_params['orderby'] = array(
			'default'     => 'name',
			'description' => __( 'Sort collection by user attribute.' ),
			'enum'        => array(
				'id',
				'include',
				'name',
				'registered_date',
				'slug',
				'include_slugs',
				'email',
				'url',
			),
			'type'        => 'string',
		);

		$query_params['slug'] = array(
			'description' => __( 'Limit result set to users with one or more specific slugs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		$query_params['roles'] = array(
			'description' => __( 'Limit result set to users matching at least one specific role provided. Accepts csv list or single role.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		$query_params['capabilities'] = array(
			'description' => __( 'Limit result set to users matching at least one specific capability provided. Accepts csv list or single capability.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		$query_params['who'] = array(
			'description' => __( 'Limit result set to users who are considered authors.' ),
			'type'        => 'string',
			'enum'        => array(
				'authors',
			),
		);

		$query_params['has_published_posts'] = array(
			'description' => __( 'Limit result set to users who have published posts.' ),
			'type'        => array( 'boolean', 'array' ),
			'items'       => array(
				'type' => 'string',
				'enum' => get_post_types( array( 'show_in_rest' => true ), 'names' ),
			),
		);

		$query_params['search_columns'] = array(
			'default'     => array(),
			'description' => __( 'Array of column names to be searched.' ),
			'type'        => 'array',
			'items'       => array(
				'enum' => array( 'email', 'name', 'id', 'username', 'slug' ),
				'type' => 'string',
			),
		);

		/**
		 * Filters REST API collection parameters for the users controller.
		 *
		 * This filter registers the collection parameter, but does not map the
		 * collection parameter to an internal WP_User_Query parameter.  Use the
		 * `rest_user_query` filter to set WP_User_Query arguments.
		 *
		 * @since 4.7.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_user_collection_params', $query_params );
	}
}
endpoints/class-wp-rest-controller.php000064400000045176152222510010014150 0ustar00<?php
/**
 * REST API: WP_REST_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core base controller for managing and interacting with REST API items.
 *
 * @since 4.7.0
 */
#[AllowDynamicProperties]
abstract class WP_REST_Controller {

	/**
	 * The namespace of this controller's route.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $namespace;

	/**
	 * The base of this controller's route.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $rest_base;

	/**
	 * Cached results of get_item_schema.
	 *
	 * @since 5.3.0
	 * @var array
	 */
	protected $schema;

	/**
	 * Registers the routes for the objects of the controller.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		_doing_it_wrong(
			'WP_REST_Controller::register_routes',
			/* translators: %s: register_routes() */
			sprintf( __( "Method '%s' must be overridden." ), __METHOD__ ),
			'4.7.0'
		);
	}

	/**
	 * Checks if a given request has access to get items.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Retrieves a collection of items.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Checks if a given request has access to get a specific item.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Retrieves one item from the collection.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Checks if a given request has access to create items.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Creates one item from the collection.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Checks if a given request has access to update a specific item.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Updates one item from the collection.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Checks if a given request has access to delete a specific item.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Deletes one item from the collection.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Prepares one item for create or update operation.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return object|WP_Error The prepared item, or WP_Error object on failure.
	 */
	protected function prepare_item_for_database( $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Prepares the item for the REST response.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed           $item    WordPress representation of the item.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		return new WP_Error(
			'invalid-method',
			/* translators: %s: Method name. */
			sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
			array( 'status' => 405 )
		);
	}

	/**
	 * Prepares a response for insertion into a collection.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Response $response Response object.
	 * @return array|mixed Response data, ready for insertion into collection data.
	 */
	public function prepare_response_for_collection( $response ) {
		if ( ! ( $response instanceof WP_REST_Response ) ) {
			return $response;
		}

		$data   = (array) $response->get_data();
		$server = rest_get_server();
		$links  = $server::get_compact_response_links( $response );

		if ( ! empty( $links ) ) {
			$data['_links'] = $links;
		}

		return $data;
	}

	/**
	 * Filters a response based on the context defined in the schema.
	 *
	 * @since 4.7.0
	 *
	 * @param array  $response_data Response data to filter.
	 * @param string $context       Context defined in the schema.
	 * @return array Filtered response.
	 */
	public function filter_response_by_context( $response_data, $context ) {

		$schema = $this->get_item_schema();

		return rest_filter_response_by_context( $response_data, $schema, $context );
	}

	/**
	 * Retrieves the item's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		return $this->add_additional_fields_schema( array() );
	}

	/**
	 * Retrieves the item's schema for display / public consumption purposes.
	 *
	 * @since 4.7.0
	 *
	 * @return array Public item schema data.
	 */
	public function get_public_item_schema() {

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties'] ) ) {
			foreach ( $schema['properties'] as &$property ) {
				unset( $property['arg_options'] );
			}
		}

		return $schema;
	}

	/**
	 * Retrieves the query params for the collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Query parameters for the collection.
	 */
	public function get_collection_params() {
		return array(
			'context'  => $this->get_context_param(),
			'page'     => array(
				'description'       => __( 'Current page of the collection.' ),
				'type'              => 'integer',
				'default'           => 1,
				'sanitize_callback' => 'absint',
				'validate_callback' => 'rest_validate_request_arg',
				'minimum'           => 1,
			),
			'per_page' => array(
				'description'       => __( 'Maximum number of items to be returned in result set.' ),
				'type'              => 'integer',
				'default'           => 10,
				'minimum'           => 1,
				'maximum'           => 100,
				'sanitize_callback' => 'absint',
				'validate_callback' => 'rest_validate_request_arg',
			),
			'search'   => array(
				'description'       => __( 'Limit results to those matching a string.' ),
				'type'              => 'string',
				'sanitize_callback' => 'sanitize_text_field',
				'validate_callback' => 'rest_validate_request_arg',
			),
		);
	}

	/**
	 * Retrieves the magical context param.
	 *
	 * Ensures consistent descriptions between endpoints, and populates enum from schema.
	 *
	 * @since 4.7.0
	 *
	 * @param array $args Optional. Additional arguments for context parameter. Default empty array.
	 * @return array Context parameter details.
	 */
	public function get_context_param( $args = array() ) {
		$param_details = array(
			'description'       => __( 'Scope under which the request is made; determines fields present in response.' ),
			'type'              => 'string',
			'sanitize_callback' => 'sanitize_key',
			'validate_callback' => 'rest_validate_request_arg',
		);

		$schema = $this->get_item_schema();

		if ( empty( $schema['properties'] ) ) {
			return array_merge( $param_details, $args );
		}

		$contexts = array();

		foreach ( $schema['properties'] as $attributes ) {
			if ( ! empty( $attributes['context'] ) ) {
				$contexts = array_merge( $contexts, $attributes['context'] );
			}
		}

		if ( ! empty( $contexts ) ) {
			$param_details['enum'] = array_unique( $contexts );
			rsort( $param_details['enum'] );
		}

		return array_merge( $param_details, $args );
	}

	/**
	 * Adds the values from additional fields to a data object.
	 *
	 * @since 4.7.0
	 *
	 * @param array           $response_data Prepared response array.
	 * @param WP_REST_Request $request       Full details about the request.
	 * @return array Modified data object with additional fields.
	 */
	protected function add_additional_fields_to_object( $response_data, $request ) {

		$additional_fields = $this->get_additional_fields();

		$requested_fields = $this->get_fields_for_response( $request );

		foreach ( $additional_fields as $field_name => $field_options ) {
			if ( ! $field_options['get_callback'] ) {
				continue;
			}

			if ( ! rest_is_field_included( $field_name, $requested_fields ) ) {
				continue;
			}

			$response_data[ $field_name ] = call_user_func(
				$field_options['get_callback'],
				$response_data,
				$field_name,
				$request,
				$this->get_object_type()
			);
		}

		return $response_data;
	}

	/**
	 * Updates the values of additional fields added to a data object.
	 *
	 * @since 4.7.0
	 *
	 * @param object          $data_object Data model like WP_Term or WP_Post.
	 * @param WP_REST_Request $request     Full details about the request.
	 * @return true|WP_Error True on success, WP_Error object if a field cannot be updated.
	 */
	protected function update_additional_fields_for_object( $data_object, $request ) {
		$additional_fields = $this->get_additional_fields();

		foreach ( $additional_fields as $field_name => $field_options ) {
			if ( ! $field_options['update_callback'] ) {
				continue;
			}

			// Don't run the update callbacks if the data wasn't passed in the request.
			if ( ! isset( $request[ $field_name ] ) ) {
				continue;
			}

			$result = call_user_func(
				$field_options['update_callback'],
				$request[ $field_name ],
				$data_object,
				$field_name,
				$request,
				$this->get_object_type()
			);

			if ( is_wp_error( $result ) ) {
				return $result;
			}
		}

		return true;
	}

	/**
	 * Adds the schema from additional fields to a schema array.
	 *
	 * The type of object is inferred from the passed schema.
	 *
	 * @since 4.7.0
	 *
	 * @param array $schema Schema array.
	 * @return array Modified Schema array.
	 */
	protected function add_additional_fields_schema( $schema ) {
		if ( empty( $schema['title'] ) ) {
			return $schema;
		}

		// Can't use $this->get_object_type otherwise we cause an inf loop.
		$object_type = $schema['title'];

		$additional_fields = $this->get_additional_fields( $object_type );

		foreach ( $additional_fields as $field_name => $field_options ) {
			if ( ! $field_options['schema'] ) {
				continue;
			}

			$schema['properties'][ $field_name ] = $field_options['schema'];
		}

		return $schema;
	}

	/**
	 * Retrieves all of the registered additional fields for a given object-type.
	 *
	 * @since 4.7.0
	 *
	 * @global array $wp_rest_additional_fields Holds registered fields, organized by object type.
	 *
	 * @param string $object_type Optional. The object type.
	 * @return array Registered additional fields (if any), empty array if none or if the object type
	 *               could not be inferred.
	 */
	protected function get_additional_fields( $object_type = null ) {
		global $wp_rest_additional_fields;

		if ( ! $object_type ) {
			$object_type = $this->get_object_type();
		}

		if ( ! $object_type ) {
			return array();
		}

		if ( ! $wp_rest_additional_fields || ! isset( $wp_rest_additional_fields[ $object_type ] ) ) {
			return array();
		}

		return $wp_rest_additional_fields[ $object_type ];
	}

	/**
	 * Retrieves the object type this controller is responsible for managing.
	 *
	 * @since 4.7.0
	 *
	 * @return string Object type for the controller.
	 */
	protected function get_object_type() {
		$schema = $this->get_item_schema();

		if ( ! $schema || ! isset( $schema['title'] ) ) {
			return null;
		}

		return $schema['title'];
	}

	/**
	 * Gets an array of fields to be included on the response.
	 *
	 * Included fields are based on item schema and `_fields=` request argument.
	 *
	 * @since 4.9.6
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return string[] Fields to be included in the response.
	 */
	public function get_fields_for_response( $request ) {
		$schema     = $this->get_item_schema();
		$properties = isset( $schema['properties'] ) ? $schema['properties'] : array();

		$additional_fields = $this->get_additional_fields();

		foreach ( $additional_fields as $field_name => $field_options ) {
			/*
			 * For back-compat, include any field with an empty schema
			 * because it won't be present in $this->get_item_schema().
			 */
			if ( is_null( $field_options['schema'] ) ) {
				$properties[ $field_name ] = $field_options;
			}
		}

		// Exclude fields that specify a different context than the request context.
		$context = $request['context'];
		if ( $context ) {
			foreach ( $properties as $name => $options ) {
				if ( ! empty( $options['context'] ) && ! in_array( $context, $options['context'], true ) ) {
					unset( $properties[ $name ] );
				}
			}
		}

		$fields = array_keys( $properties );

		/*
		 * '_links' and '_embedded' are not typically part of the item schema,
		 * but they can be specified in '_fields', so they are added here as a
		 * convenience for checking with rest_is_field_included().
		 */
		$fields[] = '_links';
		if ( $request->has_param( '_embed' ) ) {
			$fields[] = '_embedded';
		}

		$fields = array_unique( $fields );

		if ( ! isset( $request['_fields'] ) ) {
			return $fields;
		}
		$requested_fields = wp_parse_list( $request['_fields'] );
		if ( 0 === count( $requested_fields ) ) {
			return $fields;
		}
		// Trim off outside whitespace from the comma delimited list.
		$requested_fields = array_map( 'trim', $requested_fields );
		// Always persist 'id', because it can be needed for add_additional_fields_to_object().
		if ( in_array( 'id', $fields, true ) ) {
			$requested_fields[] = 'id';
		}
		// Return the list of all requested fields which appear in the schema.
		return array_reduce(
			$requested_fields,
			static function ( $response_fields, $field ) use ( $fields ) {
				if ( in_array( $field, $fields, true ) ) {
					$response_fields[] = $field;
					return $response_fields;
				}
				// Check for nested fields if $field is not a direct match.
				$nested_fields = explode( '.', $field );
				/*
				 * A nested field is included so long as its top-level property
				 * is present in the schema.
				 */
				if ( in_array( $nested_fields[0], $fields, true ) ) {
					$response_fields[] = $field;
				}
				return $response_fields;
			},
			array()
		);
	}

	/**
	 * Retrieves an array of endpoint arguments from the item schema for the controller.
	 *
	 * @since 4.7.0
	 *
	 * @param string $method Optional. HTTP method of the request. The arguments for `CREATABLE` requests are
	 *                       checked for required values and may fall-back to a given default, this is not done
	 *                       on `EDITABLE` requests. Default WP_REST_Server::CREATABLE.
	 * @return array Endpoint arguments.
	 */
	public function get_endpoint_args_for_item_schema( $method = WP_REST_Server::CREATABLE ) {
		return rest_get_endpoint_args_for_schema( $this->get_item_schema(), $method );
	}

	/**
	 * Sanitizes the slug value.
	 *
	 * {@internal We can't use sanitize_title() directly, as the second
	 * parameter is the fallback title, which would end up being set to the
	 * request object.}
	 *
	 * @since 4.7.0
	 *
	 * @see https://github.com/WP-API/WP-API/issues/1585
	 *
	 * @todo Remove this in favour of https://core.trac.wordpress.org/ticket/34659
	 *
	 * @param string $slug Slug value passed in request.
	 * @return string Sanitized value for the slug.
	 */
	public function sanitize_slug( $slug ) {
		return sanitize_title( $slug );
	}
}
endpoints/class-wp-rest-font-faces-controller.php000064400000072164152222510010016170 0ustar00<?php
/**
 * REST API: WP_REST_Font_Faces_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.5.0
 */

/**
 * Class to access font faces through the REST API.
 */
class WP_REST_Font_Faces_Controller extends WP_REST_Posts_Controller {

	/**
	 * The latest version of theme.json schema supported by the controller.
	 *
	 * @since 6.5.0
	 * @var int
	 */
	const LATEST_THEME_JSON_VERSION_SUPPORTED = 3;

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 6.5.0
	 * @var false
	 */
	protected $allow_batch = false;

	/**
	 * Registers the routes for posts.
	 *
	 * @since 6.5.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				'args'   => array(
					'font_family_id' => array(
						'description' => __( 'The ID for the parent font family of the font face.' ),
						'type'        => 'integer',
						'required'    => true,
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_create_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'   => array(
					'font_family_id' => array(
						'description' => __( 'The ID for the parent font family of the font face.' ),
						'type'        => 'integer',
						'required'    => true,
					),
					'id'             => array(
						'description' => __( 'Unique identifier for the font face.' ),
						'type'        => 'integer',
						'required'    => true,
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Whether to bypass Trash and force deletion.', 'default' ),
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to font faces.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$post_type = get_post_type_object( $this->post_type );

		if ( ! current_user_can( $post_type->cap->read ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to access font faces.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Checks if a given request has access to a font face.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( ! current_user_can( 'read_post', $post->ID ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to access this font face.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Validates settings when creating a font face.
	 *
	 * @since 6.5.0
	 *
	 * @param string          $value   Encoded JSON string of font face settings.
	 * @param WP_REST_Request $request Request object.
	 * @return true|WP_Error True if the settings are valid, otherwise a WP_Error object.
	 */
	public function validate_create_font_face_settings( $value, $request ) {
		$settings = json_decode( $value, true );

		// Check settings string is valid JSON.
		if ( null === $settings ) {
			return new WP_Error(
				'rest_invalid_param',
				__( 'font_face_settings parameter must be a valid JSON string.' ),
				array( 'status' => 400 )
			);
		}

		// Check that the font face settings match the theme.json schema.
		$schema             = $this->get_item_schema()['properties']['font_face_settings'];
		$has_valid_settings = rest_validate_value_from_schema( $settings, $schema, 'font_face_settings' );

		if ( is_wp_error( $has_valid_settings ) ) {
			$has_valid_settings->add_data( array( 'status' => 400 ) );
			return $has_valid_settings;
		}

		// Check that none of the required settings are empty values.
		$required = $schema['required'];
		foreach ( $required as $key ) {
			if ( isset( $settings[ $key ] ) && ! $settings[ $key ] ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: %s: Name of the missing font face settings parameter, e.g. "font_face_settings[src]". */
					sprintf( __( '%s cannot be empty.' ), "font_face_setting[ $key ]" ),
					array( 'status' => 400 )
				);
			}
		}

		$srcs  = is_array( $settings['src'] ) ? $settings['src'] : array( $settings['src'] );
		$files = $request->get_file_params();

		foreach ( $srcs as $src ) {
			// Check that each src is a non-empty string.
			$src = ltrim( $src );
			if ( empty( $src ) ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: %s: Font face source parameter name: "font_face_settings[src]". */
					sprintf( __( '%s values must be non-empty strings.' ), 'font_face_settings[src]' ),
					array( 'status' => 400 )
				);
			}

			// Check that srcs are valid URLs or file references.
			if ( false === wp_http_validate_url( $src ) && ! isset( $files[ $src ] ) ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: 1: Font face source parameter name: "font_face_settings[src]", 2: The invalid src value. */
					sprintf( __( '%1$s value "%2$s" must be a valid URL or file reference.' ), 'font_face_settings[src]', $src ),
					array( 'status' => 400 )
				);
			}
		}

		// Check that each file in the request references a src in the settings.
		foreach ( array_keys( $files ) as $file ) {
			if ( ! in_array( $file, $srcs, true ) ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: 1: File key (e.g. "file-0") in the request data, 2: Font face source parameter name: "font_face_settings[src]". */
					sprintf( __( 'File %1$s must be used in %2$s.' ), $file, 'font_face_settings[src]' ),
					array( 'status' => 400 )
				);
			}
		}

		return true;
	}

	/**
	 * Sanitizes the font face settings when creating a font face.
	 *
	 * @since 6.5.0
	 *
	 * @param string $value Encoded JSON string of font face settings.
	 * @return array Decoded and sanitized array of font face settings.
	 */
	public function sanitize_font_face_settings( $value ) {
		// Settings arrive as stringified JSON, since this is a multipart/form-data request.
		$settings = json_decode( $value, true );
		$schema   = $this->get_item_schema()['properties']['font_face_settings']['properties'];

		// Sanitize settings based on callbacks in the schema.
		foreach ( $settings as $key => $value ) {
			$sanitize_callback = $schema[ $key ]['arg_options']['sanitize_callback'];
			$settings[ $key ]  = call_user_func( $sanitize_callback, $value );
		}

		return $settings;
	}

	/**
	 * Retrieves a collection of font faces within the parent font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$font_family = $this->get_parent_font_family_post( $request['font_family_id'] );
		if ( is_wp_error( $font_family ) ) {
			return $font_family;
		}

		return parent::get_items( $request );
	}

	/**
	 * Retrieves a single font face within the parent font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		// Check that the font face has a valid parent font family.
		$font_family = $this->get_parent_font_family_post( $request['font_family_id'] );
		if ( is_wp_error( $font_family ) ) {
			return $font_family;
		}

		if ( (int) $font_family->ID !== (int) $post->post_parent ) {
			return new WP_Error(
				'rest_font_face_parent_id_mismatch',
				/* translators: %d: A post id. */
				sprintf( __( 'The font face does not belong to the specified font family with id of "%d".' ), $font_family->ID ),
				array( 'status' => 404 )
			);
		}

		return parent::get_item( $request );
	}

	/**
	 * Creates a font face for the parent font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		$font_family = $this->get_parent_font_family_post( $request['font_family_id'] );
		if ( is_wp_error( $font_family ) ) {
			return $font_family;
		}

		// Settings have already been decoded by ::sanitize_font_face_settings().
		$settings    = $request->get_param( 'font_face_settings' );
		$file_params = $request->get_file_params();

		// Check that the necessary font face properties are unique.
		$query = new WP_Query(
			array(
				'post_type'              => $this->post_type,
				'posts_per_page'         => 1,
				'title'                  => WP_Font_Utils::get_font_face_slug( $settings ),
				'update_post_meta_cache' => false,
				'update_post_term_cache' => false,
			)
		);
		if ( ! empty( $query->posts ) ) {
			return new WP_Error(
				'rest_duplicate_font_face',
				__( 'A font face matching those settings already exists.' ),
				array( 'status' => 400 )
			);
		}

		// Move the uploaded font asset from the temp folder to the fonts directory.
		if ( ! function_exists( 'wp_handle_upload' ) ) {
			require_once ABSPATH . 'wp-admin/includes/file.php';
		}

		$srcs           = is_string( $settings['src'] ) ? array( $settings['src'] ) : $settings['src'];
		$processed_srcs = array();
		$font_file_meta = array();

		foreach ( $srcs as $src ) {
			// If src not a file reference, use it as is.
			if ( ! isset( $file_params[ $src ] ) ) {
				$processed_srcs[] = $src;
				continue;
			}

			$file      = $file_params[ $src ];
			$font_file = $this->handle_font_file_upload( $file );
			if ( is_wp_error( $font_file ) ) {
				return $font_file;
			}

			$processed_srcs[] = $font_file['url'];
			$font_file_meta[] = $this->relative_fonts_path( $font_file['file'] );
		}

		// Store the updated settings for prepare_item_for_database to use.
		$settings['src'] = count( $processed_srcs ) === 1 ? $processed_srcs[0] : $processed_srcs;
		$request->set_param( 'font_face_settings', $settings );

		// Ensure that $settings data is slashed, so values with quotes are escaped.
		// WP_REST_Posts_Controller::create_item uses wp_slash() on the post_content.
		$font_face_post = parent::create_item( $request );

		if ( is_wp_error( $font_face_post ) ) {
			return $font_face_post;
		}

		$font_face_id = $font_face_post->data['id'];

		foreach ( $font_file_meta as $font_file_path ) {
			add_post_meta( $font_face_id, '_wp_font_face_file', $font_file_path );
		}

		return $font_face_post;
	}

	/**
	 * Deletes a single font face.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		$font_family = $this->get_parent_font_family_post( $request['font_family_id'] );
		if ( is_wp_error( $font_family ) ) {
			return $font_family;
		}

		if ( (int) $font_family->ID !== (int) $post->post_parent ) {
			return new WP_Error(
				'rest_font_face_parent_id_mismatch',
				/* translators: %d: A post id. */
				sprintf( __( 'The font face does not belong to the specified font family with id of "%d".' ), $font_family->ID ),
				array( 'status' => 404 )
			);
		}

		$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

		// We don't support trashing for font faces.
		if ( ! $force ) {
			return new WP_Error(
				'rest_trash_not_supported',
				/* translators: %s: force=true */
				sprintf( __( 'Font faces do not support trashing. Set "%s" to delete.' ), 'force=true' ),
				array( 'status' => 501 )
			);
		}

		return parent::delete_item( $request );
	}

	/**
	 * Prepares a single font face output for response.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post         $item    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $item->ID;
		}
		if ( rest_is_field_included( 'theme_json_version', $fields ) ) {
			$data['theme_json_version'] = static::LATEST_THEME_JSON_VERSION_SUPPORTED;
		}

		if ( rest_is_field_included( 'parent', $fields ) ) {
			$data['parent'] = $item->post_parent;
		}

		if ( rest_is_field_included( 'font_face_settings', $fields ) ) {
			$data['font_face_settings'] = $this->get_settings_from_post( $item );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $item );
			$response->add_links( $links );
		}

		/**
		 * Filters the font face data for a REST API response.
		 *
		 * @since 6.5.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     Font face post object.
		 * @param WP_REST_Request  $request  Request object.
		 */
		return apply_filters( 'rest_prepare_wp_font_face', $response, $item, $request );
	}

	/**
	 * Retrieves the post's schema, conforming to JSON Schema.
	 *
	 * @since 6.5.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => $this->post_type,
			'type'       => 'object',
			// Base properties for every Post.
			'properties' => array(
				'id'                 => array(
					'description' => __( 'Unique identifier for the post.', 'default' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'theme_json_version' => array(
					'description' => __( 'Version of the theme.json schema used for the typography settings.' ),
					'type'        => 'integer',
					'default'     => static::LATEST_THEME_JSON_VERSION_SUPPORTED,
					'minimum'     => 2,
					'maximum'     => static::LATEST_THEME_JSON_VERSION_SUPPORTED,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'parent'             => array(
					'description' => __( 'The ID for the parent font family of the font face.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				// Font face settings come directly from theme.json schema
				// See https://schemas.wp.org/trunk/theme.json
				'font_face_settings' => array(
					'description'          => __( 'font-face declaration in theme.json format.' ),
					'type'                 => 'object',
					'context'              => array( 'view', 'edit', 'embed' ),
					'properties'           => array(
						'fontFamily'            => array(
							'description' => __( 'CSS font-family value.' ),
							'type'        => 'string',
							'default'     => '',
							'arg_options' => array(
								'sanitize_callback' => array( 'WP_Font_Utils', 'sanitize_font_family' ),
							),
						),
						'fontStyle'             => array(
							'description' => __( 'CSS font-style value.' ),
							'type'        => 'string',
							'default'     => 'normal',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'fontWeight'            => array(
							'description' => __( 'List of available font weights, separated by a space.' ),
							'default'     => '400',
							// Changed from `oneOf` to avoid errors from loose type checking.
							// e.g. a fontWeight of "400" validates as both a string and an integer due to is_numeric check.
							'type'        => array( 'string', 'integer' ),
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'fontDisplay'           => array(
							'description' => __( 'CSS font-display value.' ),
							'type'        => 'string',
							'default'     => 'fallback',
							'enum'        => array(
								'auto',
								'block',
								'fallback',
								'swap',
								'optional',
							),
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'src'                   => array(
							'description' => __( 'Paths or URLs to the font files.' ),
							// Changed from `oneOf` to `anyOf` due to rest_sanitize_array converting a string into an array,
							// and causing a "matches more than one of the expected formats" error.
							'anyOf'       => array(
								array(
									'type' => 'string',
								),
								array(
									'type'  => 'array',
									'items' => array(
										'type' => 'string',
									),
								),
							),
							'default'     => array(),
							'arg_options' => array(
								'sanitize_callback' => function ( $value ) {
									return is_array( $value ) ? array_map( array( $this, 'sanitize_src' ), $value ) : $this->sanitize_src( $value );
								},
							),
						),
						'fontStretch'           => array(
							'description' => __( 'CSS font-stretch value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'ascentOverride'        => array(
							'description' => __( 'CSS ascent-override value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'descentOverride'       => array(
							'description' => __( 'CSS descent-override value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'fontVariant'           => array(
							'description' => __( 'CSS font-variant value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'fontFeatureSettings'   => array(
							'description' => __( 'CSS font-feature-settings value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'fontVariationSettings' => array(
							'description' => __( 'CSS font-variation-settings value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'lineGapOverride'       => array(
							'description' => __( 'CSS line-gap-override value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'sizeAdjust'            => array(
							'description' => __( 'CSS size-adjust value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'unicodeRange'          => array(
							'description' => __( 'CSS unicode-range value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'preview'               => array(
							'description' => __( 'URL to a preview image of the font face.' ),
							'type'        => 'string',
							'format'      => 'uri',
							'default'     => '',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_url',
							),
						),
					),
					'required'             => array( 'fontFamily', 'src' ),
					'additionalProperties' => false,
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the item's schema for display / public consumption purposes.
	 *
	 * @since 6.5.0
	 *
	 * @return array Public item schema data.
	 */
	public function get_public_item_schema() {

		$schema = parent::get_public_item_schema();

		// Also remove `arg_options' from child font_family_settings properties, since the parent
		// controller only handles the top level properties.
		foreach ( $schema['properties']['font_face_settings']['properties'] as &$property ) {
			unset( $property['arg_options'] );
		}

		return $schema;
	}

	/**
	 * Retrieves the query params for the font face collection.
	 *
	 * @since 6.5.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		// Remove unneeded params.
		unset(
			$query_params['after'],
			$query_params['modified_after'],
			$query_params['before'],
			$query_params['modified_before'],
			$query_params['search'],
			$query_params['search_columns'],
			$query_params['slug'],
			$query_params['status']
		);

		$query_params['orderby']['default'] = 'id';
		$query_params['orderby']['enum']    = array( 'id', 'include' );

		/**
		 * Filters collection parameters for the font face controller.
		 *
		 * @since 6.5.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_wp_font_face_collection_params', $query_params );
	}

	/**
	 * Get the params used when creating a new font face.
	 *
	 * @since 6.5.0
	 *
	 * @return array Font face create arguments.
	 */
	public function get_create_params() {
		$properties = $this->get_item_schema()['properties'];
		return array(
			'theme_json_version' => $properties['theme_json_version'],
			// When creating, font_face_settings is stringified JSON, to work with multipart/form-data used
			// when uploading font files.
			'font_face_settings' => array(
				'description'       => __( 'font-face declaration in theme.json format, encoded as a string.' ),
				'type'              => 'string',
				'required'          => true,
				'validate_callback' => array( $this, 'validate_create_font_face_settings' ),
				'sanitize_callback' => array( $this, 'sanitize_font_face_settings' ),
			),
		);
	}

	/**
	 * Get the parent font family, if the ID is valid.
	 *
	 * @since 6.5.0
	 *
	 * @param int $font_family_id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_parent_font_family_post( $font_family_id ) {
		$error = new WP_Error(
			'rest_post_invalid_parent',
			__( 'Invalid post parent ID.', 'default' ),
			array( 'status' => 404 )
		);

		if ( (int) $font_family_id <= 0 ) {
			return $error;
		}

		$font_family_post = get_post( (int) $font_family_id );

		if ( empty( $font_family_post ) || empty( $font_family_post->ID )
		|| 'wp_font_family' !== $font_family_post->post_type
		) {
			return $error;
		}

		return $font_family_post;
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post $post Post object.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $post ) {
		// Entity meta.
		return array(
			'self'       => array(
				'href' => rest_url( $this->namespace . '/font-families/' . $post->post_parent . '/font-faces/' . $post->ID ),
			),
			'collection' => array(
				'href' => rest_url( $this->namespace . '/font-families/' . $post->post_parent . '/font-faces' ),
			),
			'parent'     => array(
				'href' => rest_url( $this->namespace . '/font-families/' . $post->post_parent ),
			),
		);
	}

	/**
	 * Prepares a single font face post for creation.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass Post object.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_post = new stdClass();

		// Settings have already been decoded by ::sanitize_font_face_settings().
		$settings = $request->get_param( 'font_face_settings' );

		// Store this "slug" as the post_title rather than post_name, since it uses the fontFamily setting,
		// which may contain multibyte characters.
		$title = WP_Font_Utils::get_font_face_slug( $settings );

		$prepared_post->post_type    = $this->post_type;
		$prepared_post->post_parent  = $request['font_family_id'];
		$prepared_post->post_status  = 'publish';
		$prepared_post->post_title   = $title;
		$prepared_post->post_name    = sanitize_title( $title );
		$prepared_post->post_content = wp_json_encode( $settings );

		return $prepared_post;
	}

	/**
	 * Sanitizes a single src value for a font face.
	 *
	 * @since 6.5.0
	 *
	 * @param string $value Font face src that is a URL or the key for a $_FILES array item.
	 * @return string Sanitized value.
	 */
	protected function sanitize_src( $value ) {
		$value = ltrim( $value );
		return false === wp_http_validate_url( $value ) ? (string) $value : sanitize_url( $value );
	}

	/**
	 * Handles the upload of a font file using wp_handle_upload().
	 *
	 * @since 6.5.0
	 *
	 * @param array $file Single file item from $_FILES.
	 * @return array|WP_Error Array containing uploaded file attributes on success, or WP_Error object on failure.
	 */
	protected function handle_font_file_upload( $file ) {
		add_filter( 'upload_mimes', array( 'WP_Font_Utils', 'get_allowed_font_mime_types' ) );
		// Filter the upload directory to return the fonts directory.
		add_filter( 'upload_dir', '_wp_filter_font_directory' );

		$overrides = array(
			'upload_error_handler' => array( $this, 'handle_font_file_upload_error' ),
			// Not testing a form submission.
			'test_form'            => false,
			// Only allow uploading font files for this request.
			'mimes'                => WP_Font_Utils::get_allowed_font_mime_types(),
		);

		// Bypasses is_uploaded_file() when running unit tests.
		if ( defined( 'DIR_TESTDATA' ) && DIR_TESTDATA ) {
			$overrides['action'] = 'wp_handle_mock_upload';
		}

		$uploaded_file = wp_handle_upload( $file, $overrides );

		remove_filter( 'upload_dir', '_wp_filter_font_directory' );
		remove_filter( 'upload_mimes', array( 'WP_Font_Utils', 'get_allowed_font_mime_types' ) );

		return $uploaded_file;
	}

	/**
	 * Handles file upload error.
	 *
	 * @since 6.5.0
	 *
	 * @param array  $file    File upload data.
	 * @param string $message Error message from wp_handle_upload().
	 * @return WP_Error WP_Error object.
	 */
	public function handle_font_file_upload_error( $file, $message ) {
		$status = 500;
		$code   = 'rest_font_upload_unknown_error';

		if ( __( 'Sorry, you are not allowed to upload this file type.' ) === $message ) {
			$status = 400;
			$code   = 'rest_font_upload_invalid_file_type';
		}

		return new WP_Error( $code, $message, array( 'status' => $status ) );
	}

	/**
	 * Returns relative path to an uploaded font file.
	 *
	 * The path is relative to the current fonts directory.
	 *
	 * @since 6.5.0
	 * @access private
	 *
	 * @param string $path Full path to the file.
	 * @return string Relative path on success, unchanged path on failure.
	 */
	protected function relative_fonts_path( $path ) {
		$new_path = $path;

		$fonts_dir = wp_get_font_dir();
		if ( str_starts_with( $new_path, $fonts_dir['basedir'] ) ) {
			$new_path = str_replace( $fonts_dir['basedir'], '', $new_path );
			$new_path = ltrim( $new_path, '/' );
		}

		return $new_path;
	}

	/**
	 * Gets the font face's settings from the post.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post $post Font face post object.
	 * @return array Font face settings array.
	 */
	protected function get_settings_from_post( $post ) {
		$settings   = json_decode( $post->post_content, true );
		$properties = $this->get_item_schema()['properties']['font_face_settings']['properties'];

		// Provide required, empty settings if needed.
		if ( null === $settings ) {
			$settings = array(
				'fontFamily' => '',
				'src'        => array(),
			);
		}

		// Only return the properties defined in the schema.
		return array_intersect_key( $settings, $properties );
	}
}
endpoints/class-wp-rest-settings-controller.php000064400000024165152222510010016001 0ustar00<?php
/**
 * REST API: WP_REST_Settings_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage a site's settings via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Settings_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'settings';
	}

	/**
	 * Registers the routes for the site's settings.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'args'                => array(),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to read and manage settings.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the request has read access for the item, otherwise false.
	 */
	public function get_item_permissions_check( $request ) {
		return current_user_can( 'manage_options' );
	}

	/**
	 * Retrieves the settings.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return array|WP_Error Array on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$options  = $this->get_registered_options();
		$response = array();

		foreach ( $options as $name => $args ) {
			/**
			 * Filters the value of a setting recognized by the REST API.
			 *
			 * Allow hijacking the setting value and overriding the built-in behavior by returning a
			 * non-null value.  The returned value will be presented as the setting value instead.
			 *
			 * @since 4.7.0
			 *
			 * @param mixed  $result Value to use for the requested setting. Can be a scalar
			 *                       matching the registered schema for the setting, or null to
			 *                       follow the default get_option() behavior.
			 * @param string $name   Setting name (as shown in REST API responses).
			 * @param array  $args   Arguments passed to register_setting() for this setting.
			 */
			$response[ $name ] = apply_filters( 'rest_pre_get_setting', null, $name, $args );

			if ( is_null( $response[ $name ] ) ) {
				// Default to a null value as "null" in the response means "not set".
				$response[ $name ] = get_option( $args['option_name'], $args['schema']['default'] );
			}

			/*
			 * Because get_option() is lossy, we have to
			 * cast values to the type they are registered with.
			 */
			$response[ $name ] = $this->prepare_value( $response[ $name ], $args['schema'] );
		}

		return $response;
	}

	/**
	 * Prepares a value for output based off a schema array.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed $value  Value to prepare.
	 * @param array $schema Schema to match.
	 * @return mixed The prepared value.
	 */
	protected function prepare_value( $value, $schema ) {
		/*
		 * If the value is not valid by the schema, set the value to null.
		 * Null values are specifically non-destructive, so this will not cause
		 * overwriting the current invalid value to null.
		 */
		if ( is_wp_error( rest_validate_value_from_schema( $value, $schema ) ) ) {
			return null;
		}

		return rest_sanitize_value_from_schema( $value, $schema );
	}

	/**
	 * Updates settings for the settings object.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return array|WP_Error Array on success, or error object on failure.
	 */
	public function update_item( $request ) {
		$options = $this->get_registered_options();

		$params = $request->get_params();

		foreach ( $options as $name => $args ) {
			if ( ! array_key_exists( $name, $params ) ) {
				continue;
			}

			/**
			 * Filters whether to preempt a setting value update via the REST API.
			 *
			 * Allows hijacking the setting update logic and overriding the built-in behavior by
			 * returning true.
			 *
			 * @since 4.7.0
			 *
			 * @param bool   $result Whether to override the default behavior for updating the
			 *                       value of a setting.
			 * @param string $name   Setting name (as shown in REST API responses).
			 * @param mixed  $value  Updated setting value.
			 * @param array  $args   Arguments passed to register_setting() for this setting.
			 */
			$updated = apply_filters( 'rest_pre_update_setting', false, $name, $request[ $name ], $args );

			if ( $updated ) {
				continue;
			}

			/*
			 * A null value for an option would have the same effect as
			 * deleting the option from the database, and relying on the
			 * default value.
			 */
			if ( is_null( $request[ $name ] ) ) {
				/*
				 * A null value is returned in the response for any option
				 * that has a non-scalar value.
				 *
				 * To protect clients from accidentally including the null
				 * values from a response object in a request, we do not allow
				 * options with values that don't pass validation to be updated to null.
				 * Without this added protection a client could mistakenly
				 * delete all options that have invalid values from the
				 * database.
				 */
				if ( is_wp_error( rest_validate_value_from_schema( get_option( $args['option_name'], false ), $args['schema'] ) ) ) {
					return new WP_Error(
						'rest_invalid_stored_value',
						/* translators: %s: Property name. */
						sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ),
						array( 'status' => 500 )
					);
				}

				delete_option( $args['option_name'] );
			} else {
				update_option( $args['option_name'], $request[ $name ] );
			}
		}

		return $this->get_item( $request );
	}

	/**
	 * Retrieves all of the registered options for the Settings API.
	 *
	 * @since 4.7.0
	 *
	 * @return array Array of registered options.
	 */
	protected function get_registered_options() {
		$rest_options = array();

		foreach ( get_registered_settings() as $name => $args ) {
			if ( empty( $args['show_in_rest'] ) ) {
				continue;
			}

			$rest_args = array();

			if ( is_array( $args['show_in_rest'] ) ) {
				$rest_args = $args['show_in_rest'];
			}

			$defaults = array(
				'name'   => ! empty( $rest_args['name'] ) ? $rest_args['name'] : $name,
				'schema' => array(),
			);

			$rest_args = array_merge( $defaults, $rest_args );

			$default_schema = array(
				'type'        => empty( $args['type'] ) ? null : $args['type'],
				'title'       => empty( $args['label'] ) ? '' : $args['label'],
				'description' => empty( $args['description'] ) ? '' : $args['description'],
				'default'     => isset( $args['default'] ) ? $args['default'] : null,
			);

			$rest_args['schema']      = array_merge( $default_schema, $rest_args['schema'] );
			$rest_args['option_name'] = $name;

			// Skip over settings that don't have a defined type in the schema.
			if ( empty( $rest_args['schema']['type'] ) ) {
				continue;
			}

			/*
			 * Allow the supported types for settings, as we don't want invalid types
			 * to be updated with arbitrary values that we can't do decent sanitizing for.
			 */
			if ( ! in_array( $rest_args['schema']['type'], array( 'number', 'integer', 'string', 'boolean', 'array', 'object' ), true ) ) {
				continue;
			}

			$rest_args['schema'] = rest_default_additional_properties_to_false( $rest_args['schema'] );

			$rest_options[ $rest_args['name'] ] = $rest_args;
		}

		return $rest_options;
	}

	/**
	 * Retrieves the site setting schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$options = $this->get_registered_options();

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'settings',
			'type'       => 'object',
			'properties' => array(),
		);

		foreach ( $options as $option_name => $option ) {
			$schema['properties'][ $option_name ]                = $option['schema'];
			$schema['properties'][ $option_name ]['arg_options'] = array(
				'sanitize_callback' => array( $this, 'sanitize_callback' ),
			);
		}

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Custom sanitize callback used for all options to allow the use of 'null'.
	 *
	 * By default, the schema of settings will throw an error if a value is set to
	 * `null` as it's not a valid value for something like "type => string". We
	 * provide a wrapper sanitizer to allow the use of `null`.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed           $value   The value for the setting.
	 * @param WP_REST_Request $request The request object.
	 * @param string          $param   The parameter name.
	 * @return mixed|WP_Error
	 */
	public function sanitize_callback( $value, $request, $param ) {
		if ( is_null( $value ) ) {
			return $value;
		}

		return rest_parse_request_arg( $value, $request, $param );
	}

	/**
	 * Recursively add additionalProperties = false to all objects in a schema
	 * if no additionalProperties setting is specified.
	 *
	 * This is needed to restrict properties of objects in settings values to only
	 * registered items, as the REST API will allow additional properties by
	 * default.
	 *
	 * @since 4.9.0
	 * @deprecated 6.1.0 Use {@see rest_default_additional_properties_to_false()} instead.
	 *
	 * @param array $schema The schema array.
	 * @return array
	 */
	protected function set_additional_properties_to_false( $schema ) {
		_deprecated_function( __METHOD__, '6.1.0', 'rest_default_additional_properties_to_false()' );

		return rest_default_additional_properties_to_false( $schema );
	}
}
endpoints/class-wp-rest-posts-controller.php000064400000310063152222510010015304 0ustar00<?php
/**
 * REST API: WP_REST_Posts_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class to access posts via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Posts_Controller extends WP_REST_Controller {
	/**
	 * Post type.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $post_type;

	/**
	 * Instance of a post meta fields object.
	 *
	 * @since 4.7.0
	 * @var WP_REST_Post_Meta_Fields
	 */
	protected $meta;

	/**
	 * Passwordless post access permitted.
	 *
	 * @since 5.7.1
	 * @var int[]
	 */
	protected $password_check_passed = array();

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 5.9.0
	 * @var array
	 */
	protected $allow_batch = array( 'v1' => true );

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 *
	 * @param string $post_type Post type.
	 */
	public function __construct( $post_type ) {
		$this->post_type = $post_type;
		$obj             = get_post_type_object( $post_type );
		$this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name;
		$this->namespace = ! empty( $obj->rest_namespace ) ? $obj->rest_namespace : 'wp/v2';

		$this->meta = new WP_REST_Post_Meta_Fields( $this->post_type );
	}

	/**
	 * Registers the routes for posts.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);

		$schema        = $this->get_item_schema();
		$get_item_args = array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
		if ( isset( $schema['properties']['excerpt'] ) ) {
			$get_item_args['excerpt_length'] = array(
				'description' => __( 'Override the default excerpt length.' ),
				'type'        => 'integer',
			);
		}
		if ( isset( $schema['properties']['password'] ) ) {
			$get_item_args['password'] = array(
				'description' => __( 'The password for the post if it is password protected.' ),
				'type'        => 'string',
			);
		}
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'        => array(
					'id' => array(
						'description' => __( 'Unique identifier for the post.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => $get_item_args,
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Whether to bypass Trash and force deletion.' ),
						),
					),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to read posts.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {

		$post_type = get_post_type_object( $this->post_type );

		if ( 'edit' === $request['context'] && ! current_user_can( $post_type->cap->edit_posts ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit posts in this post type.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Overrides the result of the post password check for REST requested posts.
	 *
	 * Allow users to read the content of password protected posts if they have
	 * previously passed a permission check or if they have the `edit_post` capability
	 * for the post being checked.
	 *
	 * @since 5.7.1
	 *
	 * @param bool    $required Whether the post requires a password check.
	 * @param WP_Post $post     The post been password checked.
	 * @return bool Result of password check taking into account REST API considerations.
	 */
	public function check_password_required( $required, $post ) {
		if ( ! $required ) {
			return $required;
		}

		$post = get_post( $post );

		if ( ! $post ) {
			return $required;
		}

		if ( ! empty( $this->password_check_passed[ $post->ID ] ) ) {
			// Password previously checked and approved.
			return false;
		}

		return ! current_user_can( 'edit_post', $post->ID );
	}

	/**
	 * Retrieves a collection of posts.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {

		// Ensure a search string is set in case the orderby is set to 'relevance'.
		if ( ! empty( $request['orderby'] ) && 'relevance' === $request['orderby'] && empty( $request['search'] ) ) {
			return new WP_Error(
				'rest_no_search_term_defined',
				__( 'You need to define a search term to order by relevance.' ),
				array( 'status' => 400 )
			);
		}

		// Ensure an include parameter is set in case the orderby is set to 'include'.
		if ( ! empty( $request['orderby'] ) && 'include' === $request['orderby'] && empty( $request['include'] ) ) {
			return new WP_Error(
				'rest_orderby_include_missing_include',
				__( 'You need to define an include parameter to order by include.' ),
				array( 'status' => 400 )
			);
		}

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();
		$args       = array();

		/*
		 * This array defines mappings between public API query parameters whose
		 * values are accepted as-passed, and their internal WP_Query parameter
		 * name equivalents (some are the same). Only values which are also
		 * present in $registered will be set.
		 */
		$parameter_mappings = array(
			'author'         => 'author__in',
			'author_exclude' => 'author__not_in',
			'exclude'        => 'post__not_in',
			'include'        => 'post__in',
			'ignore_sticky'  => 'ignore_sticky_posts',
			'menu_order'     => 'menu_order',
			'offset'         => 'offset',
			'order'          => 'order',
			'orderby'        => 'orderby',
			'page'           => 'paged',
			'parent'         => 'post_parent__in',
			'parent_exclude' => 'post_parent__not_in',
			'search'         => 's',
			'search_columns' => 'search_columns',
			'slug'           => 'post_name__in',
			'status'         => 'post_status',
		);

		/*
		 * For each known parameter which is both registered and present in the request,
		 * set the parameter's value on the query $args.
		 */
		foreach ( $parameter_mappings as $api_param => $wp_param ) {
			if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
				$args[ $wp_param ] = $request[ $api_param ];
			}
		}

		// Check for & assign any parameters which require special handling or setting.
		$args['date_query'] = array();

		if ( isset( $registered['before'], $request['before'] ) ) {
			$args['date_query'][] = array(
				'before' => $request['before'],
				'column' => 'post_date',
			);
		}

		if ( isset( $registered['modified_before'], $request['modified_before'] ) ) {
			$args['date_query'][] = array(
				'before' => $request['modified_before'],
				'column' => 'post_modified',
			);
		}

		if ( isset( $registered['after'], $request['after'] ) ) {
			$args['date_query'][] = array(
				'after'  => $request['after'],
				'column' => 'post_date',
			);
		}

		if ( isset( $registered['modified_after'], $request['modified_after'] ) ) {
			$args['date_query'][] = array(
				'after'  => $request['modified_after'],
				'column' => 'post_modified',
			);
		}

		// Ensure our per_page parameter overrides any provided posts_per_page filter.
		if ( isset( $registered['per_page'] ) ) {
			$args['posts_per_page'] = $request['per_page'];
		}

		if ( isset( $registered['sticky'], $request['sticky'] ) ) {
			$sticky_posts = get_option( 'sticky_posts', array() );
			if ( ! is_array( $sticky_posts ) ) {
				$sticky_posts = array();
			}
			if ( $request['sticky'] ) {
				/*
				 * As post__in will be used to only get sticky posts,
				 * we have to support the case where post__in was already
				 * specified.
				 */
				$args['post__in'] = $args['post__in'] ? array_intersect( $sticky_posts, $args['post__in'] ) : $sticky_posts;

				/*
				 * If we intersected, but there are no post IDs in common,
				 * WP_Query won't return "no posts" for post__in = array()
				 * so we have to fake it a bit.
				 */
				if ( ! $args['post__in'] ) {
					$args['post__in'] = array( 0 );
				}
			} elseif ( $sticky_posts ) {
				/*
				 * As post___not_in will be used to only get posts that
				 * are not sticky, we have to support the case where post__not_in
				 * was already specified.
				 */
				$args['post__not_in'] = array_merge( $args['post__not_in'], $sticky_posts );
			}
		}

		/*
		 * Honor the original REST API `post__in` behavior. Don't prepend sticky posts
		 * when `post__in` has been specified.
		 */
		if ( ! empty( $args['post__in'] ) ) {
			unset( $args['ignore_sticky_posts'] );
		}

		if (
			isset( $registered['search_semantics'], $request['search_semantics'] )
			&& 'exact' === $request['search_semantics']
		) {
			$args['exact'] = true;
		}

		$args = $this->prepare_tax_query( $args, $request );

		if ( isset( $registered['format'], $request['format'] ) ) {
			$formats = $request['format'];
			/*
			 * The relation needs to be set to `OR` since the request can contain
			 * two separate conditions. The user may be querying for items that have
			 * either the `standard` format or a specific format.
			 */
			$formats_query = array( 'relation' => 'OR' );

			/*
			 * The default post format, `standard`, is not stored in the database.
			 * If `standard` is part of the request, the query needs to exclude all post items that
			 * have a format assigned.
			 */
			if ( in_array( 'standard', $formats, true ) ) {
				$formats_query[] = array(
					'taxonomy' => 'post_format',
					'field'    => 'slug',
					'operator' => 'NOT EXISTS',
				);
				// Remove the `standard` format, since it cannot be queried.
				unset( $formats[ array_search( 'standard', $formats, true ) ] );
			}

			// Add any remaining formats to the formats query.
			if ( ! empty( $formats ) ) {
				// Add the `post-format-` prefix.
				$terms = array_map(
					static function ( $format ) {
						return "post-format-$format";
					},
					$formats
				);

				$formats_query[] = array(
					'taxonomy' => 'post_format',
					'field'    => 'slug',
					'terms'    => $terms,
					'operator' => 'IN',
				);
			}

			// Enable filtering by both post formats and other taxonomies by combining them with `AND`.
			if ( isset( $args['tax_query'] ) ) {
				$args['tax_query'][] = array(
					'relation' => 'AND',
					$formats_query,
				);
			} else {
				$args['tax_query'] = $formats_query;
			}
		}

		// Force the post_type argument, since it's not a user input variable.
		$args['post_type'] = $this->post_type;

		$is_head_request = $request->is_method( 'HEAD' );
		if ( $is_head_request ) {
			// Force the 'fields' argument. For HEAD requests, only post IDs are required to calculate pagination.
			$args['fields'] = 'ids';
			// Disable priming post meta for HEAD requests to improve performance.
			$args['update_post_term_cache'] = false;
			$args['update_post_meta_cache'] = false;
		}

		/**
		 * Filters WP_Query arguments when querying posts via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_post_query`
		 *  - `rest_page_query`
		 *  - `rest_attachment_query`
		 *
		 * Enables adding extra arguments or setting defaults for a post collection request.
		 *
		 * @since 4.7.0
		 * @since 5.7.0 Moved after the `tax_query` query arg is generated.
		 *
		 * @link https://developer.wordpress.org/reference/classes/wp_query/
		 *
		 * @param array           $args    Array of arguments for WP_Query.
		 * @param WP_REST_Request $request The REST API request.
		 */
		$args       = apply_filters( "rest_{$this->post_type}_query", $args, $request );
		$query_args = $this->prepare_items_query( $args, $request );

		$posts_query  = new WP_Query();
		$query_result = $posts_query->query( $query_args );

		// Allow access to all password protected posts if the context is edit.
		if ( 'edit' === $request['context'] ) {
			add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 );
		}

		if ( ! $is_head_request ) {
			$posts = array();

			update_post_author_caches( $query_result );
			update_post_parent_caches( $query_result );

			if ( post_type_supports( $this->post_type, 'thumbnail' ) ) {
				update_post_thumbnail_cache( $posts_query );
			}

			foreach ( $query_result as $post ) {
				if ( 'edit' === $request['context'] ) {
					$permission = $this->check_update_permission( $post );
				} else {
					$permission = $this->check_read_permission( $post );
				}

				if ( ! $permission ) {
					continue;
				}

				$data    = $this->prepare_item_for_response( $post, $request );
				$posts[] = $this->prepare_response_for_collection( $data );
			}
		}

		// Reset filter.
		if ( 'edit' === $request['context'] ) {
			remove_filter( 'post_password_required', array( $this, 'check_password_required' ) );
		}

		$page        = isset( $query_args['paged'] ) ? (int) $query_args['paged'] : 0;
		$total_posts = $posts_query->found_posts;

		if ( $total_posts < 1 && $page > 1 ) {
			// Out-of-bounds, run the query without pagination/offset to get the total count.
			unset( $query_args['paged'] );

			$count_query                          = new WP_Query();
			$query_args['fields']                 = 'ids';
			$query_args['posts_per_page']         = 1;
			$query_args['update_post_meta_cache'] = false;
			$query_args['update_post_term_cache'] = false;

			$count_query->query( $query_args );
			$total_posts = $count_query->found_posts;
		}

		$max_pages = (int) ceil( $total_posts / (int) $posts_query->query_vars['posts_per_page'] );

		if ( $page > $max_pages && $total_posts > 0 ) {
			return new WP_Error(
				'rest_post_invalid_page_number',
				__( 'The page number requested is larger than the number of pages available.' ),
				array( 'status' => 400 )
			);
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $posts );

		$response->header( 'X-WP-Total', (int) $total_posts );
		$response->header( 'X-WP-TotalPages', (int) $max_pages );

		$request_params = $request->get_query_params();
		$collection_url = rest_url( rest_get_route_for_post_type_items( $this->post_type ) );
		$base           = add_query_arg( urlencode_deep( $request_params ), $collection_url );

		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Gets the post, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_post( $id ) {
		$error = new WP_Error(
			'rest_post_invalid_id',
			__( 'Invalid post ID.' ),
			array( 'status' => 404 )
		);

		if ( (int) $id <= 0 ) {
			return $error;
		}

		$post = get_post( (int) $id );
		if ( empty( $post ) || empty( $post->ID ) || $this->post_type !== $post->post_type ) {
			return $error;
		}

		return $post;
	}

	/**
	 * Checks if a given request has access to read a post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has read access for the item, WP_Error object or false otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( 'edit' === $request['context'] && $post && ! $this->check_update_permission( $post ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( $post && ! empty( $request->get_query_params()['password'] ) ) {
			// Check post password, and return error if invalid.
			if ( ! hash_equals( $post->post_password, $request->get_query_params()['password'] ) ) {
				return new WP_Error(
					'rest_post_incorrect_password',
					__( 'Incorrect post password.' ),
					array( 'status' => 403 )
				);
			}
		}

		// Allow access to all password protected posts if the context is edit.
		if ( 'edit' === $request['context'] ) {
			add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 );
		}

		if ( $post ) {
			return $this->check_read_permission( $post );
		}

		return true;
	}

	/**
	 * Checks if the user can access password-protected content.
	 *
	 * This method determines whether we need to override the regular password
	 * check in core with a filter.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post         $post    Post to check against.
	 * @param WP_REST_Request $request Request data to check.
	 * @return bool True if the user can access password-protected content, otherwise false.
	 */
	public function can_access_password_content( $post, $request ) {
		if ( empty( $post->post_password ) ) {
			// No filter required.
			return false;
		}

		/*
		 * Users always gets access to password protected content in the edit
		 * context if they have the `edit_post` meta capability.
		 */
		if (
			'edit' === $request['context'] &&
			current_user_can( 'edit_post', $post->ID )
		) {
			return true;
		}

		// No password, no auth.
		if ( empty( $request['password'] ) ) {
			return false;
		}

		// Double-check the request password.
		return hash_equals( $post->post_password, $request['password'] );
	}

	/**
	 * Retrieves a single post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		$data     = $this->prepare_item_for_response( $post, $request );
		$response = rest_ensure_response( $data );

		if ( is_post_type_viewable( get_post_type_object( $post->post_type ) ) ) {
			$response->link_header( 'alternate', get_permalink( $post->ID ), array( 'type' => 'text/html' ) );
		}

		return $response;
	}

	/**
	 * Checks if a given request has access to create a post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		if ( ! empty( $request['id'] ) ) {
			return new WP_Error(
				'rest_post_exists',
				__( 'Cannot create existing post.' ),
				array( 'status' => 400 )
			);
		}

		$post_type = get_post_type_object( $this->post_type );

		if ( ! empty( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( $post_type->cap->edit_others_posts ) ) {
			return new WP_Error(
				'rest_cannot_edit_others',
				__( 'Sorry, you are not allowed to create posts as this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! empty( $request['sticky'] ) && ! current_user_can( $post_type->cap->edit_others_posts ) && ! current_user_can( $post_type->cap->publish_posts ) ) {
			return new WP_Error(
				'rest_cannot_assign_sticky',
				__( 'Sorry, you are not allowed to make posts sticky.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! current_user_can( $post_type->cap->create_posts ) ) {
			return new WP_Error(
				'rest_cannot_create',
				__( 'Sorry, you are not allowed to create posts as this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! $this->check_assign_terms_permission( $request ) ) {
			return new WP_Error(
				'rest_cannot_assign_term',
				__( 'Sorry, you are not allowed to assign the provided terms.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Creates a single post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( ! empty( $request['id'] ) ) {
			return new WP_Error(
				'rest_post_exists',
				__( 'Cannot create existing post.' ),
				array( 'status' => 400 )
			);
		}

		$prepared_post = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared_post ) ) {
			return $prepared_post;
		}

		$prepared_post->post_type = $this->post_type;

		if ( ! empty( $prepared_post->post_name )
			&& ! empty( $prepared_post->post_status )
			&& in_array( $prepared_post->post_status, array( 'draft', 'pending' ), true )
		) {
			/*
			 * `wp_unique_post_slug()` returns the same slug for 'draft' or 'pending' posts.
			 *
			 * To ensure that a unique slug is generated, pass the post data with the 'publish' status.
			 */
			$prepared_post->post_name = wp_unique_post_slug(
				$prepared_post->post_name,
				$prepared_post->id,
				'publish',
				$prepared_post->post_type,
				$prepared_post->post_parent
			);
		}

		$post_id = wp_insert_post( wp_slash( (array) $prepared_post ), true, false );

		if ( is_wp_error( $post_id ) ) {

			if ( 'db_insert_error' === $post_id->get_error_code() ) {
				$post_id->add_data( array( 'status' => 500 ) );
			} else {
				$post_id->add_data( array( 'status' => 400 ) );
			}

			return $post_id;
		}

		$post = get_post( $post_id );

		/**
		 * Fires after a single post is created or updated via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_insert_post`
		 *  - `rest_insert_page`
		 *  - `rest_insert_attachment`
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Post         $post     Inserted or updated post object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a post, false when updating.
		 */
		do_action( "rest_insert_{$this->post_type}", $post, $request, true );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['sticky'] ) ) {
			if ( ! empty( $request['sticky'] ) ) {
				stick_post( $post_id );
			} else {
				unstick_post( $post_id );
			}
		}

		if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
			$this->handle_featured_media( $request['featured_media'], $post_id );
		}

		if ( ! empty( $schema['properties']['format'] ) && ! empty( $request['format'] ) ) {
			set_post_format( $post, $request['format'] );
		}

		if ( ! empty( $schema['properties']['template'] ) && isset( $request['template'] ) ) {
			$this->handle_template( $request['template'], $post_id, true );
		}

		$terms_update = $this->handle_terms( $post_id, $request );

		if ( is_wp_error( $terms_update ) ) {
			return $terms_update;
		}

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $post_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$post          = get_post( $post_id );
		$fields_update = $this->update_additional_fields_for_object( $post, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/**
		 * Fires after a single post is completely created or updated via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_after_insert_post`
		 *  - `rest_after_insert_page`
		 *  - `rest_after_insert_attachment`
		 *
		 * @since 5.0.0
		 *
		 * @param WP_Post         $post     Inserted or updated post object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a post, false when updating.
		 */
		do_action( "rest_after_insert_{$this->post_type}", $post, $request, true );

		wp_after_insert_post( $post, false, null );

		$response = $this->prepare_item_for_response( $post, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( rest_get_route_for_post( $post ) ) );

		return $response;
	}

	/**
	 * Checks if a given request has access to update a post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		$post_type = get_post_type_object( $this->post_type );

		if ( $post && ! $this->check_update_permission( $post ) ) {
			return new WP_Error(
				'rest_cannot_edit',
				__( 'Sorry, you are not allowed to edit this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! empty( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( $post_type->cap->edit_others_posts ) ) {
			return new WP_Error(
				'rest_cannot_edit_others',
				__( 'Sorry, you are not allowed to update posts as this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! empty( $request['sticky'] ) && ! current_user_can( $post_type->cap->edit_others_posts ) && ! current_user_can( $post_type->cap->publish_posts ) ) {
			return new WP_Error(
				'rest_cannot_assign_sticky',
				__( 'Sorry, you are not allowed to make posts sticky.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! $this->check_assign_terms_permission( $request ) ) {
			return new WP_Error(
				'rest_cannot_assign_term',
				__( 'Sorry, you are not allowed to assign the provided terms.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Updates a single post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$valid_check = $this->get_post( $request['id'] );
		if ( is_wp_error( $valid_check ) ) {
			return $valid_check;
		}

		$post_before = get_post( $request['id'] );
		$post        = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( ! empty( $post->post_status ) ) {
			$post_status = $post->post_status;
		} else {
			$post_status = $post_before->post_status;
		}

		/*
		 * `wp_unique_post_slug()` returns the same slug for 'draft' or 'pending' posts.
		 *
		 * To ensure that a unique slug is generated, pass the post data with the 'publish' status.
		 */
		if ( ! empty( $post->post_name ) && in_array( $post_status, array( 'draft', 'pending' ), true ) ) {
			$post_parent     = ! empty( $post->post_parent ) ? $post->post_parent : 0;
			$post->post_name = wp_unique_post_slug(
				$post->post_name,
				$post->ID,
				'publish',
				$post->post_type,
				$post_parent
			);
		}

		// Convert the post object to an array, otherwise wp_update_post() will expect non-escaped input.
		$post_id = wp_update_post( wp_slash( (array) $post ), true, false );

		if ( is_wp_error( $post_id ) ) {
			if ( 'db_update_error' === $post_id->get_error_code() ) {
				$post_id->add_data( array( 'status' => 500 ) );
			} else {
				$post_id->add_data( array( 'status' => 400 ) );
			}
			return $post_id;
		}

		$post = get_post( $post_id );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
		do_action( "rest_insert_{$this->post_type}", $post, $request, false );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['format'] ) && ! empty( $request['format'] ) ) {
			set_post_format( $post, $request['format'] );
		}

		if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
			$this->handle_featured_media( $request['featured_media'], $post_id );
		}

		if ( ! empty( $schema['properties']['sticky'] ) && isset( $request['sticky'] ) ) {
			if ( ! empty( $request['sticky'] ) ) {
				stick_post( $post_id );
			} else {
				unstick_post( $post_id );
			}
		}

		if ( ! empty( $schema['properties']['template'] ) && isset( $request['template'] ) ) {
			$this->handle_template( $request['template'], $post->ID );
		}

		$terms_update = $this->handle_terms( $post->ID, $request );

		if ( is_wp_error( $terms_update ) ) {
			return $terms_update;
		}

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $post->ID );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$post          = get_post( $post_id );
		$fields_update = $this->update_additional_fields_for_object( $post, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		// Filter is fired in WP_REST_Attachments_Controller subclass.
		if ( 'attachment' === $this->post_type ) {
			$response = $this->prepare_item_for_response( $post, $request );
			return rest_ensure_response( $response );
		}

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
		do_action( "rest_after_insert_{$this->post_type}", $post, $request, false );

		wp_after_insert_post( $post, true, $post_before );

		$response = $this->prepare_item_for_response( $post, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a given request has access to delete a post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( $post && ! $this->check_delete_permission( $post ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes a single post.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		$id    = $post->ID;
		$force = (bool) $request['force'];

		$supports_trash = ( EMPTY_TRASH_DAYS > 0 );

		if ( 'attachment' === $post->post_type ) {
			$supports_trash = $supports_trash && MEDIA_TRASH;
		}

		/**
		 * Filters whether a post is trashable.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_post_trashable`
		 *  - `rest_page_trashable`
		 *  - `rest_attachment_trashable`
		 *
		 * Pass false to disable Trash support for the post.
		 *
		 * @since 4.7.0
		 *
		 * @param bool    $supports_trash Whether the post type support trashing.
		 * @param WP_Post $post           The Post object being considered for trashing support.
		 */
		$supports_trash = apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post );

		if ( ! $this->check_delete_permission( $post ) ) {
			return new WP_Error(
				'rest_user_cannot_delete_post',
				__( 'Sorry, you are not allowed to delete this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$request->set_param( 'context', 'edit' );

		// If we're forcing, then delete permanently.
		if ( $force ) {
			$previous = $this->prepare_item_for_response( $post, $request );
			$result   = wp_delete_post( $id, true );
			$response = new WP_REST_Response();
			$response->set_data(
				array(
					'deleted'  => true,
					'previous' => $previous->get_data(),
				)
			);
		} else {
			// If we don't support trashing for this type, error out.
			if ( ! $supports_trash ) {
				return new WP_Error(
					'rest_trash_not_supported',
					/* translators: %s: force=true */
					sprintf( __( "The post does not support trashing. Set '%s' to delete." ), 'force=true' ),
					array( 'status' => 501 )
				);
			}

			// Otherwise, only trash if we haven't already.
			if ( 'trash' === $post->post_status ) {
				return new WP_Error(
					'rest_already_trashed',
					__( 'The post has already been deleted.' ),
					array( 'status' => 410 )
				);
			}

			/*
			 * (Note that internally this falls through to `wp_delete_post()`
			 * if the Trash is disabled.)
			 */
			$result   = wp_trash_post( $id );
			$post     = get_post( $id );
			$response = $this->prepare_item_for_response( $post, $request );
		}

		if ( ! $result ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The post cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		/**
		 * Fires immediately after a single post is deleted or trashed via the REST API.
		 *
		 * They dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_delete_post`
		 *  - `rest_delete_page`
		 *  - `rest_delete_attachment`
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Post          $post     The deleted or trashed post.
		 * @param WP_REST_Response $response The response data.
		 * @param WP_REST_Request  $request  The request sent to the API.
		 */
		do_action( "rest_delete_{$this->post_type}", $post, $response, $request );

		return $response;
	}

	/**
	 * Determines the allowed query_vars for a get_items() response and prepares
	 * them for WP_Query.
	 *
	 * @since 4.7.0
	 *
	 * @param array           $prepared_args Optional. Prepared WP_Query arguments. Default empty array.
	 * @param WP_REST_Request $request       Optional. Full details about the request.
	 * @return array Items query arguments.
	 */
	protected function prepare_items_query( $prepared_args = array(), $request = null ) {
		$query_args = array();

		foreach ( $prepared_args as $key => $value ) {
			/**
			 * Filters the query_vars used in get_items() for the constructed query.
			 *
			 * The dynamic portion of the hook name, `$key`, refers to the query_var key.
			 *
			 * @since 4.7.0
			 *
			 * @param string $value The query_var value.
			 */
			$query_args[ $key ] = apply_filters( "rest_query_var-{$key}", $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
		}

		if ( 'post' !== $this->post_type || ! isset( $query_args['ignore_sticky_posts'] ) ) {
			$query_args['ignore_sticky_posts'] = true;
		}

		// Map to proper WP_Query orderby param.
		if ( isset( $query_args['orderby'] ) && isset( $request['orderby'] ) ) {
			$orderby_mappings = array(
				'id'            => 'ID',
				'include'       => 'post__in',
				'slug'          => 'post_name',
				'include_slugs' => 'post_name__in',
			);

			if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) {
				$query_args['orderby'] = $orderby_mappings[ $request['orderby'] ];
			}
		}

		return $query_args;
	}

	/**
	 * Checks the post_date_gmt or modified_gmt and prepare any post or
	 * modified date for single post output.
	 *
	 * @since 4.7.0
	 *
	 * @param string      $date_gmt GMT publication time.
	 * @param string|null $date     Optional. Local publication time. Default null.
	 * @return string|null ISO8601/RFC3339 formatted datetime.
	 */
	protected function prepare_date_response( $date_gmt, $date = null ) {
		// Use the date if passed.
		if ( isset( $date ) ) {
			return mysql_to_rfc3339( $date );
		}

		// Return null if $date_gmt is empty/zeros.
		if ( '0000-00-00 00:00:00' === $date_gmt ) {
			return null;
		}

		// Return the formatted datetime.
		return mysql_to_rfc3339( $date_gmt );
	}

	/**
	 * Prepares a single post for create or update.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass|WP_Error Post object or WP_Error.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_post  = new stdClass();
		$current_status = '';

		// Post ID.
		if ( isset( $request['id'] ) ) {
			$existing_post = $this->get_post( $request['id'] );
			if ( is_wp_error( $existing_post ) ) {
				return $existing_post;
			}

			$prepared_post->ID = $existing_post->ID;
			$current_status    = $existing_post->post_status;
		}

		$schema = $this->get_item_schema();

		// Post title.
		if ( ! empty( $schema['properties']['title'] ) && isset( $request['title'] ) ) {
			if ( is_string( $request['title'] ) ) {
				$prepared_post->post_title = $request['title'];
			} elseif ( ! empty( $request['title']['raw'] ) ) {
				$prepared_post->post_title = $request['title']['raw'];
			}
		}

		// Post content.
		if ( ! empty( $schema['properties']['content'] ) && isset( $request['content'] ) ) {
			if ( is_string( $request['content'] ) ) {
				$prepared_post->post_content = $request['content'];
			} elseif ( isset( $request['content']['raw'] ) ) {
				$prepared_post->post_content = $request['content']['raw'];
			}
		}

		// Post excerpt.
		if ( ! empty( $schema['properties']['excerpt'] ) && isset( $request['excerpt'] ) ) {
			if ( is_string( $request['excerpt'] ) ) {
				$prepared_post->post_excerpt = $request['excerpt'];
			} elseif ( isset( $request['excerpt']['raw'] ) ) {
				$prepared_post->post_excerpt = $request['excerpt']['raw'];
			}
		}

		// Post type.
		if ( empty( $request['id'] ) ) {
			// Creating new post, use default type for the controller.
			$prepared_post->post_type = $this->post_type;
		} else {
			// Updating a post, use previous type.
			$prepared_post->post_type = get_post_type( $request['id'] );
		}

		$post_type = get_post_type_object( $prepared_post->post_type );

		// Post status.
		if (
			! empty( $schema['properties']['status'] ) &&
			isset( $request['status'] ) &&
			( ! $current_status || $current_status !== $request['status'] )
		) {
			$status = $this->handle_status_param( $request['status'], $post_type );

			if ( is_wp_error( $status ) ) {
				return $status;
			}

			$prepared_post->post_status = $status;
		}

		// Post date.
		if ( ! empty( $schema['properties']['date'] ) && ! empty( $request['date'] ) ) {
			$current_date = isset( $prepared_post->ID ) ? get_post( $prepared_post->ID )->post_date : false;
			$date_data    = rest_get_date_with_gmt( $request['date'] );

			if ( ! empty( $date_data ) && $current_date !== $date_data[0] ) {
				list( $prepared_post->post_date, $prepared_post->post_date_gmt ) = $date_data;
				$prepared_post->edit_date                                        = true;
			}
		} elseif ( ! empty( $schema['properties']['date_gmt'] ) && ! empty( $request['date_gmt'] ) ) {
			$current_date = isset( $prepared_post->ID ) ? get_post( $prepared_post->ID )->post_date_gmt : false;
			$date_data    = rest_get_date_with_gmt( $request['date_gmt'], true );

			if ( ! empty( $date_data ) && $current_date !== $date_data[1] ) {
				list( $prepared_post->post_date, $prepared_post->post_date_gmt ) = $date_data;
				$prepared_post->edit_date                                        = true;
			}
		}

		/*
		 * Sending a null date or date_gmt value resets date and date_gmt to their
		 * default values (`0000-00-00 00:00:00`).
		 */
		if (
			( ! empty( $schema['properties']['date_gmt'] ) && $request->has_param( 'date_gmt' ) && null === $request['date_gmt'] ) ||
			( ! empty( $schema['properties']['date'] ) && $request->has_param( 'date' ) && null === $request['date'] )
		) {
			$prepared_post->post_date_gmt = null;
			$prepared_post->post_date     = null;
		}

		// Post slug.
		if ( ! empty( $schema['properties']['slug'] ) && isset( $request['slug'] ) ) {
			$prepared_post->post_name = $request['slug'];
		}

		// Author.
		if ( ! empty( $schema['properties']['author'] ) && ! empty( $request['author'] ) ) {
			$post_author = (int) $request['author'];

			if ( get_current_user_id() !== $post_author ) {
				$user_obj = get_userdata( $post_author );

				if ( ! $user_obj ) {
					return new WP_Error(
						'rest_invalid_author',
						__( 'Invalid author ID.' ),
						array( 'status' => 400 )
					);
				}
			}

			$prepared_post->post_author = $post_author;
		}

		// Post password.
		if ( ! empty( $schema['properties']['password'] ) && isset( $request['password'] ) ) {
			$prepared_post->post_password = $request['password'];

			if ( '' !== $request['password'] ) {
				if ( ! empty( $schema['properties']['sticky'] ) && ! empty( $request['sticky'] ) ) {
					return new WP_Error(
						'rest_invalid_field',
						__( 'A post can not be sticky and have a password.' ),
						array( 'status' => 400 )
					);
				}

				if ( ! empty( $prepared_post->ID ) && is_sticky( $prepared_post->ID ) ) {
					return new WP_Error(
						'rest_invalid_field',
						__( 'A sticky post can not be password protected.' ),
						array( 'status' => 400 )
					);
				}
			}
		}

		if ( ! empty( $schema['properties']['sticky'] ) && ! empty( $request['sticky'] ) ) {
			if ( ! empty( $prepared_post->ID ) && post_password_required( $prepared_post->ID ) ) {
				return new WP_Error(
					'rest_invalid_field',
					__( 'A password protected post can not be set to sticky.' ),
					array( 'status' => 400 )
				);
			}
		}

		// Parent.
		if ( ! empty( $schema['properties']['parent'] ) && isset( $request['parent'] ) ) {
			if ( 0 === (int) $request['parent'] ) {
				$prepared_post->post_parent = 0;
			} else {
				$parent = get_post( (int) $request['parent'] );

				if ( empty( $parent ) ) {
					return new WP_Error(
						'rest_post_invalid_id',
						__( 'Invalid post parent ID.' ),
						array( 'status' => 400 )
					);
				}

				$prepared_post->post_parent = (int) $parent->ID;
			}
		}

		// Menu order.
		if ( ! empty( $schema['properties']['menu_order'] ) && isset( $request['menu_order'] ) ) {
			$prepared_post->menu_order = (int) $request['menu_order'];
		}

		// Comment status.
		if ( ! empty( $schema['properties']['comment_status'] ) && ! empty( $request['comment_status'] ) ) {
			$prepared_post->comment_status = $request['comment_status'];
		}

		// Ping status.
		if ( ! empty( $schema['properties']['ping_status'] ) && ! empty( $request['ping_status'] ) ) {
			$prepared_post->ping_status = $request['ping_status'];
		}

		if ( ! empty( $schema['properties']['template'] ) ) {
			// Force template to null so that it can be handled exclusively by the REST controller.
			$prepared_post->page_template = null;
		}

		/**
		 * Filters a post before it is inserted via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_pre_insert_post`
		 *  - `rest_pre_insert_page`
		 *  - `rest_pre_insert_attachment`
		 *
		 * @since 4.7.0
		 *
		 * @param stdClass        $prepared_post An object representing a single post prepared
		 *                                       for inserting or updating the database.
		 * @param WP_REST_Request $request       Request object.
		 */
		return apply_filters( "rest_pre_insert_{$this->post_type}", $prepared_post, $request );
	}

	/**
	 * Checks whether the status is valid for the given post.
	 *
	 * Allows for sending an update request with the current status, even if that status would not be acceptable.
	 *
	 * @since 5.6.0
	 *
	 * @param string          $status  The provided status.
	 * @param WP_REST_Request $request The request object.
	 * @param string          $param   The parameter name.
	 * @return true|WP_Error True if the status is valid, or WP_Error if not.
	 */
	public function check_status( $status, $request, $param ) {
		if ( $request['id'] ) {
			$post = $this->get_post( $request['id'] );

			if ( ! is_wp_error( $post ) && $post->post_status === $status ) {
				return true;
			}
		}

		$args = $request->get_attributes()['args'][ $param ];

		return rest_validate_value_from_schema( $status, $args, $param );
	}

	/**
	 * Determines validity and normalizes the given status parameter.
	 *
	 * @since 4.7.0
	 *
	 * @param string       $post_status Post status.
	 * @param WP_Post_Type $post_type   Post type.
	 * @return string|WP_Error Post status or WP_Error if lacking the proper permission.
	 */
	protected function handle_status_param( $post_status, $post_type ) {

		switch ( $post_status ) {
			case 'draft':
			case 'pending':
				break;
			case 'private':
				if ( ! current_user_can( $post_type->cap->publish_posts ) ) {
					return new WP_Error(
						'rest_cannot_publish',
						__( 'Sorry, you are not allowed to create private posts in this post type.' ),
						array( 'status' => rest_authorization_required_code() )
					);
				}
				break;
			case 'publish':
			case 'future':
				if ( ! current_user_can( $post_type->cap->publish_posts ) ) {
					return new WP_Error(
						'rest_cannot_publish',
						__( 'Sorry, you are not allowed to publish posts in this post type.' ),
						array( 'status' => rest_authorization_required_code() )
					);
				}
				break;
			default:
				if ( ! get_post_status_object( $post_status ) ) {
					$post_status = 'draft';
				}
				break;
		}

		return $post_status;
	}

	/**
	 * Determines the featured media based on a request param.
	 *
	 * @since 4.7.0
	 *
	 * @param int $featured_media Featured Media ID.
	 * @param int $post_id        Post ID.
	 * @return bool|WP_Error Whether the post thumbnail was successfully deleted, otherwise WP_Error.
	 */
	protected function handle_featured_media( $featured_media, $post_id ) {

		$featured_media = (int) $featured_media;
		if ( $featured_media ) {
			$result = set_post_thumbnail( $post_id, $featured_media );
			if ( $result ) {
				return true;
			} else {
				return new WP_Error(
					'rest_invalid_featured_media',
					__( 'Invalid featured media ID.' ),
					array( 'status' => 400 )
				);
			}
		} else {
			return delete_post_thumbnail( $post_id );
		}
	}

	/**
	 * Checks whether the template is valid for the given post.
	 *
	 * @since 4.9.0
	 *
	 * @param string          $template Page template filename.
	 * @param WP_REST_Request $request  Request.
	 * @return true|WP_Error True if template is still valid or if the same as existing value, or a WP_Error if template not supported.
	 */
	public function check_template( $template, $request ) {

		if ( ! $template ) {
			return true;
		}

		if ( $request['id'] ) {
			$post             = get_post( $request['id'] );
			$current_template = get_page_template_slug( $request['id'] );
		} else {
			$post             = null;
			$current_template = '';
		}

		// Always allow for updating a post to the same template, even if that template is no longer supported.
		if ( $template === $current_template ) {
			return true;
		}

		// If this is a create request, get_post() will return null and wp theme will fallback to the passed post type.
		$allowed_templates = wp_get_theme()->get_page_templates( $post, $this->post_type );

		if ( isset( $allowed_templates[ $template ] ) ) {
			return true;
		}

		return new WP_Error(
			'rest_invalid_param',
			/* translators: 1: Parameter, 2: List of valid values. */
			sprintf( __( '%1$s is not one of %2$s.' ), 'template', implode( ', ', array_keys( $allowed_templates ) ) )
		);
	}

	/**
	 * Sets the template for a post.
	 *
	 * @since 4.7.0
	 * @since 4.9.0 Added the `$validate` parameter.
	 *
	 * @param string $template Page template filename.
	 * @param int    $post_id  Post ID.
	 * @param bool   $validate Whether to validate that the template selected is valid.
	 */
	public function handle_template( $template, $post_id, $validate = false ) {

		if ( $validate && ! array_key_exists( $template, wp_get_theme()->get_page_templates( get_post( $post_id ) ) ) ) {
			$template = '';
		}

		update_post_meta( $post_id, '_wp_page_template', $template );
	}

	/**
	 * Updates the post's terms from a REST request.
	 *
	 * @since 4.7.0
	 *
	 * @param int             $post_id The post ID to update the terms form.
	 * @param WP_REST_Request $request The request object with post and terms data.
	 * @return null|WP_Error WP_Error on an error assigning any of the terms, otherwise null.
	 */
	protected function handle_terms( $post_id, $request ) {
		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			if ( ! isset( $request[ $base ] ) ) {
				continue;
			}

			$result = wp_set_object_terms( $post_id, $request[ $base ], $taxonomy->name );

			if ( is_wp_error( $result ) ) {
				return $result;
			}
		}

		return null;
	}

	/**
	 * Checks whether current user can assign all terms sent with the current request.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request The request object with post and terms data.
	 * @return bool Whether the current user can assign the provided terms.
	 */
	protected function check_assign_terms_permission( $request ) {
		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );
		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			if ( ! isset( $request[ $base ] ) ) {
				continue;
			}

			foreach ( (array) $request[ $base ] as $term_id ) {
				// Invalid terms will be rejected later.
				if ( ! get_term( $term_id, $taxonomy->name ) ) {
					continue;
				}

				if ( ! current_user_can( 'assign_term', (int) $term_id ) ) {
					return false;
				}
			}
		}

		return true;
	}

	/**
	 * Checks if a given post type can be viewed or managed.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post_Type|string $post_type Post type name or object.
	 * @return bool Whether the post type is allowed in REST.
	 */
	protected function check_is_post_type_allowed( $post_type ) {
		if ( ! is_object( $post_type ) ) {
			$post_type = get_post_type_object( $post_type );
		}

		if ( ! empty( $post_type ) && ! empty( $post_type->show_in_rest ) ) {
			return true;
		}

		return false;
	}

	/**
	 * Checks if a post can be read.
	 *
	 * Correctly handles posts with the inherit status.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post $post Post object.
	 * @return bool Whether the post can be read.
	 */
	public function check_read_permission( $post ) {
		$post_type = get_post_type_object( $post->post_type );
		if ( ! $this->check_is_post_type_allowed( $post_type ) ) {
			return false;
		}

		// Is the post readable?
		if ( 'publish' === $post->post_status || current_user_can( 'read_post', $post->ID ) ) {
			return true;
		}

		$post_status_obj = get_post_status_object( $post->post_status );
		if ( $post_status_obj && $post_status_obj->public ) {
			return true;
		}

		// Can we read the parent if we're inheriting?
		if ( 'inherit' === $post->post_status && $post->post_parent > 0 ) {
			$parent = get_post( $post->post_parent );
			if ( $parent ) {
				return $this->check_read_permission( $parent );
			}
		}

		/*
		 * If there isn't a parent, but the status is set to inherit, assume
		 * it's published (as per get_post_status()).
		 */
		if ( 'inherit' === $post->post_status ) {
			return true;
		}

		return false;
	}

	/**
	 * Checks if a post can be edited.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post $post Post object.
	 * @return bool Whether the post can be edited.
	 */
	protected function check_update_permission( $post ) {
		$post_type = get_post_type_object( $post->post_type );

		if ( ! $this->check_is_post_type_allowed( $post_type ) ) {
			return false;
		}

		return current_user_can( 'edit_post', $post->ID );
	}

	/**
	 * Checks if a post can be created.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post $post Post object.
	 * @return bool Whether the post can be created.
	 */
	protected function check_create_permission( $post ) {
		$post_type = get_post_type_object( $post->post_type );

		if ( ! $this->check_is_post_type_allowed( $post_type ) ) {
			return false;
		}

		return current_user_can( $post_type->cap->create_posts );
	}

	/**
	 * Checks if a post can be deleted.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post $post Post object.
	 * @return bool Whether the post can be deleted.
	 */
	protected function check_delete_permission( $post ) {
		$post_type = get_post_type_object( $post->post_type );

		if ( ! $this->check_is_post_type_allowed( $post_type ) ) {
			return false;
		}

		return current_user_can( 'delete_post', $post->ID );
	}

	/**
	 * Prepares a single post output for response.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param WP_Post         $item    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$post = $item;

		$GLOBALS['post'] = $post;

		setup_postdata( $post );

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
			return apply_filters( "rest_prepare_{$this->post_type}", new WP_REST_Response( array() ), $post, $request );
		}

		$fields = $this->get_fields_for_response( $request );

		// Base fields for every post.
		$data = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $post->ID;
		}

		if ( rest_is_field_included( 'date', $fields ) ) {
			$data['date'] = $this->prepare_date_response( $post->post_date_gmt, $post->post_date );
		}

		if ( rest_is_field_included( 'date_gmt', $fields ) ) {
			/*
			 * For drafts, `post_date_gmt` may not be set, indicating that the date
			 * of the draft should be updated each time it is saved (see #38883).
			 * In this case, shim the value based on the `post_date` field
			 * with the site's timezone offset applied.
			 */
			if ( '0000-00-00 00:00:00' === $post->post_date_gmt ) {
				$post_date_gmt = get_gmt_from_date( $post->post_date );
			} else {
				$post_date_gmt = $post->post_date_gmt;
			}
			$data['date_gmt'] = $this->prepare_date_response( $post_date_gmt );
		}

		if ( rest_is_field_included( 'guid', $fields ) ) {
			$data['guid'] = array(
				/** This filter is documented in wp-includes/post-template.php */
				'rendered' => apply_filters( 'get_the_guid', $post->guid, $post->ID ),
				'raw'      => $post->guid,
			);
		}

		if ( rest_is_field_included( 'modified', $fields ) ) {
			$data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified );
		}

		if ( rest_is_field_included( 'modified_gmt', $fields ) ) {
			/*
			 * For drafts, `post_modified_gmt` may not be set (see `post_date_gmt` comments
			 * above). In this case, shim the value based on the `post_modified` field
			 * with the site's timezone offset applied.
			 */
			if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) {
				$post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - (int) ( (float) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
			} else {
				$post_modified_gmt = $post->post_modified_gmt;
			}
			$data['modified_gmt'] = $this->prepare_date_response( $post_modified_gmt );
		}

		if ( rest_is_field_included( 'password', $fields ) ) {
			$data['password'] = $post->post_password;
		}

		if ( rest_is_field_included( 'slug', $fields ) ) {
			$data['slug'] = $post->post_name;
		}

		if ( rest_is_field_included( 'status', $fields ) ) {
			$data['status'] = $post->post_status;
		}

		if ( rest_is_field_included( 'type', $fields ) ) {
			$data['type'] = $post->post_type;
		}

		if ( rest_is_field_included( 'link', $fields ) ) {
			$data['link'] = get_permalink( $post->ID );
		}

		if ( rest_is_field_included( 'title', $fields ) ) {
			$data['title'] = array();
		}
		if ( rest_is_field_included( 'title.raw', $fields ) ) {
			$data['title']['raw'] = $post->post_title;
		}
		if ( rest_is_field_included( 'title.rendered', $fields ) ) {
			add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );

			$data['title']['rendered'] = get_the_title( $post->ID );

			remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
		}

		$has_password_filter = false;

		if ( $this->can_access_password_content( $post, $request ) ) {
			$this->password_check_passed[ $post->ID ] = true;
			// Allow access to the post, permissions already checked before.
			add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 );

			$has_password_filter = true;
		}

		if ( rest_is_field_included( 'content', $fields ) ) {
			$data['content'] = array();
		}
		if ( rest_is_field_included( 'content.raw', $fields ) ) {
			$data['content']['raw'] = $post->post_content;
		}
		if ( rest_is_field_included( 'content.rendered', $fields ) ) {
			/** This filter is documented in wp-includes/post-template.php */
			$data['content']['rendered'] = post_password_required( $post ) ? '' : apply_filters( 'the_content', $post->post_content );
		}
		if ( rest_is_field_included( 'content.protected', $fields ) ) {
			$data['content']['protected'] = (bool) $post->post_password;
		}
		if ( rest_is_field_included( 'content.block_version', $fields ) ) {
			$data['content']['block_version'] = block_version( $post->post_content );
		}

		if ( rest_is_field_included( 'excerpt', $fields ) ) {
			if ( isset( $request['excerpt_length'] ) ) {
				$excerpt_length          = $request['excerpt_length'];
				$override_excerpt_length = static function () use ( $excerpt_length ) {
					return $excerpt_length;
				};

				add_filter(
					'excerpt_length',
					$override_excerpt_length,
					20
				);
			}

			/** This filter is documented in wp-includes/post-template.php */
			$excerpt = apply_filters( 'get_the_excerpt', $post->post_excerpt, $post );

			/** This filter is documented in wp-includes/post-template.php */
			$excerpt = apply_filters( 'the_excerpt', $excerpt );

			$data['excerpt'] = array(
				'raw'       => $post->post_excerpt,
				'rendered'  => post_password_required( $post ) ? '' : $excerpt,
				'protected' => (bool) $post->post_password,
			);

			if ( isset( $override_excerpt_length ) ) {
				remove_filter(
					'excerpt_length',
					$override_excerpt_length,
					20
				);
			}
		}

		if ( $has_password_filter ) {
			// Reset filter.
			remove_filter( 'post_password_required', array( $this, 'check_password_required' ) );
		}

		if ( rest_is_field_included( 'author', $fields ) ) {
			$data['author'] = (int) $post->post_author;
		}

		if ( rest_is_field_included( 'featured_media', $fields ) ) {
			$data['featured_media'] = (int) get_post_thumbnail_id( $post->ID );
		}

		if ( rest_is_field_included( 'parent', $fields ) ) {
			$data['parent'] = (int) $post->post_parent;
		}

		if ( rest_is_field_included( 'menu_order', $fields ) ) {
			$data['menu_order'] = (int) $post->menu_order;
		}

		if ( rest_is_field_included( 'comment_status', $fields ) ) {
			$data['comment_status'] = $post->comment_status;
		}

		if ( rest_is_field_included( 'ping_status', $fields ) ) {
			$data['ping_status'] = $post->ping_status;
		}

		if ( rest_is_field_included( 'sticky', $fields ) ) {
			$data['sticky'] = is_sticky( $post->ID );
		}

		if ( rest_is_field_included( 'template', $fields ) ) {
			$template = get_page_template_slug( $post->ID );
			if ( $template ) {
				$data['template'] = $template;
			} else {
				$data['template'] = '';
			}
		}

		if ( rest_is_field_included( 'format', $fields ) ) {
			$data['format'] = get_post_format( $post->ID );

			// Fill in blank post format.
			if ( empty( $data['format'] ) ) {
				$data['format'] = 'standard';
			}
		}

		if ( rest_is_field_included( 'meta', $fields ) ) {
			$data['meta'] = $this->meta->get_value( $post->ID, $request );
		}

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			if ( rest_is_field_included( $base, $fields ) ) {
				$terms         = get_the_terms( $post, $taxonomy->name );
				$data[ $base ] = $terms ? array_values( wp_list_pluck( $terms, 'term_id' ) ) : array();
			}
		}

		$post_type_obj = get_post_type_object( $post->post_type );
		if ( is_post_type_viewable( $post_type_obj ) && $post_type_obj->public ) {
			$permalink_template_requested = rest_is_field_included( 'permalink_template', $fields );
			$generated_slug_requested     = rest_is_field_included( 'generated_slug', $fields );

			if ( $permalink_template_requested || $generated_slug_requested ) {
				if ( ! function_exists( 'get_sample_permalink' ) ) {
					require_once ABSPATH . 'wp-admin/includes/post.php';
				}

				$sample_permalink = get_sample_permalink( $post->ID, $post->post_title, '' );

				if ( $permalink_template_requested ) {
					$data['permalink_template'] = $sample_permalink[0];
				}

				if ( $generated_slug_requested ) {
					$data['generated_slug'] = $sample_permalink[1];
				}
			}

			if ( rest_is_field_included( 'class_list', $fields ) ) {
				$data['class_list'] = get_post_class( array(), $post->ID );
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $post );
			$response->add_links( $links );

			if ( ! empty( $links['self']['href'] ) ) {
				$actions = $this->get_available_actions( $post, $request );

				$self = $links['self']['href'];

				foreach ( $actions as $rel ) {
					$response->add_link( $rel, $self );
				}
			}
		}

		/**
		 * Filters the post data for a REST API response.
		 *
		 * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_prepare_post`
		 *  - `rest_prepare_page`
		 *  - `rest_prepare_attachment`
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     Post object.
		 * @param WP_REST_Request  $request  Request object.
		 */
		return apply_filters( "rest_prepare_{$this->post_type}", $response, $post, $request );
	}

	/**
	 * Overwrites the default protected and private title format.
	 *
	 * By default, WordPress will show password protected or private posts with a title of
	 * "Protected: %s" or "Private: %s", as the REST API communicates the status of a post
	 * in a machine-readable format, we remove the prefix.
	 *
	 * @since 4.7.0
	 *
	 * @return string Title format.
	 */
	public function protected_title_format() {
		return '%s';
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post $post Post object.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $post ) {
		// Entity meta.
		$links = array(
			'self'       => array(
				'href' => rest_url( rest_get_route_for_post( $post->ID ) ),
			),
			'collection' => array(
				'href' => rest_url( rest_get_route_for_post_type_items( $this->post_type ) ),
			),
			'about'      => array(
				'href' => rest_url( 'wp/v2/types/' . $this->post_type ),
			),
		);

		if ( ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'author' ) )
			&& ! empty( $post->post_author ) ) {
			$links['author'] = array(
				'href'       => rest_url( 'wp/v2/users/' . $post->post_author ),
				'embeddable' => true,
			);
		}

		if ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'comments' ) ) {
			$replies_url = rest_url( 'wp/v2/comments' );
			$replies_url = add_query_arg( 'post', $post->ID, $replies_url );

			$links['replies'] = array(
				'href'       => $replies_url,
				'embeddable' => true,
			);
		}

		if ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'revisions' ) ) {
			$revisions       = wp_get_latest_revision_id_and_total_count( $post->ID );
			$revisions_count = ! is_wp_error( $revisions ) ? $revisions['count'] : 0;
			$revisions_base  = sprintf( '/%s/%s/%d/revisions', $this->namespace, $this->rest_base, $post->ID );

			$links['version-history'] = array(
				'href'  => rest_url( $revisions_base ),
				'count' => $revisions_count,
			);

			if ( $revisions_count > 0 ) {
				$links['predecessor-version'] = array(
					'href' => rest_url( $revisions_base . '/' . $revisions['latest_id'] ),
					'id'   => $revisions['latest_id'],
				);
			}
		}

		$post_type_obj = get_post_type_object( $post->post_type );

		if ( $post_type_obj->hierarchical && ! empty( $post->post_parent ) ) {
			$links['up'] = array(
				'href'       => rest_url( rest_get_route_for_post( $post->post_parent ) ),
				'embeddable' => true,
			);
		}

		// If we have a featured media, add that.
		$featured_media = get_post_thumbnail_id( $post->ID );
		if ( $featured_media ) {
			$image_url = rest_url( rest_get_route_for_post( $featured_media ) );

			$links['https://api.w.org/featuredmedia'] = array(
				'href'       => $image_url,
				'embeddable' => true,
			);
		}

		if ( ! in_array( $post->post_type, array( 'attachment', 'nav_menu_item', 'revision' ), true ) ) {
			$attachments_url = rest_url( rest_get_route_for_post_type_items( 'attachment' ) );
			$attachments_url = add_query_arg( 'parent', $post->ID, $attachments_url );

			$links['https://api.w.org/attachment'] = array(
				'href' => $attachments_url,
			);
		}

		$taxonomies = get_object_taxonomies( $post->post_type );

		if ( ! empty( $taxonomies ) ) {
			$links['https://api.w.org/term'] = array();

			foreach ( $taxonomies as $tax ) {
				$taxonomy_route = rest_get_route_for_taxonomy_items( $tax );

				// Skip taxonomies that are not public.
				if ( empty( $taxonomy_route ) ) {
					continue;
				}
				$terms_url = add_query_arg(
					'post',
					$post->ID,
					rest_url( $taxonomy_route )
				);

				$links['https://api.w.org/term'][] = array(
					'href'       => $terms_url,
					'taxonomy'   => $tax,
					'embeddable' => true,
				);
			}
		}

		return $links;
	}

	/**
	 * Gets the link relations available for the post and current user.
	 *
	 * @since 4.9.8
	 *
	 * @param WP_Post         $post    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return array List of link relations.
	 */
	protected function get_available_actions( $post, $request ) {

		if ( 'edit' !== $request['context'] ) {
			return array();
		}

		$rels = array();

		$post_type = get_post_type_object( $post->post_type );

		if ( 'attachment' !== $this->post_type && current_user_can( $post_type->cap->publish_posts ) ) {
			$rels[] = 'https://api.w.org/action-publish';
		}

		if ( current_user_can( 'unfiltered_html' ) ) {
			$rels[] = 'https://api.w.org/action-unfiltered-html';
		}

		if ( 'post' === $post_type->name ) {
			if ( current_user_can( $post_type->cap->edit_others_posts ) && current_user_can( $post_type->cap->publish_posts ) ) {
				$rels[] = 'https://api.w.org/action-sticky';
			}
		}

		if ( post_type_supports( $post_type->name, 'author' ) ) {
			if ( current_user_can( $post_type->cap->edit_others_posts ) ) {
				$rels[] = 'https://api.w.org/action-assign-author';
			}
		}

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $tax ) {
			$tax_base   = ! empty( $tax->rest_base ) ? $tax->rest_base : $tax->name;
			$create_cap = is_taxonomy_hierarchical( $tax->name ) ? $tax->cap->edit_terms : $tax->cap->assign_terms;

			if ( current_user_can( $create_cap ) ) {
				$rels[] = 'https://api.w.org/action-create-' . $tax_base;
			}

			if ( current_user_can( $tax->cap->assign_terms ) ) {
				$rels[] = 'https://api.w.org/action-assign-' . $tax_base;
			}
		}

		return $rels;
	}

	/**
	 * Retrieves the post's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => $this->post_type,
			'type'       => 'object',
			// Base properties for every Post.
			'properties' => array(
				'date'         => array(
					'description' => __( "The date the post was published, in the site's timezone." ),
					'type'        => array( 'string', 'null' ),
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'date_gmt'     => array(
					'description' => __( 'The date the post was published, as GMT.' ),
					'type'        => array( 'string', 'null' ),
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
				),
				'guid'         => array(
					'description' => __( 'The globally unique identifier for the post.' ),
					'type'        => 'object',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'GUID for the post, as it exists in the database.' ),
							'type'        => 'string',
							'context'     => array( 'edit' ),
							'readonly'    => true,
						),
						'rendered' => array(
							'description' => __( 'GUID for the post, transformed for display.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit' ),
							'readonly'    => true,
						),
					),
				),
				'id'           => array(
					'description' => __( 'Unique identifier for the post.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'link'         => array(
					'description' => __( 'URL to the post.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'modified'     => array(
					'description' => __( "The date the post was last modified, in the site's timezone." ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'modified_gmt' => array(
					'description' => __( 'The date the post was last modified, as GMT.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'slug'         => array(
					'description' => __( 'An alphanumeric identifier for the post unique to its type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'sanitize_slug' ),
					),
				),
				'status'       => array(
					'description' => __( 'A named status for the post.' ),
					'type'        => 'string',
					'enum'        => array_keys( get_post_stati( array( 'internal' => false ) ) ),
					'context'     => array( 'view', 'edit' ),
					'arg_options' => array(
						'validate_callback' => array( $this, 'check_status' ),
					),
				),
				'type'         => array(
					'description' => __( 'Type of post.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'password'     => array(
					'description' => __( 'A password to protect access to the content and excerpt.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
				),
			),
		);

		$post_type_obj = get_post_type_object( $this->post_type );
		if ( is_post_type_viewable( $post_type_obj ) && $post_type_obj->public ) {
			$schema['properties']['permalink_template'] = array(
				'description' => __( 'Permalink template for the post.' ),
				'type'        => 'string',
				'context'     => array( 'edit' ),
				'readonly'    => true,
			);

			$schema['properties']['generated_slug'] = array(
				'description' => __( 'Slug automatically generated from the post title.' ),
				'type'        => 'string',
				'context'     => array( 'edit' ),
				'readonly'    => true,
			);

			$schema['properties']['class_list'] = array(
				'description' => __( 'An array of the class names for the post container element.' ),
				'type'        => 'array',
				'context'     => array( 'view', 'edit' ),
				'readonly'    => true,
				'items'       => array(
					'type' => 'string',
				),
			);
		}

		if ( $post_type_obj->hierarchical ) {
			$schema['properties']['parent'] = array(
				'description' => __( 'The ID for the parent of the post.' ),
				'type'        => 'integer',
				'context'     => array( 'view', 'edit' ),
			);
		}

		$post_type_attributes = array(
			'title',
			'editor',
			'author',
			'excerpt',
			'thumbnail',
			'comments',
			'revisions',
			'page-attributes',
			'post-formats',
			'custom-fields',
		);
		$fixed_schemas        = array(
			'post'       => array(
				'title',
				'editor',
				'author',
				'excerpt',
				'thumbnail',
				'comments',
				'revisions',
				'post-formats',
				'custom-fields',
			),
			'page'       => array(
				'title',
				'editor',
				'author',
				'excerpt',
				'thumbnail',
				'comments',
				'revisions',
				'page-attributes',
				'custom-fields',
			),
			'attachment' => array(
				'title',
				'author',
				'comments',
				'revisions',
				'custom-fields',
				'thumbnail',
			),
		);

		foreach ( $post_type_attributes as $attribute ) {
			if ( isset( $fixed_schemas[ $this->post_type ] ) && ! in_array( $attribute, $fixed_schemas[ $this->post_type ], true ) ) {
				continue;
			} elseif ( ! isset( $fixed_schemas[ $this->post_type ] ) && ! post_type_supports( $this->post_type, $attribute ) ) {
				continue;
			}

			switch ( $attribute ) {

				case 'title':
					$schema['properties']['title'] = array(
						'description' => __( 'The title for the post.' ),
						'type'        => 'object',
						'context'     => array( 'view', 'edit', 'embed' ),
						'arg_options' => array(
							'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
							'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
						),
						'properties'  => array(
							'raw'      => array(
								'description' => __( 'Title for the post, as it exists in the database.' ),
								'type'        => 'string',
								'context'     => array( 'edit' ),
							),
							'rendered' => array(
								'description' => __( 'HTML title for the post, transformed for display.' ),
								'type'        => 'string',
								'context'     => array( 'view', 'edit', 'embed' ),
								'readonly'    => true,
							),
						),
					);
					break;

				case 'editor':
					$schema['properties']['content'] = array(
						'description' => __( 'The content for the post.' ),
						'type'        => 'object',
						'context'     => array( 'view', 'edit' ),
						'arg_options' => array(
							'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
							'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
						),
						'properties'  => array(
							'raw'           => array(
								'description' => __( 'Content for the post, as it exists in the database.' ),
								'type'        => 'string',
								'context'     => array( 'edit' ),
							),
							'rendered'      => array(
								'description' => __( 'HTML content for the post, transformed for display.' ),
								'type'        => 'string',
								'context'     => array( 'view', 'edit' ),
								'readonly'    => true,
							),
							'block_version' => array(
								'description' => __( 'Version of the content block format used by the post.' ),
								'type'        => 'integer',
								'context'     => array( 'edit' ),
								'readonly'    => true,
							),
							'protected'     => array(
								'description' => __( 'Whether the content is protected with a password.' ),
								'type'        => 'boolean',
								'context'     => array( 'view', 'edit', 'embed' ),
								'readonly'    => true,
							),
						),
					);
					break;

				case 'author':
					$schema['properties']['author'] = array(
						'description' => __( 'The ID for the author of the post.' ),
						'type'        => 'integer',
						'context'     => array( 'view', 'edit', 'embed' ),
					);
					break;

				case 'excerpt':
					$schema['properties']['excerpt'] = array(
						'description' => __( 'The excerpt for the post.' ),
						'type'        => 'object',
						'context'     => array( 'view', 'edit', 'embed' ),
						'arg_options' => array(
							'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
							'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
						),
						'properties'  => array(
							'raw'       => array(
								'description' => __( 'Excerpt for the post, as it exists in the database.' ),
								'type'        => 'string',
								'context'     => array( 'edit' ),
							),
							'rendered'  => array(
								'description' => __( 'HTML excerpt for the post, transformed for display.' ),
								'type'        => 'string',
								'context'     => array( 'view', 'edit', 'embed' ),
								'readonly'    => true,
							),
							'protected' => array(
								'description' => __( 'Whether the excerpt is protected with a password.' ),
								'type'        => 'boolean',
								'context'     => array( 'view', 'edit', 'embed' ),
								'readonly'    => true,
							),
						),
					);
					break;

				case 'thumbnail':
					$schema['properties']['featured_media'] = array(
						'description' => __( 'The ID of the featured media for the post.' ),
						'type'        => 'integer',
						'context'     => array( 'view', 'edit', 'embed' ),
					);
					break;

				case 'comments':
					$schema['properties']['comment_status'] = array(
						'description' => __( 'Whether or not comments are open on the post.' ),
						'type'        => 'string',
						'enum'        => array( 'open', 'closed' ),
						'context'     => array( 'view', 'edit' ),
					);
					$schema['properties']['ping_status']    = array(
						'description' => __( 'Whether or not the post can be pinged.' ),
						'type'        => 'string',
						'enum'        => array( 'open', 'closed' ),
						'context'     => array( 'view', 'edit' ),
					);
					break;

				case 'page-attributes':
					$schema['properties']['menu_order'] = array(
						'description' => __( 'The order of the post in relation to other posts.' ),
						'type'        => 'integer',
						'context'     => array( 'view', 'edit' ),
					);
					break;

				case 'post-formats':
					// Get the native post formats and remove the array keys.
					$formats = array_values( get_post_format_slugs() );

					$schema['properties']['format'] = array(
						'description' => __( 'The format for the post.' ),
						'type'        => 'string',
						'enum'        => $formats,
						'context'     => array( 'view', 'edit' ),
					);
					break;

				case 'custom-fields':
					$schema['properties']['meta'] = $this->meta->get_field_schema();
					break;

			}
		}

		if ( 'post' === $this->post_type ) {
			$schema['properties']['sticky'] = array(
				'description' => __( 'Whether or not the post should be treated as sticky.' ),
				'type'        => 'boolean',
				'context'     => array( 'view', 'edit' ),
			);
		}

		$schema['properties']['template'] = array(
			'description' => __( 'The theme file to use to display the post.' ),
			'type'        => 'string',
			'context'     => array( 'view', 'edit' ),
			'arg_options' => array(
				'validate_callback' => array( $this, 'check_template' ),
			),
		);

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			if ( array_key_exists( $base, $schema['properties'] ) ) {
				$taxonomy_field_name_with_conflict = ! empty( $taxonomy->rest_base ) ? 'rest_base' : 'name';
				_doing_it_wrong(
					'register_taxonomy',
					sprintf(
						/* translators: 1: The taxonomy name, 2: The property name, either 'rest_base' or 'name', 3: The conflicting value. */
						__( 'The "%1$s" taxonomy "%2$s" property (%3$s) conflicts with an existing property on the REST API Posts Controller. Specify a custom "rest_base" when registering the taxonomy to avoid this error.' ),
						$taxonomy->name,
						$taxonomy_field_name_with_conflict,
						$base
					),
					'5.4.0'
				);
			}

			$schema['properties'][ $base ] = array(
				/* translators: %s: Taxonomy name. */
				'description' => sprintf( __( 'The terms assigned to the post in the %s taxonomy.' ), $taxonomy->name ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'context'     => array( 'view', 'edit' ),
			);
		}

		$schema_links = $this->get_schema_links();

		if ( $schema_links ) {
			$schema['links'] = $schema_links;
		}

		// Take a snapshot of which fields are in the schema pre-filtering.
		$schema_fields = array_keys( $schema['properties'] );

		/**
		 * Filters the post's schema.
		 *
		 * The dynamic portion of the filter, `$this->post_type`, refers to the
		 * post type slug for the controller.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_post_item_schema`
		 *  - `rest_page_item_schema`
		 *  - `rest_attachment_item_schema`
		 *
		 * @since 5.4.0
		 *
		 * @param array $schema Item schema data.
		 */
		$schema = apply_filters( "rest_{$this->post_type}_item_schema", $schema );

		// Emit a _doing_it_wrong warning if user tries to add new properties using this filter.
		$new_fields = array_diff( array_keys( $schema['properties'] ), $schema_fields );
		if ( count( $new_fields ) > 0 ) {
			_doing_it_wrong(
				__METHOD__,
				sprintf(
					/* translators: %s: register_rest_field */
					__( 'Please use %s to add new schema properties.' ),
					'register_rest_field'
				),
				'5.4.0'
			);
		}

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves Link Description Objects that should be added to the Schema for the posts collection.
	 *
	 * @since 4.9.8
	 *
	 * @return array
	 */
	protected function get_schema_links() {

		$href = rest_url( "{$this->namespace}/{$this->rest_base}/{id}" );

		$links = array();

		if ( 'attachment' !== $this->post_type ) {
			$links[] = array(
				'rel'          => 'https://api.w.org/action-publish',
				'title'        => __( 'The current user can publish this post.' ),
				'href'         => $href,
				'targetSchema' => array(
					'type'       => 'object',
					'properties' => array(
						'status' => array(
							'type' => 'string',
							'enum' => array( 'publish', 'future' ),
						),
					),
				),
			);
		}

		$links[] = array(
			'rel'          => 'https://api.w.org/action-unfiltered-html',
			'title'        => __( 'The current user can post unfiltered HTML markup and JavaScript.' ),
			'href'         => $href,
			'targetSchema' => array(
				'type'       => 'object',
				'properties' => array(
					'content' => array(
						'raw' => array(
							'type' => 'string',
						),
					),
				),
			),
		);

		if ( 'post' === $this->post_type ) {
			$links[] = array(
				'rel'          => 'https://api.w.org/action-sticky',
				'title'        => __( 'The current user can sticky this post.' ),
				'href'         => $href,
				'targetSchema' => array(
					'type'       => 'object',
					'properties' => array(
						'sticky' => array(
							'type' => 'boolean',
						),
					),
				),
			);
		}

		if ( post_type_supports( $this->post_type, 'author' ) ) {
			$links[] = array(
				'rel'          => 'https://api.w.org/action-assign-author',
				'title'        => __( 'The current user can change the author on this post.' ),
				'href'         => $href,
				'targetSchema' => array(
					'type'       => 'object',
					'properties' => array(
						'author' => array(
							'type' => 'integer',
						),
					),
				),
			);
		}

		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		foreach ( $taxonomies as $tax ) {
			$tax_base = ! empty( $tax->rest_base ) ? $tax->rest_base : $tax->name;

			/* translators: %s: Taxonomy name. */
			$assign_title = sprintf( __( 'The current user can assign terms in the %s taxonomy.' ), $tax->name );
			/* translators: %s: Taxonomy name. */
			$create_title = sprintf( __( 'The current user can create terms in the %s taxonomy.' ), $tax->name );

			$links[] = array(
				'rel'          => 'https://api.w.org/action-assign-' . $tax_base,
				'title'        => $assign_title,
				'href'         => $href,
				'targetSchema' => array(
					'type'       => 'object',
					'properties' => array(
						$tax_base => array(
							'type'  => 'array',
							'items' => array(
								'type' => 'integer',
							),
						),
					),
				),
			);

			$links[] = array(
				'rel'          => 'https://api.w.org/action-create-' . $tax_base,
				'title'        => $create_title,
				'href'         => $href,
				'targetSchema' => array(
					'type'       => 'object',
					'properties' => array(
						$tax_base => array(
							'type'  => 'array',
							'items' => array(
								'type' => 'integer',
							),
						),
					),
				),
			);
		}

		return $links;
	}

	/**
	 * Retrieves the query params for the posts collection.
	 *
	 * @since 4.7.0
	 * @since 5.4.0 The `tax_relation` query parameter was added.
	 * @since 5.7.0 The `modified_after` and `modified_before` query parameters were added.
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params['after'] = array(
			'description' => __( 'Limit response to posts published after a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		$query_params['modified_after'] = array(
			'description' => __( 'Limit response to posts modified after a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		if ( post_type_supports( $this->post_type, 'author' ) ) {
			$query_params['author']         = array(
				'description' => __( 'Limit result set to posts assigned to specific authors.' ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'default'     => array(),
			);
			$query_params['author_exclude'] = array(
				'description' => __( 'Ensure result set excludes posts assigned to specific authors.' ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'default'     => array(),
			);
		}

		$query_params['before'] = array(
			'description' => __( 'Limit response to posts published before a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		$query_params['modified_before'] = array(
			'description' => __( 'Limit response to posts modified before a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		if ( 'page' === $this->post_type || post_type_supports( $this->post_type, 'page-attributes' ) ) {
			$query_params['menu_order'] = array(
				'description' => __( 'Limit result set to posts with a specific menu_order value.' ),
				'type'        => 'integer',
			);
		}

		$query_params['search_semantics'] = array(
			'description' => __( 'How to interpret the search input.' ),
			'type'        => 'string',
			'enum'        => array( 'exact' ),
		);

		$query_params['offset'] = array(
			'description' => __( 'Offset the result set by a specific number of items.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'desc',
			'enum'        => array( 'asc', 'desc' ),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by post attribute.' ),
			'type'        => 'string',
			'default'     => 'date',
			'enum'        => array(
				'author',
				'date',
				'id',
				'include',
				'modified',
				'parent',
				'relevance',
				'slug',
				'include_slugs',
				'title',
			),
		);

		if ( 'page' === $this->post_type || post_type_supports( $this->post_type, 'page-attributes' ) ) {
			$query_params['orderby']['enum'][] = 'menu_order';
		}

		$post_type = get_post_type_object( $this->post_type );

		if ( $post_type->hierarchical || 'attachment' === $this->post_type ) {
			$query_params['parent']         = array(
				'description' => __( 'Limit result set to items with particular parent IDs.' ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'default'     => array(),
			);
			$query_params['parent_exclude'] = array(
				'description' => __( 'Limit result set to all items except those of a particular parent ID.' ),
				'type'        => 'array',
				'items'       => array(
					'type' => 'integer',
				),
				'default'     => array(),
			);
		}

		$query_params['search_columns'] = array(
			'default'     => array(),
			'description' => __( 'Array of column names to be searched.' ),
			'type'        => 'array',
			'items'       => array(
				'enum' => array( 'post_title', 'post_content', 'post_excerpt' ),
				'type' => 'string',
			),
		);

		$query_params['slug'] = array(
			'description' => __( 'Limit result set to posts with one or more specific slugs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		$query_params['status'] = array(
			'default'           => 'publish',
			'description'       => __( 'Limit result set to posts assigned one or more statuses.' ),
			'type'              => 'array',
			'items'             => array(
				'enum' => array_merge( array_keys( get_post_stati() ), array( 'any' ) ),
				'type' => 'string',
			),
			'sanitize_callback' => array( $this, 'sanitize_post_statuses' ),
		);

		$query_params = $this->prepare_taxonomy_limit_schema( $query_params );

		if ( 'post' === $this->post_type ) {
			$query_params['sticky'] = array(
				'description' => __( 'Limit result set to items that are sticky.' ),
				'type'        => 'boolean',
			);

			$query_params['ignore_sticky'] = array(
				'description' => __( 'Whether to ignore sticky posts or not.' ),
				'type'        => 'boolean',
				'default'     => true,
			);
		}

		if ( post_type_supports( $this->post_type, 'post-formats' ) ) {
			$query_params['format'] = array(
				'description' => __( 'Limit result set to items assigned one or more given formats.' ),
				'type'        => 'array',
				'uniqueItems' => true,
				'items'       => array(
					'enum' => array_values( get_post_format_slugs() ),
					'type' => 'string',
				),
			);
		}

		/**
		 * Filters collection parameters for the posts controller.
		 *
		 * The dynamic part of the filter `$this->post_type` refers to the post
		 * type slug for the controller.
		 *
		 * This filter registers the collection parameter, but does not map the
		 * collection parameter to an internal WP_Query parameter. Use the
		 * `rest_{$this->post_type}_query` filter to set WP_Query parameters.
		 *
		 * @since 4.7.0
		 *
		 * @param array        $query_params JSON Schema-formatted collection parameters.
		 * @param WP_Post_Type $post_type    Post type object.
		 */
		return apply_filters( "rest_{$this->post_type}_collection_params", $query_params, $post_type );
	}

	/**
	 * Sanitizes and validates the list of post statuses, including whether the
	 * user can query private statuses.
	 *
	 * @since 4.7.0
	 *
	 * @param string|array    $statuses  One or more post statuses.
	 * @param WP_REST_Request $request   Full details about the request.
	 * @param string          $parameter Additional parameter to pass to validation.
	 * @return array|WP_Error A list of valid statuses, otherwise WP_Error object.
	 */
	public function sanitize_post_statuses( $statuses, $request, $parameter ) {
		$statuses = wp_parse_slug_list( $statuses );

		// The default status is different in WP_REST_Attachments_Controller.
		$attributes     = $request->get_attributes();
		$default_status = $attributes['args']['status']['default'];

		foreach ( $statuses as $status ) {
			if ( $status === $default_status ) {
				continue;
			}

			$post_type_obj = get_post_type_object( $this->post_type );

			if ( current_user_can( $post_type_obj->cap->edit_posts ) || 'private' === $status && current_user_can( $post_type_obj->cap->read_private_posts ) ) {
				$result = rest_validate_request_arg( $status, $request, $parameter );
				if ( is_wp_error( $result ) ) {
					return $result;
				}
			} else {
				return new WP_Error(
					'rest_forbidden_status',
					__( 'Status is forbidden.' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}
		}

		return $statuses;
	}

	/**
	 * Prepares the 'tax_query' for a collection of posts.
	 *
	 * @since 5.7.0
	 *
	 * @param array           $args    WP_Query arguments.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return array Updated query arguments.
	 */
	private function prepare_tax_query( array $args, WP_REST_Request $request ) {
		$relation = $request['tax_relation'];

		if ( $relation ) {
			$args['tax_query'] = array( 'relation' => $relation );
		}

		$taxonomies = wp_list_filter(
			get_object_taxonomies( $this->post_type, 'objects' ),
			array( 'show_in_rest' => true )
		);

		foreach ( $taxonomies as $taxonomy ) {
			$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

			$tax_include = $request[ $base ];
			$tax_exclude = $request[ $base . '_exclude' ];

			if ( $tax_include ) {
				$terms            = array();
				$include_children = false;
				$operator         = 'IN';

				if ( rest_is_array( $tax_include ) ) {
					$terms = $tax_include;
				} elseif ( rest_is_object( $tax_include ) ) {
					$terms            = empty( $tax_include['terms'] ) ? array() : $tax_include['terms'];
					$include_children = ! empty( $tax_include['include_children'] );

					if ( isset( $tax_include['operator'] ) && 'AND' === $tax_include['operator'] ) {
						$operator = 'AND';
					}
				}

				if ( $terms ) {
					$args['tax_query'][] = array(
						'taxonomy'         => $taxonomy->name,
						'field'            => 'term_id',
						'terms'            => $terms,
						'include_children' => $include_children,
						'operator'         => $operator,
					);
				}
			}

			if ( $tax_exclude ) {
				$terms            = array();
				$include_children = false;

				if ( rest_is_array( $tax_exclude ) ) {
					$terms = $tax_exclude;
				} elseif ( rest_is_object( $tax_exclude ) ) {
					$terms            = empty( $tax_exclude['terms'] ) ? array() : $tax_exclude['terms'];
					$include_children = ! empty( $tax_exclude['include_children'] );
				}

				if ( $terms ) {
					$args['tax_query'][] = array(
						'taxonomy'         => $taxonomy->name,
						'field'            => 'term_id',
						'terms'            => $terms,
						'include_children' => $include_children,
						'operator'         => 'NOT IN',
					);
				}
			}
		}

		return $args;
	}

	/**
	 * Prepares the collection schema for including and excluding items by terms.
	 *
	 * @since 5.7.0
	 *
	 * @param array $query_params Collection schema.
	 * @return array Updated schema.
	 */
	private function prepare_taxonomy_limit_schema( array $query_params ) {
		$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );

		if ( ! $taxonomies ) {
			return $query_params;
		}

		$query_params['tax_relation'] = array(
			'description' => __( 'Limit result set based on relationship between multiple taxonomies.' ),
			'type'        => 'string',
			'enum'        => array( 'AND', 'OR' ),
		);

		$limit_schema = array(
			'type'  => array( 'object', 'array' ),
			'oneOf' => array(
				array(
					'title'       => __( 'Term ID List' ),
					'description' => __( 'Match terms with the listed IDs.' ),
					'type'        => 'array',
					'items'       => array(
						'type' => 'integer',
					),
				),
				array(
					'title'                => __( 'Term ID Taxonomy Query' ),
					'description'          => __( 'Perform an advanced term query.' ),
					'type'                 => 'object',
					'properties'           => array(
						'terms'            => array(
							'description' => __( 'Term IDs.' ),
							'type'        => 'array',
							'items'       => array(
								'type' => 'integer',
							),
							'default'     => array(),
						),
						'include_children' => array(
							'description' => __( 'Whether to include child terms in the terms limiting the result set.' ),
							'type'        => 'boolean',
							'default'     => false,
						),
					),
					'additionalProperties' => false,
				),
			),
		);

		$include_schema = array_merge(
			array(
				/* translators: %s: Taxonomy name. */
				'description' => __( 'Limit result set to items with specific terms assigned in the %s taxonomy.' ),
			),
			$limit_schema
		);
		// 'operator' is supported only for 'include' queries.
		$include_schema['oneOf'][1]['properties']['operator'] = array(
			'description' => __( 'Whether items must be assigned all or any of the specified terms.' ),
			'type'        => 'string',
			'enum'        => array( 'AND', 'OR' ),
			'default'     => 'OR',
		);

		$exclude_schema = array_merge(
			array(
				/* translators: %s: Taxonomy name. */
				'description' => __( 'Limit result set to items except those with specific terms assigned in the %s taxonomy.' ),
			),
			$limit_schema
		);

		foreach ( $taxonomies as $taxonomy ) {
			$base         = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
			$base_exclude = $base . '_exclude';

			$query_params[ $base ]                = $include_schema;
			$query_params[ $base ]['description'] = sprintf( $query_params[ $base ]['description'], $base );

			$query_params[ $base_exclude ]                = $exclude_schema;
			$query_params[ $base_exclude ]['description'] = sprintf( $query_params[ $base_exclude ]['description'], $base );

			if ( ! $taxonomy->hierarchical ) {
				unset( $query_params[ $base ]['oneOf'][1]['properties']['include_children'] );
				unset( $query_params[ $base_exclude ]['oneOf'][1]['properties']['include_children'] );
			}
		}

		return $query_params;
	}
}
endpoints/class-wp-rest-widget-types-controller.php000064400000045441152222510010016566 0ustar00<?php
/**
 * REST API: WP_REST_Widget_Types_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.8.0
 */

/**
 * Core class to access widget types via the REST API.
 *
 * @since 5.8.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Widget_Types_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 5.8.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'widget-types';
	}

	/**
	 * Registers the widget type routes.
	 *
	 * @since 5.8.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[a-zA-Z0-9_-]+)',
			array(
				'args'   => array(
					'id' => array(
						'description' => __( 'The widget type id.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[a-zA-Z0-9_-]+)/encode',
			array(
				'args' => array(
					'id'        => array(
						'description' => __( 'The widget type id.' ),
						'type'        => 'string',
						'required'    => true,
					),
					'instance'  => array(
						'description' => __( 'Current instance settings of the widget.' ),
						'type'        => 'object',
					),
					'form_data' => array(
						'description'       => __( 'Serialized widget form data to encode into instance settings.' ),
						'type'              => 'string',
						'sanitize_callback' => static function ( $form_data ) {
							$array = array();
							wp_parse_str( $form_data, $array );
							return $array;
						},
					),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'callback'            => array( $this, 'encode_form_data' ),
				),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[a-zA-Z0-9_-]+)/render',
			array(
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'callback'            => array( $this, 'render' ),
					'args'                => array(
						'id'       => array(
							'description' => __( 'The widget type id.' ),
							'type'        => 'string',
							'required'    => true,
						),
						'instance' => array(
							'description' => __( 'Current instance settings of the widget.' ),
							'type'        => 'object',
						),
					),
				),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read widget types.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		return $this->check_read_permission();
	}

	/**
	 * Retrieves the list of all widget types.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$data = array();
		foreach ( $this->get_widgets() as $widget ) {
			$widget_type = $this->prepare_item_for_response( $widget, $request );
			$data[]      = $this->prepare_response_for_collection( $widget_type );
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read a widget type.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$check = $this->check_read_permission();
		if ( is_wp_error( $check ) ) {
			return $check;
		}
		$widget_id   = $request['id'];
		$widget_type = $this->get_widget( $widget_id );
		if ( is_wp_error( $widget_type ) ) {
			return $widget_type;
		}

		return true;
	}

	/**
	 * Checks whether the user can read widget types.
	 *
	 * @since 5.8.0
	 *
	 * @return true|WP_Error True if the widget type is visible, WP_Error otherwise.
	 */
	protected function check_read_permission() {
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_manage_widgets',
				__( 'Sorry, you are not allowed to manage widgets on this site.' ),
				array(
					'status' => rest_authorization_required_code(),
				)
			);
		}

		return true;
	}

	/**
	 * Gets the details about the requested widget.
	 *
	 * @since 5.8.0
	 *
	 * @param string $id The widget type id.
	 * @return array|WP_Error The array of widget data if the name is valid, WP_Error otherwise.
	 */
	public function get_widget( $id ) {
		foreach ( $this->get_widgets() as $widget ) {
			if ( $id === $widget['id'] ) {
				return $widget;
			}
		}

		return new WP_Error( 'rest_widget_type_invalid', __( 'Invalid widget type.' ), array( 'status' => 404 ) );
	}

	/**
	 * Normalize array of widgets.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 * @global array             $wp_registered_widgets The list of registered widgets.
	 *
	 * @return array Array of widgets.
	 */
	protected function get_widgets() {
		global $wp_widget_factory, $wp_registered_widgets;

		$widgets = array();

		foreach ( $wp_registered_widgets as $widget ) {
			$parsed_id     = wp_parse_widget_id( $widget['id'] );
			$widget_object = $wp_widget_factory->get_widget_object( $parsed_id['id_base'] );

			$widget['id']       = $parsed_id['id_base'];
			$widget['is_multi'] = (bool) $widget_object;

			if ( isset( $widget['name'] ) ) {
				$widget['name'] = html_entity_decode( $widget['name'], ENT_QUOTES, get_bloginfo( 'charset' ) );
			}

			if ( isset( $widget['description'] ) ) {
				$widget['description'] = html_entity_decode( $widget['description'], ENT_QUOTES, get_bloginfo( 'charset' ) );
			}

			unset( $widget['callback'] );

			$classname = '';
			foreach ( (array) $widget['classname'] as $cn ) {
				if ( is_string( $cn ) ) {
					$classname .= '_' . $cn;
				} elseif ( is_object( $cn ) ) {
					$classname .= '_' . get_class( $cn );
				}
			}
			$widget['classname'] = ltrim( $classname, '_' );

			$widgets[ $widget['id'] ] = $widget;
		}

		ksort( $widgets );

		return $widgets;
	}

	/**
	 * Retrieves a single widget type from the collection.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$widget_id   = $request['id'];
		$widget_type = $this->get_widget( $widget_id );
		if ( is_wp_error( $widget_type ) ) {
			return $widget_type;
		}
		$data = $this->prepare_item_for_response( $widget_type, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Prepares a widget type object for serialization.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Renamed `$widget_type` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param array           $item    Widget type data.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Widget type data.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$widget_type = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php */
			return apply_filters( 'rest_prepare_widget_type', new WP_REST_Response( array() ), $widget_type, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array(
			'id' => $widget_type['id'],
		);

		$schema       = $this->get_item_schema();
		$extra_fields = array(
			'name',
			'description',
			'is_multi',
			'classname',
			'widget_class',
			'option_name',
			'customize_selective_refresh',
		);

		foreach ( $extra_fields as $extra_field ) {
			if ( ! rest_is_field_included( $extra_field, $fields ) ) {
				continue;
			}

			if ( isset( $widget_type[ $extra_field ] ) ) {
				$field = $widget_type[ $extra_field ];
			} elseif ( array_key_exists( 'default', $schema['properties'][ $extra_field ] ) ) {
				$field = $schema['properties'][ $extra_field ]['default'];
			} else {
				$field = '';
			}

			$data[ $extra_field ] = rest_sanitize_value_from_schema( $field, $schema['properties'][ $extra_field ] );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $widget_type ) );
		}

		/**
		 * Filters the REST API response for a widget type.
		 *
		 * @since 5.8.0
		 *
		 * @param WP_REST_Response $response    The response object.
		 * @param array            $widget_type The array of widget data.
		 * @param WP_REST_Request  $request     The request object.
		 */
		return apply_filters( 'rest_prepare_widget_type', $response, $widget_type, $request );
	}

	/**
	 * Prepares links for the widget type.
	 *
	 * @since 5.8.0
	 *
	 * @param array $widget_type Widget type data.
	 * @return array Links for the given widget type.
	 */
	protected function prepare_links( $widget_type ) {
		return array(
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $widget_type['id'] ) ),
			),
		);
	}

	/**
	 * Retrieves the widget type's schema, conforming to JSON Schema.
	 *
	 * @since 5.8.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'widget-type',
			'type'       => 'object',
			'properties' => array(
				'id'          => array(
					'description' => __( 'Unique slug identifying the widget type.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'name'        => array(
					'description' => __( 'Human-readable name identifying the widget type.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'description' => array(
					'description' => __( 'Description of the widget.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'is_multi'    => array(
					'description' => __( 'Whether the widget supports multiple instances' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'classname'   => array(
					'description' => __( 'Class name' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * An RPC-style endpoint which can be used by clients to turn user input in
	 * a widget admin form into an encoded instance object.
	 *
	 * Accepts:
	 *
	 * - id:        A widget type ID.
	 * - instance:  A widget's encoded instance object. Optional.
	 * - form_data: Form data from submitting a widget's admin form. Optional.
	 *
	 * Returns:
	 * - instance: The encoded instance object after updating the widget with
	 *             the given form data.
	 * - form:     The widget's admin form after updating the widget with the
	 *             given form data.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function encode_form_data( $request ) {
		global $wp_widget_factory;

		$id            = $request['id'];
		$widget_object = $wp_widget_factory->get_widget_object( $id );

		if ( ! $widget_object ) {
			return new WP_Error(
				'rest_invalid_widget',
				__( 'Cannot preview a widget that does not extend WP_Widget.' ),
				array( 'status' => 400 )
			);
		}

		/*
		 * Set the widget's number so that the id attributes in the HTML that we
		 * return are predictable.
		 */
		if ( isset( $request['number'] ) && is_numeric( $request['number'] ) ) {
			$widget_object->_set( (int) $request['number'] );
		} else {
			$widget_object->_set( -1 );
		}

		if ( isset( $request['instance']['encoded'], $request['instance']['hash'] ) ) {
			$serialized_instance = base64_decode( $request['instance']['encoded'] );
			if ( ! hash_equals( wp_hash( $serialized_instance ), $request['instance']['hash'] ) ) {
				return new WP_Error(
					'rest_invalid_widget',
					__( 'The provided instance is malformed.' ),
					array( 'status' => 400 )
				);
			}
			$instance = unserialize( $serialized_instance );
		} else {
			$instance = array();
		}

		if (
			isset( $request['form_data'][ "widget-$id" ] ) &&
			is_array( $request['form_data'][ "widget-$id" ] )
		) {
			$new_instance = array_values( $request['form_data'][ "widget-$id" ] )[0];
			$old_instance = $instance;

			$instance = $widget_object->update( $new_instance, $old_instance );

			/** This filter is documented in wp-includes/class-wp-widget.php */
			$instance = apply_filters(
				'widget_update_callback',
				$instance,
				$new_instance,
				$old_instance,
				$widget_object
			);
		}

		$serialized_instance = serialize( $instance );
		$widget_key          = $wp_widget_factory->get_widget_key( $id );

		$response = array(
			'form'     => trim(
				$this->get_widget_form(
					$widget_object,
					$instance
				)
			),
			'preview'  => trim(
				$this->get_widget_preview(
					$widget_key,
					$instance
				)
			),
			'instance' => array(
				'encoded' => base64_encode( $serialized_instance ),
				'hash'    => wp_hash( $serialized_instance ),
			),
		);

		if ( ! empty( $widget_object->widget_options['show_instance_in_rest'] ) ) {
			// Use new stdClass so that JSON result is {} and not [].
			$response['instance']['raw'] = empty( $instance ) ? new stdClass() : $instance;
		}

		return rest_ensure_response( $response );
	}

	/**
	 * Returns the output of WP_Widget::widget() when called with the provided
	 * instance. Used by encode_form_data() to preview a widget.

	 * @since 5.8.0
	 *
	 * @param string    $widget   The widget's PHP class name (see class-wp-widget.php).
	 * @param array     $instance Widget instance settings.
	 * @return string
	 */
	private function get_widget_preview( $widget, $instance ) {
		ob_start();
		the_widget( $widget, $instance );
		return ob_get_clean();
	}

	/**
	 * Returns the output of WP_Widget::form() when called with the provided
	 * instance. Used by encode_form_data() to preview a widget's form.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_Widget $widget_object Widget object to call widget() on.
	 * @param array     $instance Widget instance settings.
	 * @return string
	 */
	private function get_widget_form( $widget_object, $instance ) {
		ob_start();

		/** This filter is documented in wp-includes/class-wp-widget.php */
		$instance = apply_filters(
			'widget_form_callback',
			$instance,
			$widget_object
		);

		if ( false !== $instance ) {
			$return = $widget_object->form( $instance );

			/** This filter is documented in wp-includes/class-wp-widget.php */
			do_action_ref_array(
				'in_widget_form',
				array( &$widget_object, &$return, $instance )
			);
		}

		return ob_get_clean();
	}

	/**
	 * Renders a single Legacy Widget and wraps it in a JSON-encodable array.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 *
	 * @return array An array with rendered Legacy Widget HTML.
	 */
	public function render( $request ) {
		return array(
			'preview' => $this->render_legacy_widget_preview_iframe(
				$request['id'],
				isset( $request['instance'] ) ? $request['instance'] : null
			),
		);
	}

	/**
	 * Renders a page containing a preview of the requested Legacy Widget block.
	 *
	 * @since 5.9.0
	 *
	 * @param string $id_base The id base of the requested widget.
	 * @param array  $instance The widget instance attributes.
	 *
	 * @return string Rendered Legacy Widget block preview.
	 */
	private function render_legacy_widget_preview_iframe( $id_base, $instance ) {
		if ( ! defined( 'IFRAME_REQUEST' ) ) {
			define( 'IFRAME_REQUEST', true );
		}

		ob_start();
		?>
		<!doctype html>
		<html <?php language_attributes(); ?>>
		<head>
			<meta charset="<?php bloginfo( 'charset' ); ?>" />
			<meta name="viewport" content="width=device-width, initial-scale=1" />
			<link rel="profile" href="https://gmpg.org/xfn/11" />
			<?php wp_head(); ?>
			<style>
				/* Reset theme styles */
				html, body, #page, #content {
					padding: 0 !important;
					margin: 0 !important;
				}
			</style>
		</head>
		<body <?php body_class(); ?>>
		<div id="page" class="site">
			<div id="content" class="site-content">
				<?php
				$registry = WP_Block_Type_Registry::get_instance();
				$block    = $registry->get_registered( 'core/legacy-widget' );
				echo $block->render(
					array(
						'idBase'   => $id_base,
						'instance' => $instance,
					)
				);
				?>
			</div><!-- #content -->
		</div><!-- #page -->
		<?php wp_footer(); ?>
		</body>
		</html>
		<?php
		return ob_get_clean();
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 5.8.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}
}
endpoints/class-wp-rest-comments-controller.php000064400000173053152222510010015767 0ustar00<?php
/**
 * REST API: WP_REST_Comments_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core controller used to access comments via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Comments_Controller extends WP_REST_Controller {

	/**
	 * Instance of a comment meta fields object.
	 *
	 * @since 4.7.0
	 * @var WP_REST_Comment_Meta_Fields
	 */
	protected $meta;

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'comments';

		$this->meta = new WP_REST_Comment_Meta_Fields();
	}

	/**
	 * Registers the routes for comments.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'   => array(
					'id' => array(
						'description' => __( 'Unique identifier for the comment.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context'  => $this->get_context_param( array( 'default' => 'view' ) ),
						'password' => array(
							'description' => __( 'The password for the parent post of the comment (if the post is password protected).' ),
							'type'        => 'string',
						),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force'    => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Whether to bypass Trash and force deletion.' ),
						),
						'password' => array(
							'description' => __( 'The password for the parent post of the comment (if the post is password protected).' ),
							'type'        => 'string',
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to read comments.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$is_note          = 'note' === $request['type'];
		$is_edit_context  = 'edit' === $request['context'];
		$protected_params = array( 'author', 'author_exclude', 'author_email', 'type', 'status' );
		$forbidden_params = array();

		if ( ! empty( $request['post'] ) ) {
			foreach ( (array) $request['post'] as $post_id ) {
				$post = get_post( $post_id );

				if ( ! empty( $post_id ) && $post && ! $this->check_read_post_permission( $post, $request ) ) {
					return new WP_Error(
						'rest_cannot_read_post',
						__( 'Sorry, you are not allowed to read the post for this comment.' ),
						array( 'status' => rest_authorization_required_code() )
					);
				} elseif ( 0 === $post_id && ! current_user_can( 'moderate_comments' ) ) {
					return new WP_Error(
						'rest_cannot_read',
						__( 'Sorry, you are not allowed to read comments without a post.' ),
						array( 'status' => rest_authorization_required_code() )
					);
				}

				if ( $post && $is_note && ! $this->check_post_type_supports_notes( $post->post_type ) ) {
					if ( current_user_can( 'edit_post', $post->ID ) ) {
						return new WP_Error(
							'rest_comment_not_supported_post_type',
							__( 'Sorry, this post type does not support notes.' ),
							array( 'status' => 403 )
						);
					}

					foreach ( $protected_params as $param ) {
						if ( 'status' === $param ) {
							if ( 'approve' !== $request[ $param ] ) {
								$forbidden_params[] = $param;
							}
						} elseif ( 'type' === $param ) {
							if ( 'comment' !== $request[ $param ] ) {
								$forbidden_params[] = $param;
							}
						} elseif ( ! empty( $request[ $param ] ) ) {
							$forbidden_params[] = $param;
						}
					}
					return new WP_Error(
						'rest_forbidden_param',
						/* translators: %s: List of forbidden parameters. */
						sprintf( __( 'Query parameter not permitted: %s' ), implode( ', ', $forbidden_params ) ),
						array( 'status' => rest_authorization_required_code() )
					);
				}
			}
		}

		// Re-map edit context capabilities when requesting `note` for a post.
		if ( $is_edit_context && $is_note && ! empty( $request['post'] ) ) {
			foreach ( (array) $request['post'] as $post_id ) {
				if ( ! current_user_can( 'edit_post', $post_id ) ) {
					return new WP_Error(
						'rest_forbidden_context',
						__( 'Sorry, you are not allowed to edit comments.' ),
						array( 'status' => rest_authorization_required_code() )
					);
				}
			}
		} elseif ( $is_edit_context && ! current_user_can( 'moderate_comments' ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit comments.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! current_user_can( 'edit_posts' ) ) {
			foreach ( $protected_params as $param ) {
				if ( 'status' === $param ) {
					if ( 'approve' !== $request[ $param ] ) {
						$forbidden_params[] = $param;
					}
				} elseif ( 'type' === $param ) {
					if ( 'comment' !== $request[ $param ] ) {
						$forbidden_params[] = $param;
					}
				} elseif ( ! empty( $request[ $param ] ) ) {
					$forbidden_params[] = $param;
				}
			}

			if ( ! empty( $forbidden_params ) ) {
				return new WP_Error(
					'rest_forbidden_param',
					/* translators: %s: List of forbidden parameters. */
					sprintf( __( 'Query parameter not permitted: %s' ), implode( ', ', $forbidden_params ) ),
					array( 'status' => rest_authorization_required_code() )
				);
			}
		}

		return true;
	}

	/**
	 * Retrieves a list of comment items.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or error object on failure.
	 */
	public function get_items( $request ) {

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();

		/*
		 * This array defines mappings between public API query parameters whose
		 * values are accepted as-passed, and their internal WP_Query parameter
		 * name equivalents (some are the same). Only values which are also
		 * present in $registered will be set.
		 */
		$parameter_mappings = array(
			'author'         => 'author__in',
			'author_email'   => 'author_email',
			'author_exclude' => 'author__not_in',
			'exclude'        => 'comment__not_in',
			'include'        => 'comment__in',
			'offset'         => 'offset',
			'order'          => 'order',
			'parent'         => 'parent__in',
			'parent_exclude' => 'parent__not_in',
			'per_page'       => 'number',
			'post'           => 'post__in',
			'search'         => 'search',
			'status'         => 'status',
			'type'           => 'type',
		);

		$prepared_args = array();

		/*
		 * For each known parameter which is both registered and present in the request,
		 * set the parameter's value on the query $prepared_args.
		 */
		foreach ( $parameter_mappings as $api_param => $wp_param ) {
			if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
				$prepared_args[ $wp_param ] = $request[ $api_param ];
			}
		}

		// Ensure certain parameter values default to empty strings.
		foreach ( array( 'author_email', 'search' ) as $param ) {
			if ( ! isset( $prepared_args[ $param ] ) ) {
				$prepared_args[ $param ] = '';
			}
		}

		if ( isset( $registered['orderby'] ) ) {
			$prepared_args['orderby'] = $this->normalize_query_param( $request['orderby'] );
		}

		$prepared_args['no_found_rows'] = false;

		$prepared_args['update_comment_post_cache'] = true;

		$prepared_args['date_query'] = array();

		// Set before into date query. Date query must be specified as an array of an array.
		if ( isset( $registered['before'], $request['before'] ) ) {
			$prepared_args['date_query'][0]['before'] = $request['before'];
		}

		// Set after into date query. Date query must be specified as an array of an array.
		if ( isset( $registered['after'], $request['after'] ) ) {
			$prepared_args['date_query'][0]['after'] = $request['after'];
		}

		if ( isset( $registered['page'] ) && empty( $request['offset'] ) ) {
			$prepared_args['offset'] = $prepared_args['number'] * ( absint( $request['page'] ) - 1 );
		}

		$is_head_request = $request->is_method( 'HEAD' );
		if ( $is_head_request ) {
			// Force the 'fields' argument. For HEAD requests, only post IDs are required to calculate pagination.
			$prepared_args['fields'] = 'ids';
			// Disable priming comment meta for HEAD requests to improve performance.
			$prepared_args['update_comment_meta_cache'] = false;
		}

		/**
		 * Filters WP_Comment_Query arguments when querying comments via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @link https://developer.wordpress.org/reference/classes/wp_comment_query/
		 *
		 * @param array           $prepared_args Array of arguments for WP_Comment_Query.
		 * @param WP_REST_Request $request       The REST API request.
		 */
		$prepared_args = apply_filters( 'rest_comment_query', $prepared_args, $request );

		$query        = new WP_Comment_Query();
		$query_result = $query->query( $prepared_args );

		if ( ! $is_head_request ) {
			$comments = array();

			foreach ( $query_result as $comment ) {
				if ( ! $this->check_read_permission( $comment, $request ) ) {
					continue;
				}

				$data       = $this->prepare_item_for_response( $comment, $request );
				$comments[] = $this->prepare_response_for_collection( $data );
			}
		}

		$total_comments = (int) $query->found_comments;
		$max_pages      = (int) $query->max_num_pages;

		if ( $total_comments < 1 ) {
			// Out-of-bounds, run the query without pagination/offset to get the total count.
			unset( $prepared_args['number'], $prepared_args['offset'] );

			$query                                      = new WP_Comment_Query();
			$prepared_args['count']                     = true;
			$prepared_args['orderby']                   = 'none';
			$prepared_args['update_comment_meta_cache'] = false;

			$total_comments = $query->query( $prepared_args );
			$max_pages      = (int) ceil( $total_comments / $request['per_page'] );
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $comments );
		$response->header( 'X-WP-Total', $total_comments );
		$response->header( 'X-WP-TotalPages', $max_pages );

		$base = add_query_arg( urlencode_deep( $request->get_query_params() ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );

		if ( $request['page'] > 1 ) {
			$prev_page = $request['page'] - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}

		if ( $max_pages > $request['page'] ) {
			$next_page = $request['page'] + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Get the comment, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Comment|WP_Error Comment object if ID is valid, WP_Error otherwise.
	 */
	protected function get_comment( $id ) {
		$error = new WP_Error(
			'rest_comment_invalid_id',
			__( 'Invalid comment ID.' ),
			array( 'status' => 404 )
		);

		if ( (int) $id <= 0 ) {
			return $error;
		}

		$id      = (int) $id;
		$comment = get_comment( $id );
		if ( empty( $comment ) ) {
			return $error;
		}

		if ( ! empty( $comment->comment_post_ID ) ) {
			$post = get_post( (int) $comment->comment_post_ID );

			if ( empty( $post ) ) {
				return new WP_Error(
					'rest_post_invalid_id',
					__( 'Invalid post ID.' ),
					array( 'status' => 404 )
				);
			}
		}

		return $comment;
	}

	/**
	 * Checks if a given request has access to read the comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		// Re-map edit context capabilities when requesting `note` type.
		$edit_cap = 'note' === $comment->comment_type ? array( 'edit_comment', $comment->comment_ID ) : array( 'moderate_comments' );
		if ( ! empty( $request['context'] ) && 'edit' === $request['context'] && ! current_user_can( ...$edit_cap ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit comments.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$post = get_post( $comment->comment_post_ID );

		if ( ! $this->check_read_permission( $comment, $request ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to read this comment.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( $post && ! $this->check_read_post_permission( $post, $request ) ) {
			return new WP_Error(
				'rest_cannot_read_post',
				__( 'Sorry, you are not allowed to read the post for this comment.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or error object on failure.
	 */
	public function get_item( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		$data     = $this->prepare_item_for_response( $comment, $request );
		$response = rest_ensure_response( $data );

		return $response;
	}

	/**
	 * Checks if a given request has access to create a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		$is_note = ! empty( $request['type'] ) && 'note' === $request['type'];

		if ( ! is_user_logged_in() && $is_note ) {
			return new WP_Error(
				'rest_comment_login_required',
				__( 'Sorry, you must be logged in to comment.' ),
				array( 'status' => 401 )
			);
		}

		if ( ! is_user_logged_in() ) {
			if ( get_option( 'comment_registration' ) ) {
				return new WP_Error(
					'rest_comment_login_required',
					__( 'Sorry, you must be logged in to comment.' ),
					array( 'status' => 401 )
				);
			}

			/**
			 * Filters whether comments can be created via the REST API without authentication.
			 *
			 * Enables creating comments for anonymous users.
			 *
			 * @since 4.7.0
			 *
			 * @param bool $allow_anonymous Whether to allow anonymous comments to
			 *                              be created. Default `false`.
			 * @param WP_REST_Request $request Request used to generate the
			 *                                 response.
			 */
			$allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request );

			if ( ! $allow_anonymous ) {
				return new WP_Error(
					'rest_comment_login_required',
					__( 'Sorry, you must be logged in to comment.' ),
					array( 'status' => 401 )
				);
			}
		}

		// Limit who can set comment `author`, `author_ip` or `status` to anything other than the default.
		if ( isset( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( 'moderate_comments' ) ) {
			return new WP_Error(
				'rest_comment_invalid_author',
				/* translators: %s: Request parameter. */
				sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'author' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( isset( $request['author_ip'] ) && ! current_user_can( 'moderate_comments' ) ) {
			if ( empty( $_SERVER['REMOTE_ADDR'] ) || $request['author_ip'] !== $_SERVER['REMOTE_ADDR'] ) {
				return new WP_Error(
					'rest_comment_invalid_author_ip',
					/* translators: %s: Request parameter. */
					sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'author_ip' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}
		}

		if ( $is_note && ! empty( $request['post'] ) && ! current_user_can( 'edit_post', (int) $request['post'] ) ) {
			return new WP_Error(
				'rest_cannot_create_note',
				__( 'Sorry, you are not allowed to create notes for this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$edit_cap = $is_note ? array( 'edit_post', (int) $request['post'] ) : array( 'moderate_comments' );
		if ( isset( $request['status'] ) && ! current_user_can( ...$edit_cap ) ) {
			return new WP_Error(
				'rest_comment_invalid_status',
				/* translators: %s: Request parameter. */
				sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'status' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( empty( $request['post'] ) ) {
			return new WP_Error(
				'rest_comment_invalid_post_id',
				__( 'Sorry, you are not allowed to create this comment without a post.' ),
				array( 'status' => 403 )
			);
		}

		$post = get_post( (int) $request['post'] );

		if ( ! $post ) {
			return new WP_Error(
				'rest_comment_invalid_post_id',
				__( 'Sorry, you are not allowed to create this comment without a post.' ),
				array( 'status' => 403 )
			);
		}

		if ( $is_note && ! $this->check_post_type_supports_notes( $post->post_type ) ) {
			return new WP_Error(
				'rest_comment_not_supported_post_type',
				__( 'Sorry, this post type does not support notes.' ),
				array( 'status' => 403 )
			);
		}

		if ( 'draft' === $post->post_status && ! $is_note ) {
			return new WP_Error(
				'rest_comment_draft_post',
				__( 'Sorry, you are not allowed to create a comment on this post.' ),
				array( 'status' => 403 )
			);
		}

		if ( 'trash' === $post->post_status ) {
			return new WP_Error(
				'rest_comment_trash_post',
				__( 'Sorry, you are not allowed to create a comment on this post.' ),
				array( 'status' => 403 )
			);
		}

		if ( ! $this->check_read_post_permission( $post, $request ) ) {
			return new WP_Error(
				'rest_cannot_read_post',
				__( 'Sorry, you are not allowed to read the post for this comment.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! comments_open( $post->ID ) && ! $is_note ) {
			return new WP_Error(
				'rest_comment_closed',
				__( 'Sorry, comments are closed for this item.' ),
				array( 'status' => 403 )
			);
		}

		return true;
	}

	/**
	 * Creates a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or error object on failure.
	 */
	public function create_item( $request ) {
		if ( ! empty( $request['id'] ) ) {
			return new WP_Error(
				'rest_comment_exists',
				__( 'Cannot create existing comment.' ),
				array( 'status' => 400 )
			);
		}

		// Do not allow comments to be created with a non-core type.
		if ( ! empty( $request['type'] ) && ! in_array( $request['type'], array( 'comment', 'note' ), true ) ) {
			return new WP_Error(
				'rest_invalid_comment_type',
				__( 'Cannot create a comment with that type.' ),
				array( 'status' => 400 )
			);
		}

		$prepared_comment = $this->prepare_item_for_database( $request );
		if ( is_wp_error( $prepared_comment ) ) {
			return $prepared_comment;
		}

		$prepared_comment['comment_type'] = $request['type'];

		if ( ! isset( $prepared_comment['comment_content'] ) ) {
			$prepared_comment['comment_content'] = '';
		}

		// Include note metadata into check_is_comment_content_allowed.
		if ( isset( $request['meta']['_wp_note_status'] ) ) {
			$prepared_comment['meta']['_wp_note_status'] = $request['meta']['_wp_note_status'];
		}

		if ( ! $this->check_is_comment_content_allowed( $prepared_comment ) ) {
			return new WP_Error(
				'rest_comment_content_invalid',
				__( 'Invalid comment content.' ),
				array( 'status' => 400 )
			);
		}

		// Setting remaining values before wp_insert_comment so we can use wp_allow_comment().
		if ( ! isset( $prepared_comment['comment_date_gmt'] ) ) {
			$prepared_comment['comment_date_gmt'] = current_time( 'mysql', true );
		}

		// Set author data if the user's logged in.
		$missing_author = empty( $prepared_comment['user_id'] )
			&& empty( $prepared_comment['comment_author'] )
			&& empty( $prepared_comment['comment_author_email'] )
			&& empty( $prepared_comment['comment_author_url'] );

		if ( is_user_logged_in() && $missing_author ) {
			$user = wp_get_current_user();

			$prepared_comment['user_id']              = $user->ID;
			$prepared_comment['comment_author']       = $user->display_name;
			$prepared_comment['comment_author_email'] = $user->user_email;
			$prepared_comment['comment_author_url']   = $user->user_url;
		}

		// Honor the discussion setting that requires a name and email address of the comment author.
		if ( get_option( 'require_name_email' ) ) {
			if ( empty( $prepared_comment['comment_author'] ) || empty( $prepared_comment['comment_author_email'] ) ) {
				return new WP_Error(
					'rest_comment_author_data_required',
					__( 'Creating a comment requires valid author name and email values.' ),
					array( 'status' => 400 )
				);
			}
		}

		if ( ! isset( $prepared_comment['comment_author_email'] ) ) {
			$prepared_comment['comment_author_email'] = '';
		}

		if ( ! isset( $prepared_comment['comment_author_url'] ) ) {
			$prepared_comment['comment_author_url'] = '';
		}

		if ( ! isset( $prepared_comment['comment_agent'] ) ) {
			$prepared_comment['comment_agent'] = '';
		}

		$check_comment_lengths = wp_check_comment_data_max_lengths( $prepared_comment );

		if ( is_wp_error( $check_comment_lengths ) ) {
			$error_code = $check_comment_lengths->get_error_code();
			return new WP_Error(
				$error_code,
				__( 'Comment field exceeds maximum length allowed.' ),
				array( 'status' => 400 )
			);
		}

		// Don't check for duplicates or flooding for notes.
		$prepared_comment['comment_approved'] =
			'note' === $prepared_comment['comment_type'] ?
			'1' :
			wp_allow_comment( $prepared_comment, true );

		if ( is_wp_error( $prepared_comment['comment_approved'] ) ) {
			$error_code    = $prepared_comment['comment_approved']->get_error_code();
			$error_message = $prepared_comment['comment_approved']->get_error_message();

			if ( 'comment_duplicate' === $error_code ) {
				return new WP_Error(
					$error_code,
					$error_message,
					array( 'status' => 409 )
				);
			}

			if ( 'comment_flood' === $error_code ) {
				return new WP_Error(
					$error_code,
					$error_message,
					array( 'status' => 400 )
				);
			}

			return $prepared_comment['comment_approved'];
		}

		/**
		 * Filters a comment before it is inserted via the REST API.
		 *
		 * Allows modification of the comment right before it is inserted via wp_insert_comment().
		 * Returning a WP_Error value from the filter will short-circuit insertion and allow
		 * skipping further processing.
		 *
		 * @since 4.7.0
		 * @since 4.8.0 `$prepared_comment` can now be a WP_Error to short-circuit insertion.
		 *
		 * @param array|WP_Error  $prepared_comment The prepared comment data for wp_insert_comment().
		 * @param WP_REST_Request $request          Request used to insert the comment.
		 */
		$prepared_comment = apply_filters( 'rest_pre_insert_comment', $prepared_comment, $request );
		if ( is_wp_error( $prepared_comment ) ) {
			return $prepared_comment;
		}

		$comment_id = wp_insert_comment( wp_filter_comment( wp_slash( (array) $prepared_comment ) ) );

		if ( ! $comment_id ) {
			return new WP_Error(
				'rest_comment_failed_create',
				__( 'Creating comment failed.' ),
				array( 'status' => 500 )
			);
		}

		if ( isset( $request['status'] ) ) {
			$this->handle_status_param( $request['status'], $comment_id );
		}

		$comment = get_comment( $comment_id );

		/**
		 * Fires after a comment is created or updated via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Comment      $comment  Inserted or updated comment object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a comment, false
		 *                                  when updating.
		 */
		do_action( 'rest_insert_comment', $comment, $request, true );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $comment_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$fields_update = $this->update_additional_fields_for_object( $comment, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$context = current_user_can( 'moderate_comments' ) ? 'edit' : 'view';
		$request->set_param( 'context', $context );

		/**
		 * Fires completely after a comment is created or updated via the REST API.
		 *
		 * @since 5.0.0
		 *
		 * @param WP_Comment      $comment  Inserted or updated comment object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a comment, false
		 *                                  when updating.
		 */
		do_action( 'rest_after_insert_comment', $comment, $request, true );

		$response = $this->prepare_item_for_response( $comment, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment_id ) ) );

		return $response;
	}

	/**
	 * Checks if a given REST request has access to update a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		if ( ! $this->check_edit_permission( $comment ) ) {
			return new WP_Error(
				'rest_cannot_edit',
				__( 'Sorry, you are not allowed to edit this comment.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Updates a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or error object on failure.
	 */
	public function update_item( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		$id = $comment->comment_ID;

		if ( isset( $request['type'] ) && get_comment_type( $id ) !== $request['type'] ) {
			return new WP_Error(
				'rest_comment_invalid_type',
				__( 'Sorry, you are not allowed to change the comment type.' ),
				array( 'status' => 404 )
			);
		}

		$prepared_args = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared_args ) ) {
			return $prepared_args;
		}

		if ( ! empty( $prepared_args['comment_post_ID'] ) ) {
			$post = get_post( $prepared_args['comment_post_ID'] );

			if ( empty( $post ) ) {
				return new WP_Error(
					'rest_comment_invalid_post_id',
					__( 'Invalid post ID.' ),
					array( 'status' => 403 )
				);
			}
		}

		if ( empty( $prepared_args ) && isset( $request['status'] ) ) {
			// Only the comment status is being changed.
			$change = $this->handle_status_param( $request['status'], $id );

			if ( ! $change ) {
				return new WP_Error(
					'rest_comment_failed_edit',
					__( 'Updating comment status failed.' ),
					array( 'status' => 500 )
				);
			}
		} elseif ( ! empty( $prepared_args ) ) {
			if ( is_wp_error( $prepared_args ) ) {
				return $prepared_args;
			}
			if ( ! $this->check_is_comment_content_allowed( $prepared_args ) ) {
				return new WP_Error(
					'rest_comment_content_invalid',
					__( 'Invalid comment content.' ),
					array( 'status' => 400 )
				);
			}

			$prepared_args['comment_ID'] = $id;

			$check_comment_lengths = wp_check_comment_data_max_lengths( $prepared_args );

			if ( is_wp_error( $check_comment_lengths ) ) {
				$error_code = $check_comment_lengths->get_error_code();
				return new WP_Error(
					$error_code,
					__( 'Comment field exceeds maximum length allowed.' ),
					array( 'status' => 400 )
				);
			}

			$updated = wp_update_comment( wp_slash( (array) $prepared_args ), true );

			if ( is_wp_error( $updated ) ) {
				return new WP_Error(
					'rest_comment_failed_edit',
					__( 'Updating comment failed.' ),
					array( 'status' => 500 )
				);
			}

			if ( isset( $request['status'] ) ) {
				$this->handle_status_param( $request['status'], $id );
			}
		}

		$comment = get_comment( $id );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */
		do_action( 'rest_insert_comment', $comment, $request, false );

		$schema = $this->get_item_schema();

		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$fields_update = $this->update_additional_fields_for_object( $comment, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */
		do_action( 'rest_after_insert_comment', $comment, $request, false );

		$response = $this->prepare_item_for_response( $comment, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a given request has access to delete a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		if ( ! $this->check_edit_permission( $comment ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete this comment.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Deletes a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or error object on failure.
	 */
	public function delete_item( $request ) {
		$comment = $this->get_comment( $request['id'] );
		if ( is_wp_error( $comment ) ) {
			return $comment;
		}

		$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

		/**
		 * Filters whether a comment can be trashed via the REST API.
		 *
		 * Return false to disable trash support for the comment.
		 *
		 * @since 4.7.0
		 *
		 * @param bool       $supports_trash Whether the comment supports trashing.
		 * @param WP_Comment $comment        The comment object being considered for trashing support.
		 */
		$supports_trash = apply_filters( 'rest_comment_trashable', ( EMPTY_TRASH_DAYS > 0 ), $comment );

		$request->set_param( 'context', 'edit' );

		if ( $force ) {
			$previous = $this->prepare_item_for_response( $comment, $request );
			$result   = wp_delete_comment( $comment->comment_ID, true );
			$response = new WP_REST_Response();
			$response->set_data(
				array(
					'deleted'  => true,
					'previous' => $previous->get_data(),
				)
			);
		} else {
			// If this type doesn't support trashing, error out.
			if ( ! $supports_trash ) {
				return new WP_Error(
					'rest_trash_not_supported',
					/* translators: %s: force=true */
					sprintf( __( "The comment does not support trashing. Set '%s' to delete." ), 'force=true' ),
					array( 'status' => 501 )
				);
			}

			if ( 'trash' === $comment->comment_approved ) {
				return new WP_Error(
					'rest_already_trashed',
					__( 'The comment has already been trashed.' ),
					array( 'status' => 410 )
				);
			}

			$result   = wp_trash_comment( $comment->comment_ID );
			$comment  = get_comment( $comment->comment_ID );
			$response = $this->prepare_item_for_response( $comment, $request );
		}

		if ( ! $result ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The comment cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		/**
		 * Fires after a comment is deleted via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Comment       $comment  The deleted comment data.
		 * @param WP_REST_Response $response The response returned from the API.
		 * @param WP_REST_Request  $request  The request sent to the API.
		 */
		do_action( 'rest_delete_comment', $comment, $response, $request );

		return $response;
	}

	/**
	 * Prepares a single comment output for response.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_Comment      $item    Comment object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$comment = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */
			return apply_filters( 'rest_prepare_comment', new WP_REST_Response( array() ), $comment, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'id', $fields, true ) ) {
			$data['id'] = (int) $comment->comment_ID;
		}

		if ( in_array( 'post', $fields, true ) ) {
			$data['post'] = (int) $comment->comment_post_ID;
		}

		if ( in_array( 'parent', $fields, true ) ) {
			$data['parent'] = (int) $comment->comment_parent;
		}

		if ( in_array( 'author', $fields, true ) ) {
			$data['author'] = (int) $comment->user_id;
		}

		if ( in_array( 'author_name', $fields, true ) ) {
			$data['author_name'] = $comment->comment_author;
		}

		if ( in_array( 'author_email', $fields, true ) ) {
			$data['author_email'] = $comment->comment_author_email;
		}

		if ( in_array( 'author_url', $fields, true ) ) {
			$data['author_url'] = $comment->comment_author_url;
		}

		if ( in_array( 'author_ip', $fields, true ) ) {
			$data['author_ip'] = $comment->comment_author_IP;
		}

		if ( in_array( 'author_user_agent', $fields, true ) ) {
			$data['author_user_agent'] = $comment->comment_agent;
		}

		if ( in_array( 'date', $fields, true ) ) {
			$data['date'] = mysql_to_rfc3339( $comment->comment_date );
		}

		if ( in_array( 'date_gmt', $fields, true ) ) {
			$data['date_gmt'] = mysql_to_rfc3339( $comment->comment_date_gmt );
		}

		if ( in_array( 'content', $fields, true ) ) {
			$data['content'] = array(
				/** This filter is documented in wp-includes/comment-template.php */
				'rendered' => apply_filters( 'comment_text', $comment->comment_content, $comment, array() ),
				'raw'      => $comment->comment_content,
			);
		}

		if ( in_array( 'link', $fields, true ) ) {
			$data['link'] = get_comment_link( $comment );
		}

		if ( in_array( 'status', $fields, true ) ) {
			$data['status'] = $this->prepare_status_response( $comment->comment_approved );
		}

		if ( in_array( 'type', $fields, true ) ) {
			$data['type'] = get_comment_type( $comment->comment_ID );
		}

		if ( in_array( 'author_avatar_urls', $fields, true ) ) {
			$data['author_avatar_urls'] = rest_get_avatar_urls( $comment );
		}

		if ( in_array( 'meta', $fields, true ) ) {
			$data['meta'] = $this->meta->get_value( $comment->comment_ID, $request );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $comment ) );
		}

		/**
		 * Filters a comment returned from the REST API.
		 *
		 * Allows modification of the comment right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response  $response The response object.
		 * @param WP_Comment        $comment  The original comment object.
		 * @param WP_REST_Request   $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_comment', $response, $comment, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Comment $comment Comment object.
	 * @return array Links for the given comment.
	 */
	protected function prepare_links( $comment ) {
		$links = array(
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment->comment_ID ) ),
			),
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
		);

		if ( 0 !== (int) $comment->user_id ) {
			$links['author'] = array(
				'href'       => rest_url( 'wp/v2/users/' . $comment->user_id ),
				'embeddable' => true,
			);
		}

		if ( 0 !== (int) $comment->comment_post_ID ) {
			$post       = get_post( $comment->comment_post_ID );
			$post_route = rest_get_route_for_post( $post );

			if ( ! empty( $post->ID ) && $post_route ) {
				$links['up'] = array(
					'href'       => rest_url( $post_route ),
					'embeddable' => true,
					'post_type'  => $post->post_type,
				);
			}
		}

		if ( 0 !== (int) $comment->comment_parent ) {
			$links['in-reply-to'] = array(
				'href'       => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment->comment_parent ) ),
				'embeddable' => true,
			);
		}

		// Only grab one comment to verify the comment has children.
		$comment_children = $comment->get_children(
			array(
				'count'   => true,
				'orderby' => 'none',
				'type'    => 'all',
			)
		);

		if ( ! empty( $comment_children ) ) {
			$args = array(
				'parent' => $comment->comment_ID,
			);

			$rest_url = add_query_arg( $args, rest_url( $this->namespace . '/' . $this->rest_base ) );

			$links['children'] = array(
				'href'       => $rest_url,
				'embeddable' => true,
			);
		}

		// Embedding children for notes requires `type` and `status` inheritance.
		if ( isset( $links['children'] ) && 'note' === $comment->comment_type ) {
			$args = array(
				'parent' => $comment->comment_ID,
				'type'   => $comment->comment_type,
				'status' => 'all',
			);

			$rest_url = add_query_arg( $args, rest_url( $this->namespace . '/' . $this->rest_base ) );

			$links['children'] = array(
				'href'       => $rest_url,
				'embeddable' => true,
			);
		}

		return $links;
	}

	/**
	 * Prepends internal property prefix to query parameters to match our response fields.
	 *
	 * @since 4.7.0
	 *
	 * @param string $query_param Query parameter.
	 * @return string The normalized query parameter.
	 */
	protected function normalize_query_param( $query_param ) {
		$prefix = 'comment_';

		switch ( $query_param ) {
			case 'id':
				$normalized = $prefix . 'ID';
				break;
			case 'post':
				$normalized = $prefix . 'post_ID';
				break;
			case 'parent':
				$normalized = $prefix . 'parent';
				break;
			case 'include':
				$normalized = 'comment__in';
				break;
			default:
				$normalized = $prefix . $query_param;
				break;
		}

		return $normalized;
	}

	/**
	 * Checks comment_approved to set comment status for single comment output.
	 *
	 * @since 4.7.0
	 *
	 * @param string $comment_approved Comment status.
	 * @return string Comment status.
	 */
	protected function prepare_status_response( $comment_approved ) {

		switch ( $comment_approved ) {
			case 'hold':
			case '0':
				$status = 'hold';
				break;

			case 'approve':
			case '1':
				$status = 'approved';
				break;

			case 'spam':
			case 'trash':
			default:
				$status = $comment_approved;
				break;
		}

		return $status;
	}

	/**
	 * Prepares a single comment to be inserted into the database.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return array|WP_Error Prepared comment, otherwise WP_Error object.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_comment = array();

		/*
		 * Allow the comment_content to be set via the 'content' or
		 * the 'content.raw' properties of the Request object.
		 */
		if ( isset( $request['content'] ) && is_string( $request['content'] ) ) {
			$prepared_comment['comment_content'] = trim( $request['content'] );
		} elseif ( isset( $request['content']['raw'] ) && is_string( $request['content']['raw'] ) ) {
			$prepared_comment['comment_content'] = trim( $request['content']['raw'] );
		}

		if ( isset( $request['post'] ) ) {
			$prepared_comment['comment_post_ID'] = (int) $request['post'];
		}

		if ( isset( $request['parent'] ) ) {
			$prepared_comment['comment_parent'] = $request['parent'];
		}

		if ( isset( $request['author'] ) ) {
			$user = new WP_User( $request['author'] );

			if ( $user->exists() ) {
				$prepared_comment['user_id']              = $user->ID;
				$prepared_comment['comment_author']       = $user->display_name;
				$prepared_comment['comment_author_email'] = $user->user_email;
				$prepared_comment['comment_author_url']   = $user->user_url;
			} else {
				return new WP_Error(
					'rest_comment_author_invalid',
					__( 'Invalid comment author ID.' ),
					array( 'status' => 400 )
				);
			}
		}

		if ( isset( $request['author_name'] ) ) {
			$prepared_comment['comment_author'] = $request['author_name'];
		}

		if ( isset( $request['author_email'] ) ) {
			$prepared_comment['comment_author_email'] = $request['author_email'];
		}

		if ( isset( $request['author_url'] ) ) {
			$prepared_comment['comment_author_url'] = $request['author_url'];
		}

		if ( isset( $request['author_ip'] ) && current_user_can( 'moderate_comments' ) ) {
			$prepared_comment['comment_author_IP'] = $request['author_ip'];
		} elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) && rest_is_ip_address( $_SERVER['REMOTE_ADDR'] ) ) {
			$prepared_comment['comment_author_IP'] = $_SERVER['REMOTE_ADDR'];
		} else {
			$prepared_comment['comment_author_IP'] = '127.0.0.1';
		}

		if ( ! empty( $request['author_user_agent'] ) ) {
			$prepared_comment['comment_agent'] = $request['author_user_agent'];
		} elseif ( $request->get_header( 'user_agent' ) ) {
			$prepared_comment['comment_agent'] = $request->get_header( 'user_agent' );
		}

		if ( ! empty( $request['date'] ) ) {
			$date_data = rest_get_date_with_gmt( $request['date'] );

			if ( ! empty( $date_data ) ) {
				list( $prepared_comment['comment_date'], $prepared_comment['comment_date_gmt'] ) = $date_data;
			}
		} elseif ( ! empty( $request['date_gmt'] ) ) {
			$date_data = rest_get_date_with_gmt( $request['date_gmt'], true );

			if ( ! empty( $date_data ) ) {
				list( $prepared_comment['comment_date'], $prepared_comment['comment_date_gmt'] ) = $date_data;
			}
		}

		/**
		 * Filters a comment added via the REST API after it is prepared for insertion into the database.
		 *
		 * Allows modification of the comment right after it is prepared for the database.
		 *
		 * @since 4.7.0
		 *
		 * @param array           $prepared_comment The prepared comment data for `wp_insert_comment`.
		 * @param WP_REST_Request $request          The current request.
		 */
		return apply_filters( 'rest_preprocess_comment', $prepared_comment, $request );
	}

	/**
	 * Retrieves the comment's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'comment',
			'type'       => 'object',
			'properties' => array(
				'id'                => array(
					'description' => __( 'Unique identifier for the comment.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'author'            => array(
					'description' => __( 'The ID of the user object, if author was a user.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'author_email'      => array(
					'description' => __( 'Email address for the comment author.' ),
					'type'        => 'string',
					'format'      => 'email',
					'context'     => array( 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'check_comment_author_email' ),
						'validate_callback' => null, // Skip built-in validation of 'email'.
					),
				),
				'author_ip'         => array(
					'description' => __( 'IP address for the comment author.' ),
					'type'        => 'string',
					'format'      => 'ip',
					'context'     => array( 'edit' ),
				),
				'author_name'       => array(
					'description' => __( 'Display name for the comment author.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'author_url'        => array(
					'description' => __( 'URL for the comment author.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'author_user_agent' => array(
					'description' => __( 'User agent for the comment author.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
				),
				'content'           => array(
					'description' => __( 'The content for the comment.' ),
					'type'        => 'object',
					'context'     => array( 'view', 'edit', 'embed' ),
					'arg_options' => array(
						'sanitize_callback' => null, // Note: sanitization implemented in self::prepare_item_for_database().
						'validate_callback' => null, // Note: validation implemented in self::prepare_item_for_database().
					),
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'Content for the comment, as it exists in the database.' ),
							'type'        => 'string',
							'context'     => array( 'edit' ),
						),
						'rendered' => array(
							'description' => __( 'HTML content for the comment, transformed for display.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit', 'embed' ),
							'readonly'    => true,
						),
					),
				),
				'date'              => array(
					'description' => __( "The date the comment was published, in the site's timezone." ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'date_gmt'          => array(
					'description' => __( 'The date the comment was published, as GMT.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
				),
				'link'              => array(
					'description' => __( 'URL to the comment.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'parent'            => array(
					'description' => __( 'The ID for the parent of the comment.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'default'     => 0,
				),
				'post'              => array(
					'description' => __( 'The ID of the associated post object.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit' ),
					'default'     => 0,
				),
				'status'            => array(
					'description' => __( 'State of the comment.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_key',
					),
				),
				'type'              => array(
					'description' => __( 'Type of the comment.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
					'default'     => 'comment',
				),
			),
		);

		if ( get_option( 'show_avatars' ) ) {
			$avatar_properties = array();

			$avatar_sizes = rest_get_avatar_sizes();

			foreach ( $avatar_sizes as $size ) {
				$avatar_properties[ $size ] = array(
					/* translators: %d: Avatar image size in pixels. */
					'description' => sprintf( __( 'Avatar URL with image size of %d pixels.' ), $size ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'embed', 'view', 'edit' ),
				);
			}

			$schema['properties']['author_avatar_urls'] = array(
				'description' => __( 'Avatar URLs for the comment author.' ),
				'type'        => 'object',
				'context'     => array( 'view', 'edit', 'embed' ),
				'readonly'    => true,
				'properties'  => $avatar_properties,
			);
		}

		$schema['properties']['meta'] = $this->meta->get_field_schema();

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Comments collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params['after'] = array(
			'description' => __( 'Limit response to comments published after a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		$query_params['author'] = array(
			'description' => __( 'Limit result set to comments assigned to specific user IDs. Requires authorization.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
		);

		$query_params['author_exclude'] = array(
			'description' => __( 'Ensure result set excludes comments assigned to specific user IDs. Requires authorization.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
		);

		$query_params['author_email'] = array(
			'default'     => null,
			'description' => __( 'Limit result set to that from a specific author email. Requires authorization.' ),
			'format'      => 'email',
			'type'        => 'string',
		);

		$query_params['before'] = array(
			'description' => __( 'Limit response to comments published before a given ISO8601 compliant date.' ),
			'type'        => 'string',
			'format'      => 'date-time',
		);

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['offset'] = array(
			'description' => __( 'Offset the result set by a specific number of items.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'desc',
			'enum'        => array(
				'asc',
				'desc',
			),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by comment attribute.' ),
			'type'        => 'string',
			'default'     => 'date_gmt',
			'enum'        => array(
				'date',
				'date_gmt',
				'id',
				'include',
				'post',
				'parent',
				'type',
			),
		);

		$query_params['parent'] = array(
			'default'     => array(),
			'description' => __( 'Limit result set to comments of specific parent IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
		);

		$query_params['parent_exclude'] = array(
			'default'     => array(),
			'description' => __( 'Ensure result set excludes specific parent IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
		);

		$query_params['post'] = array(
			'default'     => array(),
			'description' => __( 'Limit result set to comments assigned to specific post IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
		);

		$query_params['status'] = array(
			'default'           => 'approve',
			'description'       => __( 'Limit result set to comments assigned a specific status. Requires authorization.' ),
			'sanitize_callback' => 'sanitize_key',
			'type'              => 'string',
			'validate_callback' => 'rest_validate_request_arg',
		);

		$query_params['type'] = array(
			'default'           => 'comment',
			'description'       => __( 'Limit result set to comments assigned a specific type. Requires authorization.' ),
			'sanitize_callback' => 'sanitize_key',
			'type'              => 'string',
			'validate_callback' => 'rest_validate_request_arg',
		);

		$query_params['password'] = array(
			'description' => __( 'The password for the post if it is password protected.' ),
			'type'        => 'string',
		);

		/**
		 * Filters REST API collection parameters for the comments controller.
		 *
		 * This filter registers the collection parameter, but does not map the
		 * collection parameter to an internal WP_Comment_Query parameter. Use the
		 * `rest_comment_query` filter to set WP_Comment_Query parameters.
		 *
		 * @since 4.7.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_comment_collection_params', $query_params );
	}

	/**
	 * Sets the comment_status of a given comment object when creating or updating a comment.
	 *
	 * @since 4.7.0
	 *
	 * @param string|int $new_status New comment status.
	 * @param int        $comment_id Comment ID.
	 * @return bool Whether the status was changed.
	 */
	protected function handle_status_param( $new_status, $comment_id ) {
		$old_status = wp_get_comment_status( $comment_id );

		if ( $new_status === $old_status ) {
			return false;
		}

		switch ( $new_status ) {
			case 'approved':
			case 'approve':
			case '1':
				$changed = wp_set_comment_status( $comment_id, 'approve' );
				break;
			case 'hold':
			case '0':
				$changed = wp_set_comment_status( $comment_id, 'hold' );
				break;
			case 'spam':
				$changed = wp_spam_comment( $comment_id );
				break;
			case 'unspam':
				$changed = wp_unspam_comment( $comment_id );
				break;
			case 'trash':
				$changed = wp_trash_comment( $comment_id );
				break;
			case 'untrash':
				$changed = wp_untrash_comment( $comment_id );
				break;
			default:
				$changed = false;
				break;
		}

		return $changed;
	}

	/**
	 * Checks if the post can be read.
	 *
	 * Correctly handles posts with the inherit status.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Post         $post    Post object.
	 * @param WP_REST_Request $request Request data to check.
	 * @return bool Whether post can be read.
	 */
	protected function check_read_post_permission( $post, $request ) {
		$post_type = get_post_type_object( $post->post_type );

		// Return false if custom post type doesn't exist
		if ( ! $post_type ) {
			return false;
		}

		$posts_controller = $post_type->get_rest_controller();

		/*
		 * Ensure the posts controller is specifically a WP_REST_Posts_Controller instance
		 * before using methods specific to that controller.
		 */
		if ( ! $posts_controller instanceof WP_REST_Posts_Controller ) {
			$posts_controller = new WP_REST_Posts_Controller( $post->post_type );
		}

		$has_password_filter = false;

		// Only check password if a specific post was queried for or a single comment
		$requested_post    = ! empty( $request['post'] ) && ( ! is_array( $request['post'] ) || 1 === count( $request['post'] ) );
		$requested_comment = ! empty( $request['id'] );
		if ( ( $requested_post || $requested_comment ) && $posts_controller->can_access_password_content( $post, $request ) ) {
			add_filter( 'post_password_required', '__return_false' );

			$has_password_filter = true;
		}

		if ( post_password_required( $post ) ) {
			$result = current_user_can( 'edit_post', $post->ID );
		} else {
			$result = $posts_controller->check_read_permission( $post );
		}

		if ( $has_password_filter ) {
			remove_filter( 'post_password_required', '__return_false' );
		}

		return $result;
	}

	/**
	 * Checks if the comment can be read.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Comment      $comment Comment object.
	 * @param WP_REST_Request $request Request data to check.
	 * @return bool Whether the comment can be read.
	 */
	protected function check_read_permission( $comment, $request ) {
		if ( 'note' !== $comment->comment_type && ! empty( $comment->comment_post_ID ) ) {
			$post = get_post( $comment->comment_post_ID );
			if ( $post ) {
				if ( $this->check_read_post_permission( $post, $request ) && 1 === (int) $comment->comment_approved ) {
					return true;
				}
			}
		}

		if ( 0 === get_current_user_id() ) {
			return false;
		}

		if ( empty( $comment->comment_post_ID ) && ! current_user_can( 'moderate_comments' ) ) {
			return false;
		}

		if ( ! empty( $comment->user_id ) && get_current_user_id() === (int) $comment->user_id ) {
			return true;
		}

		return current_user_can( 'edit_comment', $comment->comment_ID );
	}

	/**
	 * Checks if a comment can be edited or deleted.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Comment $comment Comment object.
	 * @return bool Whether the comment can be edited or deleted.
	 */
	protected function check_edit_permission( $comment ) {
		if ( 0 === (int) get_current_user_id() ) {
			return false;
		}

		if ( current_user_can( 'moderate_comments' ) ) {
			return true;
		}

		return current_user_can( 'edit_comment', $comment->comment_ID );
	}

	/**
	 * Checks a comment author email for validity.
	 *
	 * Accepts either a valid email address or empty string as a valid comment
	 * author email address. Setting the comment author email to an empty
	 * string is allowed when a comment is being updated.
	 *
	 * @since 4.7.0
	 *
	 * @param string          $value   Author email value submitted.
	 * @param WP_REST_Request $request Full details about the request.
	 * @param string          $param   The parameter name.
	 * @return string|WP_Error The sanitized email address, if valid,
	 *                         otherwise an error.
	 */
	public function check_comment_author_email( $value, $request, $param ) {
		$email = (string) $value;
		if ( empty( $email ) ) {
			return $email;
		}

		$check_email = rest_validate_request_arg( $email, $request, $param );
		if ( is_wp_error( $check_email ) ) {
			return $check_email;
		}

		return $email;
	}

	/**
	 * If empty comments are not allowed, checks if the provided comment content is not empty.
	 *
	 * @since 5.6.0
	 *
	 * @param array $prepared_comment The prepared comment data.
	 * @return bool True if the content is allowed, false otherwise.
	 */
	protected function check_is_comment_content_allowed( $prepared_comment ) {
		if ( ! isset( $prepared_comment['comment_content'] ) ) {
			return true;
		}

		$check = wp_parse_args(
			$prepared_comment,
			array(
				'comment_post_ID'      => 0,
				'comment_author'       => null,
				'comment_author_email' => null,
				'comment_author_url'   => null,
				'comment_parent'       => 0,
				'user_id'              => 0,
			)
		);

		/** This filter is documented in wp-includes/comment.php */
		$allow_empty = apply_filters( 'allow_empty_comment', false, $check );

		if ( $allow_empty ) {
			return true;
		}

		// Allow empty notes only when resolution metadata is valid.
		if (
			isset( $check['comment_type'] ) &&
			'note' === $check['comment_type'] &&
			isset( $check['meta']['_wp_note_status'] ) &&
			in_array( $check['meta']['_wp_note_status'], array( 'resolved', 'reopen' ), true )
		) {
			return true;
		}

		/*
		 * Do not allow a comment to be created with missing or empty
		 * comment_content. See wp_handle_comment_submission().
		 */
		return '' !== $check['comment_content'];
	}

	/**
	 * Check if post type supports notes.
	 *
	 * @param string $post_type Post type name.
	 * @return bool True if post type supports notes, false otherwise.
	 */
	private function check_post_type_supports_notes( $post_type ) {
		$supports = get_all_post_type_supports( $post_type );
		if ( ! isset( $supports['editor'] ) ) {
			return false;
		}
		if ( ! is_array( $supports['editor'] ) ) {
			return false;
		}
		foreach ( $supports['editor'] as $item ) {
			if ( ! empty( $item['notes'] ) ) {
				return true;
			}
		}
		return false;
	}
}
endpoints/class-wp-rest-block-directory-controller.php000064400000023332152222510010017230 0ustar00<?php
/**
 * REST API: WP_REST_Block_Directory_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.5.0
 */

/**
 * Controller which provides REST endpoint for the blocks.
 *
 * @since 5.5.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Block_Directory_Controller extends WP_REST_Controller {

	/**
	 * Constructs the controller.
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'block-directory';
	}

	/**
	 * Registers the necessary REST API routes.
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/search',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to install and activate plugins.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has permission, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( ! current_user_can( 'install_plugins' ) || ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_block_directory_cannot_view',
				__( 'Sorry, you are not allowed to browse the block directory.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Search and retrieve blocks metadata
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$response = plugins_api(
			'query_plugins',
			array(
				'block'    => $request['term'],
				'per_page' => $request['per_page'],
				'page'     => $request['page'],
			)
		);

		if ( is_wp_error( $response ) ) {
			$response->add_data( array( 'status' => 500 ) );

			return $response;
		}

		$result = array();

		foreach ( $response->plugins as $plugin ) {
			// If the API returned a plugin with empty data for 'blocks', skip it.
			if ( empty( $plugin['blocks'] ) ) {
				continue;
			}

			$data     = $this->prepare_item_for_response( $plugin, $request );
			$result[] = $this->prepare_response_for_collection( $data );
		}

		return rest_ensure_response( $result );
	}

	/**
	 * Parse block metadata for a block, and prepare it for an API response.
	 *
	 * @since 5.5.0
	 * @since 5.9.0 Renamed `$plugin` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param array           $item    The plugin metadata.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$plugin = $item;

		$fields = $this->get_fields_for_response( $request );

		// There might be multiple blocks in a plugin. Only the first block is mapped.
		$block_data = reset( $plugin['blocks'] );

		// A data array containing the properties we'll return.
		$block = array(
			'name'                => $block_data['name'],
			'title'               => ( $block_data['title'] ? $block_data['title'] : $plugin['name'] ),
			'description'         => wp_trim_words( $plugin['short_description'], 30, '...' ),
			'id'                  => $plugin['slug'],
			'rating'              => $plugin['rating'] / 20,
			'rating_count'        => (int) $plugin['num_ratings'],
			'active_installs'     => (int) $plugin['active_installs'],
			'author_block_rating' => $plugin['author_block_rating'] / 20,
			'author_block_count'  => (int) $plugin['author_block_count'],
			'author'              => wp_strip_all_tags( $plugin['author'] ),
			'icon'                => ( isset( $plugin['icons']['1x'] ) ? $plugin['icons']['1x'] : 'block-default' ),
			'last_updated'        => gmdate( 'Y-m-d\TH:i:s', strtotime( $plugin['last_updated'] ) ),
			'humanized_updated'   => sprintf(
				/* translators: %s: Human-readable time difference. */
				__( '%s ago' ),
				human_time_diff( strtotime( $plugin['last_updated'] ) )
			),
		);

		$this->add_additional_fields_to_object( $block, $request );

		$response = new WP_REST_Response( $block );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $plugin ) );
		}

		return $response;
	}

	/**
	 * Generates a list of links to include in the response for the plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param array $plugin The plugin data from WordPress.org.
	 * @return array
	 */
	protected function prepare_links( $plugin ) {
		$links = array(
			'https://api.w.org/install-plugin' => array(
				'href' => add_query_arg( 'slug', urlencode( $plugin['slug'] ), rest_url( 'wp/v2/plugins' ) ),
			),
		);

		$plugin_file = $this->find_plugin_for_slug( $plugin['slug'] );

		if ( $plugin_file ) {
			$links['https://api.w.org/plugin'] = array(
				'href'       => rest_url( 'wp/v2/plugins/' . substr( $plugin_file, 0, - 4 ) ),
				'embeddable' => true,
			);
		}

		return $links;
	}

	/**
	 * Finds an installed plugin for the given slug.
	 *
	 * @since 5.5.0
	 *
	 * @param string $slug The WordPress.org directory slug for a plugin.
	 * @return string The plugin file found matching it.
	 */
	protected function find_plugin_for_slug( $slug ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$plugin_files = get_plugins( '/' . $slug );

		if ( ! $plugin_files ) {
			return '';
		}

		$plugin_files = array_keys( $plugin_files );

		return $slug . '/' . reset( $plugin_files );
	}

	/**
	 * Retrieves the theme's schema, conforming to JSON Schema.
	 *
	 * @since 5.5.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'block-directory-item',
			'type'       => 'object',
			'properties' => array(
				'name'                => array(
					'description' => __( 'The block name, in namespace/block-name format.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
				'title'               => array(
					'description' => __( 'The block title, in human readable format.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
				'description'         => array(
					'description' => __( 'A short description of the block, in human readable format.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
				'id'                  => array(
					'description' => __( 'The block slug.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
				'rating'              => array(
					'description' => __( 'The star rating of the block.' ),
					'type'        => 'number',
					'context'     => array( 'view' ),
				),
				'rating_count'        => array(
					'description' => __( 'The number of ratings.' ),
					'type'        => 'integer',
					'context'     => array( 'view' ),
				),
				'active_installs'     => array(
					'description' => __( 'The number sites that have activated this block.' ),
					'type'        => 'integer',
					'context'     => array( 'view' ),
				),
				'author_block_rating' => array(
					'description' => __( 'The average rating of blocks published by the same author.' ),
					'type'        => 'number',
					'context'     => array( 'view' ),
				),
				'author_block_count'  => array(
					'description' => __( 'The number of blocks published by the same author.' ),
					'type'        => 'integer',
					'context'     => array( 'view' ),
				),
				'author'              => array(
					'description' => __( 'The WordPress.org username of the block author.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
				'icon'                => array(
					'description' => __( 'The block icon.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view' ),
				),
				'last_updated'        => array(
					'description' => __( 'The date when the block was last updated.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view' ),
				),
				'humanized_updated'   => array(
					'description' => __( 'The date when the block was last updated, in human readable format.' ),
					'type'        => 'string',
					'context'     => array( 'view' ),
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the search params for the blocks collection.
	 *
	 * @since 5.5.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params['term'] = array(
			'description' => __( 'Limit result set to blocks matching the search term.' ),
			'type'        => 'string',
			'required'    => true,
			'minLength'   => 1,
		);

		unset( $query_params['search'] );

		/**
		 * Filters REST API collection parameters for the block directory controller.
		 *
		 * @since 5.5.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_block_directory_collection_params', $query_params );
	}
}
endpoints/class-wp-rest-global-styles-controller.php000064400000051127152222510010016720 0ustar00<?php
/**
 * REST API: WP_REST_Global_Styles_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since 5.9.0
 */

/**
 * Base Global Styles REST API Controller.
 */
class WP_REST_Global_Styles_Controller extends WP_REST_Posts_Controller {
	/**
	 * Whether the controller supports batching.
	 *
	 * @since 6.6.0
	 * @var array
	 */
	protected $allow_batch = array( 'v1' => false );

	/**
	 * Constructor.
	 *
	 * @since 6.6.0
	 *
	 * @param string $post_type Post type.
	 */
	public function __construct( $post_type = 'wp_global_styles' ) {
		parent::__construct( $post_type );
	}

	/**
	 * Registers the controllers routes.
	 *
	 * @since 5.9.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/themes/(?P<stylesheet>[\/\s%\w\.\(\)\[\]\@_\-]+)/variations',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_theme_items' ),
					'permission_callback' => array( $this, 'get_theme_items_permissions_check' ),
					'args'                => array(
						'stylesheet' => array(
							'description' => __( 'The theme identifier' ),
							'type'        => 'string',
						),
					),
					'allow_batch'         => $this->allow_batch,
				),
			)
		);

		// List themes global styles.
		register_rest_route(
			$this->namespace,
			// The route.
			sprintf(
				'/%s/themes/(?P<stylesheet>%s)',
				$this->rest_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'[^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?'
			),
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_theme_item' ),
					'permission_callback' => array( $this, 'get_theme_item_permissions_check' ),
					'args'                => array(
						'stylesheet' => array(
							'description'       => __( 'The theme identifier' ),
							'type'              => 'string',
							'sanitize_callback' => array( $this, '_sanitize_global_styles_callback' ),
						),
					),
					'allow_batch'         => $this->allow_batch,
				),
			)
		);

		// Lists/updates a single global style variation based on the given id.
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\/\d+]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'id' => array(
							'description' => __( 'ID of global styles config.' ),
							'type'        => 'integer',
						),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				'schema'      => array( $this, 'get_public_item_schema' ),
				'allow_batch' => $this->allow_batch,
			)
		);
	}

	/**
	 * Sanitize the global styles stylesheet to decode endpoint.
	 * For example, `wp/v2/global-styles/twentytwentytwo%200.4.0`
	 * would be decoded to `twentytwentytwo 0.4.0`.
	 *
	 * @since 5.9.0
	 *
	 * @param string $stylesheet Global styles stylesheet.
	 * @return string Sanitized global styles stylesheet.
	 */
	public function _sanitize_global_styles_callback( $stylesheet ) {
		return urldecode( $stylesheet );
	}

	/**
	 * Get the post, if the ID is valid.
	 *
	 * @since 5.9.0
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_post( $id ) {
		$error = new WP_Error(
			'rest_global_styles_not_found',
			__( 'No global styles config exists with that ID.' ),
			array( 'status' => 404 )
		);

		$id = (int) $id;
		if ( $id <= 0 ) {
			return $error;
		}

		$post = get_post( $id );
		if ( empty( $post ) || empty( $post->ID ) || $this->post_type !== $post->post_type ) {
			return $error;
		}

		return $post;
	}

	/**
	 * Checks if a given request has access to read a single global style.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( 'edit' === $request['context'] && $post && ! $this->check_update_permission( $post ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit this global style.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! $this->check_read_permission( $post ) ) {
			return new WP_Error(
				'rest_cannot_view',
				__( 'Sorry, you are not allowed to view this global style.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Checks if a global style can be read.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Post $post Post object.
	 * @return bool Whether the post can be read.
	 */
	public function check_read_permission( $post ) {
		return current_user_can( 'read_post', $post->ID );
	}

	/**
	 * Checks if a given request has access to write a single global styles config.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( $post && ! $this->check_update_permission( $post ) ) {
			return new WP_Error(
				'rest_cannot_edit',
				__( 'Sorry, you are not allowed to edit this global style.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Prepares a single global styles config for update.
	 *
	 * @since 5.9.0
	 * @since 6.2.0 Added validation of styles.css property.
	 * @since 6.6.0 Added registration of block style variations from theme.json sources (theme.json, user theme.json, partials).
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass|WP_Error Prepared item on success. WP_Error on when the custom CSS is not valid.
	 */
	protected function prepare_item_for_database( $request ) {
		$changes     = new stdClass();
		$changes->ID = $request['id'];

		$post            = get_post( $request['id'] );
		$existing_config = array();
		if ( $post ) {
			$existing_config     = json_decode( $post->post_content, true );
			$json_decoding_error = json_last_error();
			if ( JSON_ERROR_NONE !== $json_decoding_error || ! isset( $existing_config['isGlobalStylesUserThemeJSON'] ) ||
				! $existing_config['isGlobalStylesUserThemeJSON'] ) {
				$existing_config = array();
			}
		}

		if ( isset( $request['styles'] ) || isset( $request['settings'] ) ) {
			$config = array();
			if ( isset( $request['styles'] ) ) {
				if ( isset( $request['styles']['css'] ) ) {
					$css_validation_result = $this->validate_custom_css( $request['styles']['css'] );
					if ( is_wp_error( $css_validation_result ) ) {
						return $css_validation_result;
					}
				}
				$config['styles'] = $request['styles'];
			} elseif ( isset( $existing_config['styles'] ) ) {
				$config['styles'] = $existing_config['styles'];
			}

			// Register theme-defined variations e.g. from block style variation partials under `/styles`.
			$variations = WP_Theme_JSON_Resolver::get_style_variations( 'block' );
			wp_register_block_style_variations_from_theme_json_partials( $variations );

			if ( isset( $request['settings'] ) ) {
				$config['settings'] = $request['settings'];
			} elseif ( isset( $existing_config['settings'] ) ) {
				$config['settings'] = $existing_config['settings'];
			}
			$config['isGlobalStylesUserThemeJSON'] = true;
			$config['version']                     = WP_Theme_JSON::LATEST_SCHEMA;
			$changes->post_content                 = wp_json_encode( $config );
		}

		// Post title.
		if ( isset( $request['title'] ) ) {
			if ( is_string( $request['title'] ) ) {
				$changes->post_title = $request['title'];
			} elseif ( ! empty( $request['title']['raw'] ) ) {
				$changes->post_title = $request['title']['raw'];
			}
		}

		return $changes;
	}

	/**
	 * Prepare a global styles config output for response.
	 *
	 * @since 5.9.0
	 * @since 6.6.0 Added custom relative theme file URIs to `_links`.
	 *
	 * @param WP_Post         $post    Global Styles post object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $post, $request ) {
		$raw_config                       = json_decode( $post->post_content, true );
		$is_global_styles_user_theme_json = isset( $raw_config['isGlobalStylesUserThemeJSON'] ) && true === $raw_config['isGlobalStylesUserThemeJSON'];
		$config                           = array();
		$theme_json                       = null;
		if ( $is_global_styles_user_theme_json ) {
			$theme_json = new WP_Theme_JSON( $raw_config, 'custom' );
			$config     = $theme_json->get_raw_data();
		}

		// Base fields for every post.
		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $post->ID;
		}

		if ( rest_is_field_included( 'title', $fields ) ) {
			$data['title'] = array();
		}
		if ( rest_is_field_included( 'title.raw', $fields ) ) {
			$data['title']['raw'] = $post->post_title;
		}
		if ( rest_is_field_included( 'title.rendered', $fields ) ) {
			add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );

			$data['title']['rendered'] = get_the_title( $post->ID );

			remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
			remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
		}

		if ( rest_is_field_included( 'settings', $fields ) ) {
			$data['settings'] = ! empty( $config['settings'] ) && $is_global_styles_user_theme_json ? $config['settings'] : new stdClass();
		}

		if ( rest_is_field_included( 'styles', $fields ) ) {
			$data['styles'] = ! empty( $config['styles'] ) && $is_global_styles_user_theme_json ? $config['styles'] : new stdClass();
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $post->ID );

			// Only return resolved URIs for get requests to user theme JSON.
			if ( $theme_json ) {
				$resolved_theme_uris = WP_Theme_JSON_Resolver::get_resolved_theme_uris( $theme_json );
				if ( ! empty( $resolved_theme_uris ) ) {
					$links['https://api.w.org/theme-file'] = $resolved_theme_uris;
				}
			}

			$response->add_links( $links );
			if ( ! empty( $links['self']['href'] ) ) {
				$actions = $this->get_available_actions( $post, $request );
				$self    = $links['self']['href'];
				foreach ( $actions as $rel ) {
					$response->add_link( $rel, $self );
				}
			}
		}

		return $response;
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.9.0
	 * @since 6.3.0 Adds revisions count and rest URL href to version-history.
	 *
	 * @param integer $id ID.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $id ) {
		$base = sprintf( '%s/%s', $this->namespace, $this->rest_base );

		$links = array(
			'self'  => array(
				'href' => rest_url( trailingslashit( $base ) . $id ),
			),
			'about' => array(
				'href' => rest_url( 'wp/v2/types/' . $this->post_type ),
			),
		);

		if ( post_type_supports( $this->post_type, 'revisions' ) ) {
			$revisions                = wp_get_latest_revision_id_and_total_count( $id );
			$revisions_count          = ! is_wp_error( $revisions ) ? $revisions['count'] : 0;
			$revisions_base           = sprintf( '/%s/%d/revisions', $base, $id );
			$links['version-history'] = array(
				'href'  => rest_url( $revisions_base ),
				'count' => $revisions_count,
			);
		}

		return $links;
	}

	/**
	 * Get the link relations available for the post and current user.
	 *
	 * @since 5.9.0
	 * @since 6.2.0 Added 'edit-css' action.
	 * @since 6.6.0 Added $post and $request parameters.
	 *
	 * @param WP_Post         $post    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return array List of link relations.
	 */
	protected function get_available_actions( $post, $request ) {
		$rels = array();

		$post_type = get_post_type_object( $post->post_type );
		if ( current_user_can( $post_type->cap->publish_posts ) ) {
			$rels[] = 'https://api.w.org/action-publish';
		}

		if ( current_user_can( 'edit_css' ) ) {
			$rels[] = 'https://api.w.org/action-edit-css';
		}

		return $rels;
	}

	/**
	 * Retrieves the query params for the global styles collection.
	 *
	 * @since 5.9.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array();
	}

	/**
	 * Retrieves the global styles type' schema, conforming to JSON Schema.
	 *
	 * @since 5.9.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => $this->post_type,
			'type'       => 'object',
			'properties' => array(
				'id'       => array(
					'description' => __( 'ID of global styles config.' ),
					'type'        => 'integer',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'styles'   => array(
					'description' => __( 'Global styles.' ),
					'type'        => array( 'object' ),
					'context'     => array( 'view', 'edit' ),
				),
				'settings' => array(
					'description' => __( 'Global settings.' ),
					'type'        => array( 'object' ),
					'context'     => array( 'view', 'edit' ),
				),
				'title'    => array(
					'description' => __( 'Title of the global styles variation.' ),
					'type'        => array( 'object', 'string' ),
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'Title for the global styles variation, as it exists in the database.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit', 'embed' ),
						),
						'rendered' => array(
							'description' => __( 'HTML title for the post, transformed for display.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit', 'embed' ),
							'readonly'    => true,
						),
					),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Checks if a given request has access to read a single theme global styles config.
	 *
	 * @since 5.9.0
	 * @since 6.7.0 Allow users with edit post capabilities to view theme global styles.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_theme_item_permissions_check( $request ) {
		/*
		 * Verify if the current user has edit_posts capability.
		 * This capability is required to view global styles.
		 */
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		/*
		 * Verify if the current user has edit_theme_options capability.
		 */
		if ( current_user_can( 'edit_theme_options' ) ) {
			return true;
		}

		return new WP_Error(
			'rest_cannot_read_global_styles',
			__( 'Sorry, you are not allowed to access the global styles on this site.' ),
			array(
				'status' => rest_authorization_required_code(),
			)
		);
	}

	/**
	 * Returns the given theme global styles config.
	 *
	 * @since 5.9.0
	 * @since 6.6.0 Added custom relative theme file URIs to `_links`.
	 *
	 * @param WP_REST_Request $request The request instance.
	 * @return WP_REST_Response|WP_Error
	 */
	public function get_theme_item( $request ) {
		if ( get_stylesheet() !== $request['stylesheet'] ) {
			// This endpoint only supports the active theme for now.
			return new WP_Error(
				'rest_theme_not_found',
				__( 'Theme not found.' ),
				array( 'status' => 404 )
			);
		}

		$theme  = WP_Theme_JSON_Resolver::get_merged_data( 'theme' );
		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'settings', $fields ) ) {
			$data['settings'] = $theme->get_settings();
		}

		if ( rest_is_field_included( 'styles', $fields ) ) {
			$raw_data       = $theme->get_raw_data();
			$data['styles'] = isset( $raw_data['styles'] ) ? $raw_data['styles'] : array();
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links               = array(
				'self' => array(
					'href' => rest_url( sprintf( '%s/%s/themes/%s', $this->namespace, $this->rest_base, $request['stylesheet'] ) ),
				),
			);
			$resolved_theme_uris = WP_Theme_JSON_Resolver::get_resolved_theme_uris( $theme );
			if ( ! empty( $resolved_theme_uris ) ) {
				$links['https://api.w.org/theme-file'] = $resolved_theme_uris;
			}
			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Checks if a given request has access to read a single theme global styles config.
	 *
	 * @since 6.0.0
	 * @since 6.7.0 Allow users with edit post capabilities to view theme global styles.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_theme_items_permissions_check( $request ) {
		return $this->get_theme_item_permissions_check( $request );
	}

	/**
	 * Returns the given theme global styles variations.
	 *
	 * @since 6.0.0
	 * @since 6.2.0 Returns parent theme variations, if they exist.
	 * @since 6.6.0 Added custom relative theme file URIs to `_links` for each item.
	 *
	 * @param WP_REST_Request $request The request instance.
	 *
	 * @return WP_REST_Response|WP_Error
	 */
	public function get_theme_items( $request ) {
		if ( get_stylesheet() !== $request['stylesheet'] ) {
			// This endpoint only supports the active theme for now.
			return new WP_Error(
				'rest_theme_not_found',
				__( 'Theme not found.' ),
				array( 'status' => 404 )
			);
		}

		$response = array();

		// Register theme-defined variations e.g. from block style variation partials under `/styles`.
		$partials = WP_Theme_JSON_Resolver::get_style_variations( 'block' );
		wp_register_block_style_variations_from_theme_json_partials( $partials );

		$variations = WP_Theme_JSON_Resolver::get_style_variations();
		foreach ( $variations as $variation ) {
			$variation_theme_json = new WP_Theme_JSON( $variation );
			$resolved_theme_uris  = WP_Theme_JSON_Resolver::get_resolved_theme_uris( $variation_theme_json );
			$data                 = rest_ensure_response( $variation );
			if ( ! empty( $resolved_theme_uris ) ) {
				$data->add_links(
					array(
						'https://api.w.org/theme-file' => $resolved_theme_uris,
					)
				);
			}
			$response[] = $this->prepare_response_for_collection( $data );
		}

		return rest_ensure_response( $response );
	}

	/**
	 * Validate style.css as valid CSS.
	 *
	 * Currently just checks for invalid markup.
	 *
	 * @since 6.2.0
	 * @since 6.4.0 Changed method visibility to protected.
	 *
	 * @param string $css CSS to validate.
	 * @return true|WP_Error True if the input was validated, otherwise WP_Error.
	 */
	protected function validate_custom_css( $css ) {
		if ( preg_match( '#</?\w+#', $css ) ) {
			return new WP_Error(
				'rest_custom_css_illegal_markup',
				__( 'Markup is not allowed in CSS.' ),
				array( 'status' => 400 )
			);
		}
		return true;
	}
}
endpoints/class-wp-rest-terms-controller.php000064400000105165152222510010015273 0ustar00<?php
/**
 * REST API: WP_REST_Terms_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to managed terms associated with a taxonomy via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Terms_Controller extends WP_REST_Controller {

	/**
	 * Taxonomy key.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $taxonomy;

	/**
	 * Instance of a term meta fields object.
	 *
	 * @since 4.7.0
	 * @var WP_REST_Term_Meta_Fields
	 */
	protected $meta;

	/**
	 * Column to have the terms be sorted by.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $sort_column;

	/**
	 * Number of terms that were found.
	 *
	 * @since 4.7.0
	 * @var int
	 */
	protected $total_terms;

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 5.9.0
	 * @var array
	 */
	protected $allow_batch = array( 'v1' => true );

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 *
	 * @param string $taxonomy Taxonomy key.
	 */
	public function __construct( $taxonomy ) {
		$this->taxonomy  = $taxonomy;
		$tax_obj         = get_taxonomy( $taxonomy );
		$this->rest_base = ! empty( $tax_obj->rest_base ) ? $tax_obj->rest_base : $tax_obj->name;
		$this->namespace = ! empty( $tax_obj->rest_namespace ) ? $tax_obj->rest_namespace : 'wp/v2';

		$this->meta = new WP_REST_Term_Meta_Fields( $taxonomy );
	}

	/**
	 * Registers the routes for terms.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'        => array(
					'id' => array(
						'description' => __( 'Unique identifier for the term.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Required to be true, as terms do not support trashing.' ),
						),
					),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if the terms for a post can be read.
	 *
	 * @since 6.0.3
	 *
	 * @param WP_Post         $post    Post object.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool Whether the terms for the post can be read.
	 */
	public function check_read_terms_permission_for_post( $post, $request ) {
		// If the requested post isn't associated with this taxonomy, deny access.
		if ( ! is_object_in_taxonomy( $post->post_type, $this->taxonomy ) ) {
			return false;
		}

		// Grant access if the post is publicly viewable.
		if ( is_post_publicly_viewable( $post ) ) {
			return true;
		}

		// Otherwise grant access if the post is readable by the logged-in user.
		if ( current_user_can( 'read_post', $post->ID ) ) {
			return true;
		}

		// Otherwise, deny access.
		return false;
	}

	/**
	 * Checks if a request has access to read terms in the specified taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has read access, otherwise false or WP_Error object.
	 */
	public function get_items_permissions_check( $request ) {
		$tax_obj = get_taxonomy( $this->taxonomy );

		if ( ! $tax_obj || ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) {
			return false;
		}

		if ( 'edit' === $request['context'] && ! current_user_can( $tax_obj->cap->edit_terms ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit terms in this taxonomy.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! empty( $request['post'] ) ) {
			$post = get_post( $request['post'] );

			if ( ! $post ) {
				return new WP_Error(
					'rest_post_invalid_id',
					__( 'Invalid post ID.' ),
					array(
						'status' => 400,
					)
				);
			}

			if ( ! $this->check_read_terms_permission_for_post( $post, $request ) ) {
				return new WP_Error(
					'rest_forbidden_context',
					__( 'Sorry, you are not allowed to view terms for this post.' ),
					array(
						'status' => rest_authorization_required_code(),
					)
				);
			}
		}

		return true;
	}

	/**
	 * Retrieves terms associated with a taxonomy.
	 *
	 * @since 4.7.0
	 * @since 6.8.0 Respect default query arguments set for the taxonomy upon registration.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();

		/*
		 * This array defines mappings between public API query parameters whose
		 * values are accepted as-passed, and their internal WP_Query parameter
		 * name equivalents (some are the same). Only values which are also
		 * present in $registered will be set.
		 */
		$parameter_mappings = array(
			'exclude'    => 'exclude',
			'include'    => 'include',
			'order'      => 'order',
			'orderby'    => 'orderby',
			'post'       => 'post',
			'hide_empty' => 'hide_empty',
			'per_page'   => 'number',
			'search'     => 'search',
			'slug'       => 'slug',
		);

		$prepared_args = array( 'taxonomy' => $this->taxonomy );

		/*
		 * For each known parameter which is both registered and present in the request,
		 * set the parameter's value on the query $prepared_args.
		 */
		foreach ( $parameter_mappings as $api_param => $wp_param ) {
			if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
				$prepared_args[ $wp_param ] = $request[ $api_param ];
			}
		}

		if ( isset( $prepared_args['orderby'] ) && isset( $request['orderby'] ) ) {
			$orderby_mappings = array(
				'include_slugs' => 'slug__in',
			);

			if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) {
				$prepared_args['orderby'] = $orderby_mappings[ $request['orderby'] ];
			}
		}

		if ( isset( $registered['offset'] ) && ! empty( $request['offset'] ) ) {
			$prepared_args['offset'] = $request['offset'];
		} else {
			$prepared_args['offset'] = ( $request['page'] - 1 ) * $prepared_args['number'];
		}

		$taxonomy_obj = get_taxonomy( $this->taxonomy );

		if ( $taxonomy_obj->hierarchical && isset( $registered['parent'], $request['parent'] ) ) {
			if ( 0 === $request['parent'] ) {
				// Only query top-level terms.
				$prepared_args['parent'] = 0;
			} else {
				if ( $request['parent'] ) {
					$prepared_args['parent'] = $request['parent'];
				}
			}
		}

		/*
		 * When a taxonomy is registered with an 'args' array,
		 * those params override the `$args` passed to this function.
		 *
		 * We only need to do this if no `post` argument is provided.
		 * Otherwise, terms will be fetched using `wp_get_object_terms()`,
		 * which respects the default query arguments set for the taxonomy.
		 */
		if (
			empty( $prepared_args['post'] ) &&
			isset( $taxonomy_obj->args ) &&
			is_array( $taxonomy_obj->args )
		) {
			$prepared_args = array_merge( $prepared_args, $taxonomy_obj->args );
		}

		$is_head_request = $request->is_method( 'HEAD' );
		if ( $is_head_request ) {
			// Force the 'fields' argument. For HEAD requests, only term IDs are required.
			$prepared_args['fields'] = 'ids';
			// Disable priming term meta for HEAD requests to improve performance.
			$prepared_args['update_term_meta_cache'] = false;
		}

		/**
		 * Filters get_terms() arguments when querying terms via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_category_query`
		 *  - `rest_post_tag_query`
		 *
		 * Enables adding extra arguments or setting defaults for a terms
		 * collection request.
		 *
		 * @since 4.7.0
		 *
		 * @link https://developer.wordpress.org/reference/functions/get_terms/
		 *
		 * @param array           $prepared_args Array of arguments for get_terms().
		 * @param WP_REST_Request $request       The REST API request.
		 */
		$prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request );

		if ( ! empty( $prepared_args['post'] ) ) {
			$query_result = wp_get_object_terms( $prepared_args['post'], $this->taxonomy, $prepared_args );

			// Used when calling wp_count_terms() below.
			$prepared_args['object_ids'] = $prepared_args['post'];
		} else {
			$query_result = get_terms( $prepared_args );
		}

		$count_args = $prepared_args;

		unset( $count_args['number'], $count_args['offset'] );

		$total_terms = wp_count_terms( $count_args );

		// wp_count_terms() can return a falsey value when the term has no children.
		if ( ! $total_terms ) {
			$total_terms = 0;
		}

		if ( ! $is_head_request ) {
			$response = array();
			foreach ( $query_result as $term ) {
				if ( 'edit' === $request['context'] && ! current_user_can( 'edit_term', $term->term_id ) ) {
					continue;
				}

				$data       = $this->prepare_item_for_response( $term, $request );
				$response[] = $this->prepare_response_for_collection( $data );
			}
		}

		$response = $is_head_request ? new WP_REST_Response( array() ) : rest_ensure_response( $response );

		// Store pagination values for headers.
		$per_page = (int) $prepared_args['number'];
		$page     = (int) ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );

		$response->header( 'X-WP-Total', (int) $total_terms );

		$max_pages = (int) ceil( $total_terms / $per_page );

		$response->header( 'X-WP-TotalPages', $max_pages );

		$request_params = $request->get_query_params();
		$collection_url = rest_url( rest_get_route_for_taxonomy_items( $this->taxonomy ) );
		$base           = add_query_arg( urlencode_deep( $request_params ), $collection_url );

		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Get the term, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Term|WP_Error Term object if ID is valid, WP_Error otherwise.
	 */
	protected function get_term( $id ) {
		$error = new WP_Error(
			'rest_term_invalid',
			__( 'Term does not exist.' ),
			array( 'status' => 404 )
		);

		if ( ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) {
			return $error;
		}

		if ( (int) $id <= 0 ) {
			return $error;
		}

		$term = get_term( (int) $id, $this->taxonomy );
		if ( empty( $term ) || $term->taxonomy !== $this->taxonomy ) {
			return $error;
		}

		return $term;
	}

	/**
	 * Checks if a request has access to read or edit the specified term.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
	 */
	public function get_item_permissions_check( $request ) {
		$term = $this->get_term( $request['id'] );

		if ( is_wp_error( $term ) ) {
			return $term;
		}

		if ( 'edit' === $request['context'] && ! current_user_can( 'edit_term', $term->term_id ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit this term.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Gets a single term from a taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$term = $this->get_term( $request['id'] );
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		$response = $this->prepare_item_for_response( $term, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a request has access to create a term.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has access to create items, otherwise false or WP_Error object.
	 */
	public function create_item_permissions_check( $request ) {

		if ( ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) {
			return false;
		}

		$taxonomy_obj = get_taxonomy( $this->taxonomy );

		if ( ( is_taxonomy_hierarchical( $this->taxonomy )
				&& ! current_user_can( $taxonomy_obj->cap->edit_terms ) )
			|| ( ! is_taxonomy_hierarchical( $this->taxonomy )
				&& ! current_user_can( $taxonomy_obj->cap->assign_terms ) ) ) {
			return new WP_Error(
				'rest_cannot_create',
				__( 'Sorry, you are not allowed to create terms in this taxonomy.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Creates a single term in a taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( isset( $request['parent'] ) ) {
			if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) {
				return new WP_Error(
					'rest_taxonomy_not_hierarchical',
					__( 'Cannot set parent term, taxonomy is not hierarchical.' ),
					array( 'status' => 400 )
				);
			}

			$parent = get_term( (int) $request['parent'], $this->taxonomy );

			if ( ! $parent ) {
				return new WP_Error(
					'rest_term_invalid',
					__( 'Parent term does not exist.' ),
					array( 'status' => 400 )
				);
			}
		}

		$prepared_term = $this->prepare_item_for_database( $request );

		$term = wp_insert_term( wp_slash( $prepared_term->name ), $this->taxonomy, wp_slash( (array) $prepared_term ) );
		if ( is_wp_error( $term ) ) {
			/*
			 * If we're going to inform the client that the term already exists,
			 * give them the identifier for future use.
			 */
			$term_id = $term->get_error_data( 'term_exists' );
			if ( $term_id ) {
				$existing_term = get_term( $term_id, $this->taxonomy );
				$term->add_data( $existing_term->term_id, 'term_exists' );
				$term->add_data(
					array(
						'status'  => 400,
						'term_id' => $term_id,
					)
				);
			}

			return $term;
		}

		$term = get_term( $term['term_id'], $this->taxonomy );

		/**
		 * Fires after a single term is created or updated via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_insert_category`
		 *  - `rest_insert_post_tag`
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Term         $term     Inserted or updated term object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a term, false when updating.
		 */
		do_action( "rest_insert_{$this->taxonomy}", $term, $request, true );

		$schema = $this->get_item_schema();
		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $term->term_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$fields_update = $this->update_additional_fields_for_object( $term, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/**
		 * Fires after a single term is completely created or updated via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_after_insert_category`
		 *  - `rest_after_insert_post_tag`
		 *
		 * @since 5.0.0
		 *
		 * @param WP_Term         $term     Inserted or updated term object.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating a term, false when updating.
		 */
		do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );

		$response = $this->prepare_item_for_response( $term, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( $this->namespace . '/' . $this->rest_base . '/' . $term->term_id ) );

		return $response;
	}

	/**
	 * Checks if a request has access to update the specified term.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, false or WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$term = $this->get_term( $request['id'] );

		if ( is_wp_error( $term ) ) {
			return $term;
		}

		if ( ! current_user_can( 'edit_term', $term->term_id ) ) {
			return new WP_Error(
				'rest_cannot_update',
				__( 'Sorry, you are not allowed to edit this term.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Updates a single term from a taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$term = $this->get_term( $request['id'] );
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		if ( isset( $request['parent'] ) ) {
			if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) {
				return new WP_Error(
					'rest_taxonomy_not_hierarchical',
					__( 'Cannot set parent term, taxonomy is not hierarchical.' ),
					array( 'status' => 400 )
				);
			}

			$parent = get_term( (int) $request['parent'], $this->taxonomy );

			if ( ! $parent ) {
				return new WP_Error(
					'rest_term_invalid',
					__( 'Parent term does not exist.' ),
					array( 'status' => 400 )
				);
			}
		}

		$prepared_term = $this->prepare_item_for_database( $request );

		// Only update the term if we have something to update.
		if ( ! empty( $prepared_term ) ) {
			$update = wp_update_term( $term->term_id, $term->taxonomy, wp_slash( (array) $prepared_term ) );

			if ( is_wp_error( $update ) ) {
				return $update;
			}
		}

		$term = get_term( $term->term_id, $this->taxonomy );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_insert_{$this->taxonomy}", $term, $request, false );

		$schema = $this->get_item_schema();
		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $term->term_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$fields_update = $this->update_additional_fields_for_object( $term, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );

		$response = $this->prepare_item_for_response( $term, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a request has access to delete the specified term.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, otherwise false or WP_Error object.
	 */
	public function delete_item_permissions_check( $request ) {
		$term = $this->get_term( $request['id'] );

		if ( is_wp_error( $term ) ) {
			return $term;
		}

		if ( ! current_user_can( 'delete_term', $term->term_id ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete this term.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes a single term from a taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$term = $this->get_term( $request['id'] );
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

		// We don't support trashing for terms.
		if ( ! $force ) {
			return new WP_Error(
				'rest_trash_not_supported',
				/* translators: %s: force=true */
				sprintf( __( "Terms do not support trashing. Set '%s' to delete." ), 'force=true' ),
				array( 'status' => 501 )
			);
		}

		$request->set_param( 'context', 'view' );

		$previous = $this->prepare_item_for_response( $term, $request );

		$retval = wp_delete_term( $term->term_id, $term->taxonomy );

		if ( ! $retval ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The term cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		$response = new WP_REST_Response();
		$response->set_data(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);

		/**
		 * Fires after a single term is deleted via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_delete_category`
		 *  - `rest_delete_post_tag`
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Term          $term     The deleted term.
		 * @param WP_REST_Response $response The response data.
		 * @param WP_REST_Request  $request  The request sent to the API.
		 */
		do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request );

		return $response;
	}

	/**
	 * Prepares a single term for create or update.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return object Term object.
	 */
	public function prepare_item_for_database( $request ) {
		$prepared_term = new stdClass();

		$schema = $this->get_item_schema();
		if ( isset( $request['name'] ) && ! empty( $schema['properties']['name'] ) ) {
			$prepared_term->name = $request['name'];
		}

		if ( isset( $request['slug'] ) && ! empty( $schema['properties']['slug'] ) ) {
			$prepared_term->slug = $request['slug'];
		}

		if ( isset( $request['taxonomy'] ) && ! empty( $schema['properties']['taxonomy'] ) ) {
			$prepared_term->taxonomy = $request['taxonomy'];
		}

		if ( isset( $request['description'] ) && ! empty( $schema['properties']['description'] ) ) {
			$prepared_term->description = $request['description'];
		}

		if ( isset( $request['parent'] ) && ! empty( $schema['properties']['parent'] ) ) {
			$parent_term_id   = 0;
			$requested_parent = (int) $request['parent'];

			if ( $requested_parent ) {
				$parent_term = get_term( $requested_parent, $this->taxonomy );

				if ( $parent_term instanceof WP_Term ) {
					$parent_term_id = $parent_term->term_id;
				}
			}

			$prepared_term->parent = $parent_term_id;
		}

		/**
		 * Filters term data before inserting term via the REST API.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_pre_insert_category`
		 *  - `rest_pre_insert_post_tag`
		 *
		 * @since 4.7.0
		 *
		 * @param object          $prepared_term Term object.
		 * @param WP_REST_Request $request       Request object.
		 */
		return apply_filters( "rest_pre_insert_{$this->taxonomy}", $prepared_term, $request );
	}

	/**
	 * Prepares a single term output for response.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Term         $item    Term object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
			return apply_filters( "rest_prepare_{$this->taxonomy}", new WP_REST_Response( array() ), $item, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'id', $fields, true ) ) {
			$data['id'] = (int) $item->term_id;
		}

		if ( in_array( 'count', $fields, true ) ) {
			$data['count'] = (int) $item->count;
		}

		if ( in_array( 'description', $fields, true ) ) {
			$data['description'] = $item->description;
		}

		if ( in_array( 'link', $fields, true ) ) {
			$data['link'] = get_term_link( $item );
		}

		if ( in_array( 'name', $fields, true ) ) {
			$data['name'] = $item->name;
		}

		if ( in_array( 'slug', $fields, true ) ) {
			$data['slug'] = $item->slug;
		}

		if ( in_array( 'taxonomy', $fields, true ) ) {
			$data['taxonomy'] = $item->taxonomy;
		}

		if ( in_array( 'parent', $fields, true ) ) {
			$data['parent'] = (int) $item->parent;
		}

		if ( in_array( 'meta', $fields, true ) ) {
			$data['meta'] = $this->meta->get_value( $item->term_id, $request );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $item ) );
		}

		/**
		 * Filters the term data for a REST API response.
		 *
		 * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
		 *
		 * Possible hook names include:
		 *
		 *  - `rest_prepare_category`
		 *  - `rest_prepare_post_tag`
		 *
		 * Allows modification of the term data right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response  $response  The response object.
		 * @param WP_Term           $item      The original term object.
		 * @param WP_REST_Request   $request   Request used to generate the response.
		 */
		return apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_Term $term Term object.
	 * @return array Links for the given term.
	 */
	protected function prepare_links( $term ) {
		$links = array(
			'self'       => array(
				'href' => rest_url( rest_get_route_for_term( $term ) ),
			),
			'collection' => array(
				'href' => rest_url( rest_get_route_for_taxonomy_items( $this->taxonomy ) ),
			),
			'about'      => array(
				'href' => rest_url( sprintf( 'wp/v2/taxonomies/%s', $this->taxonomy ) ),
			),
		);

		if ( $term->parent ) {
			$parent_term = get_term( (int) $term->parent, $term->taxonomy );

			if ( $parent_term ) {
				$links['up'] = array(
					'href'       => rest_url( rest_get_route_for_term( $parent_term ) ),
					'embeddable' => true,
				);
			}
		}

		$taxonomy_obj = get_taxonomy( $term->taxonomy );

		if ( empty( $taxonomy_obj->object_type ) ) {
			return $links;
		}

		$post_type_links = array();

		foreach ( $taxonomy_obj->object_type as $type ) {
			$rest_path = rest_get_route_for_post_type_items( $type );

			if ( empty( $rest_path ) ) {
				continue;
			}

			$post_type_links[] = array(
				'href' => add_query_arg( $this->rest_base, $term->term_id, rest_url( $rest_path ) ),
			);
		}

		if ( ! empty( $post_type_links ) ) {
			$links['https://api.w.org/post_type'] = $post_type_links;
		}

		return $links;
	}

	/**
	 * Retrieves the term's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy,
			'type'       => 'object',
			'properties' => array(
				'id'          => array(
					'description' => __( 'Unique identifier for the term.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'embed', 'edit' ),
					'readonly'    => true,
				),
				'count'       => array(
					'description' => __( 'Number of published posts for the term.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'description' => array(
					'description' => __( 'HTML description of the term.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
				),
				'link'        => array(
					'description' => __( 'URL of the term.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'embed', 'edit' ),
					'readonly'    => true,
				),
				'name'        => array(
					'description' => __( 'HTML title for the term.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'embed', 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => 'sanitize_text_field',
					),
					'required'    => true,
				),
				'slug'        => array(
					'description' => __( 'An alphanumeric identifier for the term unique to its type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'embed', 'edit' ),
					'arg_options' => array(
						'sanitize_callback' => array( $this, 'sanitize_slug' ),
					),
				),
				'taxonomy'    => array(
					'description' => __( 'Type attribution for the term.' ),
					'type'        => 'string',
					'enum'        => array( $this->taxonomy ),
					'context'     => array( 'view', 'embed', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		$taxonomy = get_taxonomy( $this->taxonomy );

		if ( $taxonomy->hierarchical ) {
			$schema['properties']['parent'] = array(
				'description' => __( 'The parent term ID.' ),
				'type'        => 'integer',
				'context'     => array( 'view', 'edit' ),
			);
		}

		$schema['properties']['meta'] = $this->meta->get_field_schema();

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();
		$taxonomy     = get_taxonomy( $this->taxonomy );

		$query_params['context']['default'] = 'view';

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		if ( ! $taxonomy->hierarchical ) {
			$query_params['offset'] = array(
				'description' => __( 'Offset the result set by a specific number of items.' ),
				'type'        => 'integer',
			);
		}

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'asc',
			'enum'        => array(
				'asc',
				'desc',
			),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by term attribute.' ),
			'type'        => 'string',
			'default'     => 'name',
			'enum'        => array(
				'id',
				'include',
				'name',
				'slug',
				'include_slugs',
				'term_group',
				'description',
				'count',
			),
		);

		$query_params['hide_empty'] = array(
			'description' => __( 'Whether to hide terms not assigned to any posts.' ),
			'type'        => 'boolean',
			'default'     => false,
		);

		if ( $taxonomy->hierarchical ) {
			$query_params['parent'] = array(
				'description' => __( 'Limit result set to terms assigned to a specific parent.' ),
				'type'        => 'integer',
			);
		}

		$query_params['post'] = array(
			'description' => __( 'Limit result set to terms assigned to a specific post.' ),
			'type'        => 'integer',
			'default'     => null,
		);

		$query_params['slug'] = array(
			'description' => __( 'Limit result set to terms with one or more specific slugs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
		);

		/**
		 * Filters collection parameters for the terms controller.
		 *
		 * The dynamic part of the filter `$this->taxonomy` refers to the taxonomy
		 * slug for the controller.
		 *
		 * This filter registers the collection parameter, but does not map the
		 * collection parameter to an internal WP_Term_Query parameter.  Use the
		 * `rest_{$this->taxonomy}_query` filter to set WP_Term_Query parameters.
		 *
		 * @since 4.7.0
		 *
		 * @param array       $query_params JSON Schema-formatted collection parameters.
		 * @param WP_Taxonomy $taxonomy     Taxonomy object.
		 */
		return apply_filters( "rest_{$this->taxonomy}_collection_params", $query_params, $taxonomy );
	}

	/**
	 * Checks that the taxonomy is valid.
	 *
	 * @since 4.7.0
	 *
	 * @param string $taxonomy Taxonomy to check.
	 * @return bool Whether the taxonomy is allowed for REST management.
	 */
	protected function check_is_taxonomy_allowed( $taxonomy ) {
		$taxonomy_obj = get_taxonomy( $taxonomy );
		if ( $taxonomy_obj && ! empty( $taxonomy_obj->show_in_rest ) ) {
			return true;
		}
		return false;
	}
}
endpoints/class-wp-rest-application-passwords-controller.php000064400000057376152222510010020501 0ustar00<?php
/**
 * REST API: WP_REST_Application_Passwords_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since      5.6.0
 */

/**
 * Core class to access a user's application passwords via the REST API.
 *
 * @since 5.6.0
 *
 * @see   WP_REST_Controller
 */
class WP_REST_Application_Passwords_Controller extends WP_REST_Controller {

	/**
	 * Application Passwords controller constructor.
	 *
	 * @since 5.6.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'users/(?P<user_id>(?:[\d]+|me))/application-passwords';
	}

	/**
	 * Registers the REST API routes for the application passwords controller.
	 *
	 * @since 5.6.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema(),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_items' ),
					'permission_callback' => array( $this, 'delete_items_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/introspect',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_current_item' ),
					'permission_callback' => array( $this, 'get_current_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<uuid>[\w\-]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to get application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'list_app_passwords', $user->ID ) ) {
			return new WP_Error(
				'rest_cannot_list_application_passwords',
				__( 'Sorry, you are not allowed to list application passwords for this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves a collection of application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$passwords = WP_Application_Passwords::get_user_application_passwords( $user->ID );
		$response  = array();

		foreach ( $passwords as $password ) {
			$response[] = $this->prepare_response_for_collection(
				$this->prepare_item_for_response( $password, $request )
			);
		}

		return new WP_REST_Response( $response );
	}

	/**
	 * Checks if a given request has access to get a specific application password.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'read_app_password', $user->ID, $request['uuid'] ) ) {
			return new WP_Error(
				'rest_cannot_read_application_password',
				__( 'Sorry, you are not allowed to read this application password.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves one application password from the collection.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$password = $this->get_application_password( $request );

		if ( is_wp_error( $password ) ) {
			return $password;
		}

		return $this->prepare_item_for_response( $password, $request );
	}

	/**
	 * Checks if a given request has access to create application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'create_app_password', $user->ID ) ) {
			return new WP_Error(
				'rest_cannot_create_application_passwords',
				__( 'Sorry, you are not allowed to create application passwords for this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Creates an application password.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$prepared = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared ) ) {
			return $prepared;
		}

		$created = WP_Application_Passwords::create_new_application_password( $user->ID, wp_slash( (array) $prepared ) );

		if ( is_wp_error( $created ) ) {
			return $created;
		}

		$password = $created[0];
		$item     = WP_Application_Passwords::get_user_application_password( $user->ID, $created[1]['uuid'] );

		$item['new_password'] = WP_Application_Passwords::chunk_password( $password );
		$fields_update        = $this->update_additional_fields_for_object( $item, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		/**
		 * Fires after a single application password is completely created or updated via the REST API.
		 *
		 * @since 5.6.0
		 *
		 * @param array           $item     Inserted or updated password item.
		 * @param WP_REST_Request $request  Request object.
		 * @param bool            $creating True when creating an application password, false when updating.
		 */
		do_action( 'rest_after_insert_application_password', $item, $request, true );

		$request->set_param( 'context', 'edit' );
		$response = $this->prepare_item_for_response( $item, $request );

		$response->set_status( 201 );
		$response->header( 'Location', $response->get_links()['self'][0]['href'] );

		return $response;
	}

	/**
	 * Checks if a given request has access to update application passwords.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'edit_app_password', $user->ID, $request['uuid'] ) ) {
			return new WP_Error(
				'rest_cannot_edit_application_password',
				__( 'Sorry, you are not allowed to edit this application password.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Updates an application password.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$item = $this->get_application_password( $request );

		if ( is_wp_error( $item ) ) {
			return $item;
		}

		$prepared = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared ) ) {
			return $prepared;
		}

		$saved = WP_Application_Passwords::update_application_password( $user->ID, $item['uuid'], wp_slash( (array) $prepared ) );

		if ( is_wp_error( $saved ) ) {
			return $saved;
		}

		$fields_update = $this->update_additional_fields_for_object( $item, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$item = WP_Application_Passwords::get_user_application_password( $user->ID, $item['uuid'] );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php */
		do_action( 'rest_after_insert_application_password', $item, $request, false );

		$request->set_param( 'context', 'edit' );
		return $this->prepare_item_for_response( $item, $request );
	}

	/**
	 * Checks if a given request has access to delete all application passwords for a user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_items_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'delete_app_passwords', $user->ID ) ) {
			return new WP_Error(
				'rest_cannot_delete_application_passwords',
				__( 'Sorry, you are not allowed to delete application passwords for this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes all application passwords for a user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_items( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$deleted = WP_Application_Passwords::delete_all_application_passwords( $user->ID );

		if ( is_wp_error( $deleted ) ) {
			return $deleted;
		}

		return new WP_REST_Response(
			array(
				'deleted' => true,
				'count'   => $deleted,
			)
		);
	}

	/**
	 * Checks if a given request has access to delete a specific application password for a user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'delete_app_password', $user->ID, $request['uuid'] ) ) {
			return new WP_Error(
				'rest_cannot_delete_application_password',
				__( 'Sorry, you are not allowed to delete this application password.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes an application password for a user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$password = $this->get_application_password( $request );

		if ( is_wp_error( $password ) ) {
			return $password;
		}

		$request->set_param( 'context', 'edit' );
		$previous = $this->prepare_item_for_response( $password, $request );
		$deleted  = WP_Application_Passwords::delete_application_password( $user->ID, $password['uuid'] );

		if ( is_wp_error( $deleted ) ) {
			return $deleted;
		}

		return new WP_REST_Response(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);
	}

	/**
	 * Checks if a given request has access to get the currently used application password for a user.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_current_item_permissions_check( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( get_current_user_id() !== $user->ID ) {
			return new WP_Error(
				'rest_cannot_introspect_app_password_for_non_authenticated_user',
				__( 'The authenticated application password can only be introspected for the current user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves the application password being currently used for authentication of a user.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_current_item( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$uuid = rest_get_authenticated_app_password();

		if ( ! $uuid ) {
			return new WP_Error(
				'rest_no_authenticated_app_password',
				__( 'Cannot introspect application password.' ),
				array( 'status' => 404 )
			);
		}

		$password = WP_Application_Passwords::get_user_application_password( $user->ID, $uuid );

		if ( ! $password ) {
			return new WP_Error(
				'rest_application_password_not_found',
				__( 'Application password not found.' ),
				array( 'status' => 500 )
			);
		}

		return $this->prepare_item_for_response( $password, $request );
	}

	/**
	 * Performs a permissions check for the request.
	 *
	 * @since 5.6.0
	 * @deprecated 5.7.0 Use `edit_user` directly or one of the specific meta capabilities introduced in 5.7.0.
	 *
	 * @param WP_REST_Request $request
	 * @return true|WP_Error
	 */
	protected function do_permissions_check( $request ) {
		_deprecated_function( __METHOD__, '5.7.0' );

		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		if ( ! current_user_can( 'edit_user', $user->ID ) ) {
			return new WP_Error(
				'rest_cannot_manage_application_passwords',
				__( 'Sorry, you are not allowed to manage application passwords for this user.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Prepares an application password for a create or update operation.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return object|WP_Error The prepared item, or WP_Error object on failure.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared = (object) array(
			'name' => $request['name'],
		);

		if ( $request['app_id'] && ! $request['uuid'] ) {
			$prepared->app_id = $request['app_id'];
		}

		/**
		 * Filters an application password before it is inserted via the REST API.
		 *
		 * @since 5.6.0
		 *
		 * @param stdClass        $prepared An object representing a single application password prepared for inserting or updating the database.
		 * @param WP_REST_Request $request  Request object.
		 */
		return apply_filters( 'rest_pre_insert_application_password', $prepared, $request );
	}

	/**
	 * Prepares the application password for the REST response.
	 *
	 * @since 5.6.0
	 *
	 * @param array           $item    WordPress representation of the item.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$fields = $this->get_fields_for_response( $request );

		$prepared = array(
			'uuid'      => $item['uuid'],
			'app_id'    => empty( $item['app_id'] ) ? '' : $item['app_id'],
			'name'      => $item['name'],
			'created'   => gmdate( 'Y-m-d\TH:i:s', $item['created'] ),
			'last_used' => $item['last_used'] ? gmdate( 'Y-m-d\TH:i:s', $item['last_used'] ) : null,
			'last_ip'   => $item['last_ip'] ? $item['last_ip'] : null,
		);

		if ( isset( $item['new_password'] ) ) {
			$prepared['password'] = $item['new_password'];
		}

		$prepared = $this->add_additional_fields_to_object( $prepared, $request );
		$prepared = $this->filter_response_by_context( $prepared, $request['context'] );

		$response = new WP_REST_Response( $prepared );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $user, $item ) );
		}

		/**
		 * Filters the REST API response for an application password.
		 *
		 * @since 5.6.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param array            $item     The application password array.
		 * @param WP_REST_Request  $request  The request object.
		 */
		return apply_filters( 'rest_prepare_application_password', $response, $item, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_User $user The requested user.
	 * @param array   $item The application password.
	 * @return array The list of links.
	 */
	protected function prepare_links( WP_User $user, $item ) {
		return array(
			'self' => array(
				'href' => rest_url(
					sprintf(
						'%s/users/%d/application-passwords/%s',
						$this->namespace,
						$user->ID,
						$item['uuid']
					)
				),
			),
		);
	}

	/**
	 * Gets the requested user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request The request object.
	 * @return WP_User|WP_Error The WordPress user associated with the request, or a WP_Error if none found.
	 */
	protected function get_user( $request ) {
		if ( ! wp_is_application_passwords_available() ) {
			return new WP_Error(
				'application_passwords_disabled',
				__( 'Application passwords are not available.' ),
				array( 'status' => 501 )
			);
		}

		$error = new WP_Error(
			'rest_user_invalid_id',
			__( 'Invalid user ID.' ),
			array( 'status' => 404 )
		);

		$id = $request['user_id'];

		if ( 'me' === $id ) {
			if ( ! is_user_logged_in() ) {
				return new WP_Error(
					'rest_not_logged_in',
					__( 'You are not currently logged in.' ),
					array( 'status' => 401 )
				);
			}

			$user = wp_get_current_user();
		} else {
			$id = (int) $id;

			if ( $id <= 0 ) {
				return $error;
			}

			$user = get_userdata( $id );
		}

		if ( empty( $user ) || ! $user->exists() ) {
			return $error;
		}

		if ( is_multisite() && ! user_can( $user->ID, 'manage_sites' ) && ! is_user_member_of_blog( $user->ID ) ) {
			return $error;
		}

		if ( ! wp_is_application_passwords_available_for_user( $user ) ) {
			return new WP_Error(
				'application_passwords_disabled_for_user',
				__( 'Application passwords are not available for your account. Please contact the site administrator for assistance.' ),
				array( 'status' => 501 )
			);
		}

		return $user;
	}

	/**
	 * Gets the requested application password for a user.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request The request object.
	 * @return array|WP_Error The application password details if found, a WP_Error otherwise.
	 */
	protected function get_application_password( $request ) {
		$user = $this->get_user( $request );

		if ( is_wp_error( $user ) ) {
			return $user;
		}

		$password = WP_Application_Passwords::get_user_application_password( $user->ID, $request['uuid'] );

		if ( ! $password ) {
			return new WP_Error(
				'rest_application_password_not_found',
				__( 'Application password not found.' ),
				array( 'status' => 404 )
			);
		}

		return $password;
	}

	/**
	 * Retrieves the query params for the collections.
	 *
	 * @since 5.6.0
	 *
	 * @return array Query parameters for the collection.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}

	/**
	 * Retrieves the application password's schema, conforming to JSON Schema.
	 *
	 * @since 5.6.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'application-password',
			'type'       => 'object',
			'properties' => array(
				'uuid'      => array(
					'description' => __( 'The unique identifier for the application password.' ),
					'type'        => 'string',
					'format'      => 'uuid',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'app_id'    => array(
					'description' => __( 'A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.' ),
					'type'        => 'string',
					'oneOf'       => array(
						array(
							'type'   => 'string',
							'format' => 'uuid',
						),
						array(
							'type' => 'string',
							'enum' => array( '' ),
						),
					),
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'name'      => array(
					'description' => __( 'The name of the application password.' ),
					'type'        => 'string',
					'required'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
					'minLength'   => 1,
					'pattern'     => '.*\S.*',
				),
				'password'  => array(
					'description' => __( 'The generated password. Only available after adding an application.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'created'   => array(
					'description' => __( 'The GMT date the application password was created.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'last_used' => array(
					'description' => __( 'The GMT date the application password was last used.' ),
					'type'        => array( 'string', 'null' ),
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'last_ip'   => array(
					'description' => __( 'The IP address the application password was last used by.' ),
					'type'        => array( 'string', 'null' ),
					'format'      => 'ip',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-post-statuses-controller.php000064400000024105152222510010016771 0ustar00<?php
/**
 * REST API: WP_REST_Post_Statuses_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to access post statuses via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Post_Statuses_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'statuses';
	}

	/**
	 * Registers the routes for post statuses.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<status>[\w-]+)',
			array(
				'args'   => array(
					'status' => array(
						'description' => __( 'An alphanumeric identifier for the status.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read post statuses.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( 'edit' === $request['context'] ) {
			$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );

			foreach ( $types as $type ) {
				if ( current_user_can( $type->cap->edit_posts ) ) {
					return true;
				}
			}

			return new WP_Error(
				'rest_cannot_view',
				__( 'Sorry, you are not allowed to manage post statuses.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves all post statuses, depending on user context.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$data              = array();
		$statuses          = get_post_stati( array( 'internal' => false ), 'object' );
		$statuses['trash'] = get_post_status_object( 'trash' );

		foreach ( $statuses as $obj ) {
			$ret = $this->check_read_permission( $obj );

			if ( ! $ret ) {
				continue;
			}

			$status             = $this->prepare_item_for_response( $obj, $request );
			$data[ $obj->name ] = $this->prepare_response_for_collection( $status );
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read a post status.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$status = get_post_status_object( $request['status'] );

		if ( empty( $status ) ) {
			return new WP_Error(
				'rest_status_invalid',
				__( 'Invalid status.' ),
				array( 'status' => 404 )
			);
		}

		$check = $this->check_read_permission( $status );

		if ( ! $check ) {
			return new WP_Error(
				'rest_cannot_read_status',
				__( 'Cannot view status.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Checks whether a given post status should be visible.
	 *
	 * @since 4.7.0
	 *
	 * @param object $status Post status.
	 * @return bool True if the post status is visible, otherwise false.
	 */
	protected function check_read_permission( $status ) {
		if ( true === $status->public ) {
			return true;
		}

		if ( false === $status->internal || 'trash' === $status->name ) {
			$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );

			foreach ( $types as $type ) {
				if ( current_user_can( $type->cap->edit_posts ) ) {
					return true;
				}
			}
		}

		return false;
	}

	/**
	 * Retrieves a specific post status.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$obj = get_post_status_object( $request['status'] );

		if ( empty( $obj ) ) {
			return new WP_Error(
				'rest_status_invalid',
				__( 'Invalid status.' ),
				array( 'status' => 404 )
			);
		}

		$data = $this->prepare_item_for_response( $obj, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Prepares a post status object for serialization.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$status` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param stdClass        $item    Post status data.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Post status data.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$status = $item;

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'name', $fields, true ) ) {
			$data['name'] = $status->label;
		}

		if ( in_array( 'private', $fields, true ) ) {
			$data['private'] = (bool) $status->private;
		}

		if ( in_array( 'protected', $fields, true ) ) {
			$data['protected'] = (bool) $status->protected;
		}

		if ( in_array( 'public', $fields, true ) ) {
			$data['public'] = (bool) $status->public;
		}

		if ( in_array( 'queryable', $fields, true ) ) {
			$data['queryable'] = (bool) $status->publicly_queryable;
		}

		if ( in_array( 'show_in_list', $fields, true ) ) {
			$data['show_in_list'] = (bool) $status->show_in_admin_all_list;
		}

		if ( in_array( 'slug', $fields, true ) ) {
			$data['slug'] = $status->name;
		}

		if ( in_array( 'date_floating', $fields, true ) ) {
			$data['date_floating'] = $status->date_floating;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		$rest_url = rest_url( rest_get_route_for_post_type_items( 'post' ) );
		if ( 'publish' === $status->name ) {
			$response->add_link( 'archives', $rest_url );
		} else {
			$response->add_link( 'archives', add_query_arg( 'status', $status->name, $rest_url ) );
		}

		/**
		 * Filters a post status returned from the REST API.
		 *
		 * Allows modification of the status data right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param object           $status   The original post status object.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_status', $response, $status, $request );
	}

	/**
	 * Retrieves the post status' schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'status',
			'type'       => 'object',
			'properties' => array(
				'name'          => array(
					'description' => __( 'The title for the status.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'private'       => array(
					'description' => __( 'Whether posts with this status should be private.' ),
					'type'        => 'boolean',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'protected'     => array(
					'description' => __( 'Whether posts with this status should be protected.' ),
					'type'        => 'boolean',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'public'        => array(
					'description' => __( 'Whether posts of this status should be shown in the front end of the site.' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'queryable'     => array(
					'description' => __( 'Whether posts with this status should be publicly-queryable.' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'show_in_list'  => array(
					'description' => __( 'Whether to include posts in the edit listing for their post type.' ),
					'type'        => 'boolean',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'slug'          => array(
					'description' => __( 'An alphanumeric identifier for the status.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'date_floating' => array(
					'description' => __( 'Whether posts of this status may have floating published dates.' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}
}
endpoints/class-wp-rest-revisions-controller.php000064400000064253152222510010016164 0ustar00<?php
/**
 * REST API: WP_REST_Revisions_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to access revisions via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Revisions_Controller extends WP_REST_Controller {

	/**
	 * Parent post type.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	private $parent_post_type;

	/**
	 * Instance of a revision meta fields object.
	 *
	 * @since 6.4.0
	 * @var WP_REST_Post_Meta_Fields
	 */
	protected $meta;

	/**
	 * Parent controller.
	 *
	 * @since 4.7.0
	 * @var WP_REST_Controller
	 */
	private $parent_controller;

	/**
	 * The base of the parent controller's route.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	private $parent_base;

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 *
	 * @param string $parent_post_type Post type of the parent.
	 */
	public function __construct( $parent_post_type ) {
		$this->parent_post_type = $parent_post_type;
		$post_type_object       = get_post_type_object( $parent_post_type );
		$parent_controller      = $post_type_object->get_rest_controller();

		if ( ! $parent_controller ) {
			$parent_controller = new WP_REST_Posts_Controller( $parent_post_type );
		}

		$this->parent_controller = $parent_controller;
		$this->rest_base         = 'revisions';
		$this->parent_base       = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
		$this->namespace         = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
		$this->meta              = new WP_REST_Post_Meta_Fields( $parent_post_type );
	}

	/**
	 * Registers the routes for revisions based on post types supporting revisions.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base,
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the revision.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the revision.' ),
						'type'        => 'integer',
					),
					'id'     => array(
						'description' => __( 'Unique identifier for the revision.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Required to be true, as revisions do not support trashing.' ),
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Get the parent post, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $parent_post_id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_parent( $parent_post_id ) {
		$error = new WP_Error(
			'rest_post_invalid_parent',
			__( 'Invalid post parent ID.' ),
			array( 'status' => 404 )
		);

		if ( (int) $parent_post_id <= 0 ) {
			return $error;
		}

		$parent_post = get_post( (int) $parent_post_id );

		if ( empty( $parent_post ) || empty( $parent_post->ID )
			|| $this->parent_post_type !== $parent_post->post_type
		) {
			return $error;
		}

		return $parent_post;
	}

	/**
	 * Checks if a given request has access to get revisions.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		if ( ! current_user_can( 'edit_post', $parent->ID ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to view revisions of this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Get the revision, if the ID is valid.
	 *
	 * @since 4.7.2
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Post|WP_Error Revision post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_revision( $id ) {
		$error = new WP_Error(
			'rest_post_invalid_id',
			__( 'Invalid revision ID.' ),
			array( 'status' => 404 )
		);

		if ( (int) $id <= 0 ) {
			return $error;
		}

		$revision = get_post( (int) $id );
		if ( empty( $revision ) || empty( $revision->ID ) || 'revision' !== $revision->post_type ) {
			return $error;
		}

		return $revision;
	}

	/**
	 * Gets a collection of revisions.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		// Ensure a search string is set in case the orderby is set to 'relevance'.
		if ( ! empty( $request['orderby'] ) && 'relevance' === $request['orderby'] && empty( $request['search'] ) ) {
			return new WP_Error(
				'rest_no_search_term_defined',
				__( 'You need to define a search term to order by relevance.' ),
				array( 'status' => 400 )
			);
		}

		// Ensure an include parameter is set in case the orderby is set to 'include'.
		if ( ! empty( $request['orderby'] ) && 'include' === $request['orderby'] && empty( $request['include'] ) ) {
			return new WP_Error(
				'rest_orderby_include_missing_include',
				__( 'You need to define an include parameter to order by include.' ),
				array( 'status' => 400 )
			);
		}

		$is_head_request = $request->is_method( 'HEAD' );

		if ( wp_revisions_enabled( $parent ) ) {
			$registered = $this->get_collection_params();
			$args       = array(
				'post_parent'      => $parent->ID,
				'post_type'        => 'revision',
				'post_status'      => 'inherit',
				'posts_per_page'   => -1,
				'orderby'          => 'date ID',
				'order'            => 'DESC',
				'suppress_filters' => true,
			);

			$parameter_mappings = array(
				'exclude'  => 'post__not_in',
				'include'  => 'post__in',
				'offset'   => 'offset',
				'order'    => 'order',
				'orderby'  => 'orderby',
				'page'     => 'paged',
				'per_page' => 'posts_per_page',
				'search'   => 's',
			);

			foreach ( $parameter_mappings as $api_param => $wp_param ) {
				if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
					$args[ $wp_param ] = $request[ $api_param ];
				}
			}

			// For backward-compatibility, 'date' needs to resolve to 'date ID'.
			if ( isset( $args['orderby'] ) && 'date' === $args['orderby'] ) {
				$args['orderby'] = 'date ID';
			}

			if ( $is_head_request ) {
				// Force the 'fields' argument. For HEAD requests, only post IDs are required to calculate pagination.
				$args['fields'] = 'ids';
				// Disable priming post meta for HEAD requests to improve performance.
				$args['update_post_term_cache'] = false;
				$args['update_post_meta_cache'] = false;
			}

			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
			$args       = apply_filters( 'rest_revision_query', $args, $request );
			$query_args = $this->prepare_items_query( $args, $request );

			$revisions_query = new WP_Query();
			$revisions       = $revisions_query->query( $query_args );
			$offset          = isset( $query_args['offset'] ) ? (int) $query_args['offset'] : 0;
			$page            = isset( $query_args['paged'] ) ? (int) $query_args['paged'] : 0;
			$total_revisions = $revisions_query->found_posts;

			if ( $total_revisions < 1 ) {
				// Out-of-bounds, run the query without pagination/offset to get the total count.
				unset( $query_args['paged'], $query_args['offset'] );

				$count_query                          = new WP_Query();
				$query_args['fields']                 = 'ids';
				$query_args['posts_per_page']         = 1;
				$query_args['update_post_meta_cache'] = false;
				$query_args['update_post_term_cache'] = false;

				$count_query->query( $query_args );
				$total_revisions = $count_query->found_posts;
			}

			if ( $revisions_query->query_vars['posts_per_page'] > 0 ) {
				$max_pages = (int) ceil( $total_revisions / (int) $revisions_query->query_vars['posts_per_page'] );
			} else {
				$max_pages = $total_revisions > 0 ? 1 : 0;
			}

			if ( $total_revisions > 0 ) {
				if ( $offset >= $total_revisions ) {
					return new WP_Error(
						'rest_revision_invalid_offset_number',
						__( 'The offset number requested is larger than or equal to the number of available revisions.' ),
						array( 'status' => 400 )
					);
				} elseif ( ! $offset && $page > $max_pages ) {
					return new WP_Error(
						'rest_revision_invalid_page_number',
						__( 'The page number requested is larger than the number of pages available.' ),
						array( 'status' => 400 )
					);
				}
			}
		} else {
			$revisions       = array();
			$total_revisions = 0;
			$max_pages       = 0;
			$page            = (int) $request['page'];
		}

		if ( ! $is_head_request ) {
			$response = array();

			foreach ( $revisions as $revision ) {
				$data       = $this->prepare_item_for_response( $revision, $request );
				$response[] = $this->prepare_response_for_collection( $data );
			}

			$response = rest_ensure_response( $response );
		} else {
			$response = new WP_REST_Response( array() );
		}

		$response->header( 'X-WP-Total', (int) $total_revisions );
		$response->header( 'X-WP-TotalPages', (int) $max_pages );

		$request_params = $request->get_query_params();
		$base_path      = rest_url( sprintf( '%s/%s/%d/%s', $this->namespace, $this->parent_base, $request['parent'], $this->rest_base ) );
		$base           = add_query_arg( urlencode_deep( $request_params ), $base_path );

		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Checks if a given request has access to get a specific revision.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		return $this->get_items_permissions_check( $request );
	}

	/**
	 * Retrieves one revision from the collection.
	 *
	 * @since 4.7.0
	 * @since 6.5.0 Added a condition to check that parent id matches revision parent id.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		$revision = $this->get_revision( $request['id'] );
		if ( is_wp_error( $revision ) ) {
			return $revision;
		}

		if ( (int) $parent->ID !== (int) $revision->post_parent ) {
			return new WP_Error(
				'rest_revision_parent_id_mismatch',
				/* translators: %d: A post id. */
				sprintf( __( 'The revision does not belong to the specified parent with id of "%d"' ), $parent->ID ),
				array( 'status' => 404 )
			);
		}

		$response = $this->prepare_item_for_response( $revision, $request );
		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a given request has access to delete a revision.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		if ( ! current_user_can( 'delete_post', $parent->ID ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete revisions of this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$revision = $this->get_revision( $request['id'] );
		if ( is_wp_error( $revision ) ) {
			return $revision;
		}

		$response = $this->get_items_permissions_check( $request );
		if ( ! $response || is_wp_error( $response ) ) {
			return $response;
		}

		if ( ! current_user_can( 'delete_post', $revision->ID ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete this revision.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Deletes a single revision.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$revision = $this->get_revision( $request['id'] );
		if ( is_wp_error( $revision ) ) {
			return $revision;
		}

		$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

		// We don't support trashing for revisions.
		if ( ! $force ) {
			return new WP_Error(
				'rest_trash_not_supported',
				/* translators: %s: force=true */
				sprintf( __( "Revisions do not support trashing. Set '%s' to delete." ), 'force=true' ),
				array( 'status' => 501 )
			);
		}

		$previous = $this->prepare_item_for_response( $revision, $request );

		$result = wp_delete_post( $request['id'], true );

		/**
		 * Fires after a revision is deleted via the REST API.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Post|false|null $result The revision object (if it was deleted or moved to the Trash successfully)
		 *                                   or false or null (failure). If the revision was moved to the Trash, $result represents
		 *                                   its new state; if it was deleted, $result represents its state before deletion.
		 * @param WP_REST_Request $request The request sent to the API.
		 */
		do_action( 'rest_delete_revision', $result, $request );

		if ( ! $result ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The post cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		$response = new WP_REST_Response();
		$response->set_data(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);
		return $response;
	}

	/**
	 * Determines the allowed query_vars for a get_items() response and prepares
	 * them for WP_Query.
	 *
	 * @since 5.0.0
	 *
	 * @param array           $prepared_args Optional. Prepared WP_Query arguments. Default empty array.
	 * @param WP_REST_Request $request       Optional. Full details about the request.
	 * @return array Items query arguments.
	 */
	protected function prepare_items_query( $prepared_args = array(), $request = null ) {
		$query_args = array();

		foreach ( $prepared_args as $key => $value ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
			$query_args[ $key ] = apply_filters( "rest_query_var-{$key}", $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
		}

		// Map to proper WP_Query orderby param.
		if ( isset( $query_args['orderby'] ) && isset( $request['orderby'] ) ) {
			$orderby_mappings = array(
				'id'            => 'ID',
				'include'       => 'post__in',
				'slug'          => 'post_name',
				'include_slugs' => 'post_name__in',
			);

			if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) {
				$query_args['orderby'] = $orderby_mappings[ $request['orderby'] ];
			}
		}

		return $query_args;
	}

	/**
	 * Prepares the revision for the REST response.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param WP_Post         $item    Post revision object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$post = $item;

		$GLOBALS['post'] = $post;

		setup_postdata( $post );

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php */
			return apply_filters( 'rest_prepare_revision', new WP_REST_Response( array() ), $post, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'author', $fields, true ) ) {
			$data['author'] = (int) $post->post_author;
		}

		if ( in_array( 'date', $fields, true ) ) {
			$data['date'] = $this->prepare_date_response( $post->post_date_gmt, $post->post_date );
		}

		if ( in_array( 'date_gmt', $fields, true ) ) {
			$data['date_gmt'] = $this->prepare_date_response( $post->post_date_gmt );
		}

		if ( in_array( 'id', $fields, true ) ) {
			$data['id'] = $post->ID;
		}

		if ( in_array( 'modified', $fields, true ) ) {
			$data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified );
		}

		if ( in_array( 'modified_gmt', $fields, true ) ) {
			$data['modified_gmt'] = $this->prepare_date_response( $post->post_modified_gmt );
		}

		if ( in_array( 'parent', $fields, true ) ) {
			$data['parent'] = (int) $post->post_parent;
		}

		if ( in_array( 'slug', $fields, true ) ) {
			$data['slug'] = $post->post_name;
		}

		if ( in_array( 'guid', $fields, true ) ) {
			$data['guid'] = array(
				/** This filter is documented in wp-includes/post-template.php */
				'rendered' => apply_filters( 'get_the_guid', $post->guid, $post->ID ),
				'raw'      => $post->guid,
			);
		}

		if ( in_array( 'title', $fields, true ) ) {
			$data['title'] = array(
				'raw'      => $post->post_title,
				'rendered' => get_the_title( $post->ID ),
			);
		}

		if ( in_array( 'content', $fields, true ) ) {

			$data['content'] = array(
				'raw'      => $post->post_content,
				/** This filter is documented in wp-includes/post-template.php */
				'rendered' => apply_filters( 'the_content', $post->post_content ),
			);
		}

		if ( in_array( 'excerpt', $fields, true ) ) {
			$data['excerpt'] = array(
				'raw'      => $post->post_excerpt,
				'rendered' => $this->prepare_excerpt_response( $post->post_excerpt, $post ),
			);
		}

		if ( rest_is_field_included( 'meta', $fields ) ) {
			$data['meta'] = $this->meta->get_value( $post->ID, $request );
		}

		$context  = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data     = $this->add_additional_fields_to_object( $data, $request );
		$data     = $this->filter_response_by_context( $data, $context );
		$response = rest_ensure_response( $data );

		if ( ! empty( $data['parent'] ) ) {
			$response->add_link( 'parent', rest_url( rest_get_route_for_post( $data['parent'] ) ) );
		}

		/**
		 * Filters a revision returned from the REST API.
		 *
		 * Allows modification of the revision right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     The original revision object.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_revision', $response, $post, $request );
	}

	/**
	 * Checks the post_date_gmt or modified_gmt and prepare any post or
	 * modified date for single post output.
	 *
	 * @since 4.7.0
	 *
	 * @param string      $date_gmt GMT publication time.
	 * @param string|null $date     Optional. Local publication time. Default null.
	 * @return string|null ISO8601/RFC3339 formatted datetime, otherwise null.
	 */
	protected function prepare_date_response( $date_gmt, $date = null ) {
		if ( '0000-00-00 00:00:00' === $date_gmt ) {
			return null;
		}

		if ( isset( $date ) ) {
			return mysql_to_rfc3339( $date );
		}

		return mysql_to_rfc3339( $date_gmt );
	}

	/**
	 * Retrieves the revision's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => "{$this->parent_post_type}-revision",
			'type'       => 'object',
			// Base properties for every Revision.
			'properties' => array(
				'author'       => array(
					'description' => __( 'The ID for the author of the revision.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'date'         => array(
					'description' => __( "The date the revision was published, in the site's timezone." ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'date_gmt'     => array(
					'description' => __( 'The date the revision was published, as GMT.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
				),
				'guid'         => array(
					'description' => __( 'GUID for the revision, as it exists in the database.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
				),
				'id'           => array(
					'description' => __( 'Unique identifier for the revision.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'modified'     => array(
					'description' => __( "The date the revision was last modified, in the site's timezone." ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
				),
				'modified_gmt' => array(
					'description' => __( 'The date the revision was last modified, as GMT.' ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
				),
				'parent'       => array(
					'description' => __( 'The ID for the parent of the revision.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'slug'         => array(
					'description' => __( 'An alphanumeric identifier for the revision unique to its type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
			),
		);

		$parent_schema = $this->parent_controller->get_item_schema();

		if ( ! empty( $parent_schema['properties']['title'] ) ) {
			$schema['properties']['title'] = $parent_schema['properties']['title'];
		}

		if ( ! empty( $parent_schema['properties']['content'] ) ) {
			$schema['properties']['content'] = $parent_schema['properties']['content'];
		}

		if ( ! empty( $parent_schema['properties']['excerpt'] ) ) {
			$schema['properties']['excerpt'] = $parent_schema['properties']['excerpt'];
		}

		if ( ! empty( $parent_schema['properties']['guid'] ) ) {
			$schema['properties']['guid'] = $parent_schema['properties']['guid'];
		}

		$schema['properties']['meta'] = $this->meta->get_field_schema();

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		unset( $query_params['per_page']['default'] );

		$query_params['exclude'] = array(
			'description' => __( 'Ensure result set excludes specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['include'] = array(
			'description' => __( 'Limit result set to specific IDs.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'integer',
			),
			'default'     => array(),
		);

		$query_params['offset'] = array(
			'description' => __( 'Offset the result set by a specific number of items.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'desc',
			'enum'        => array( 'asc', 'desc' ),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by object attribute.' ),
			'type'        => 'string',
			'default'     => 'date',
			'enum'        => array(
				'date',
				'id',
				'include',
				'relevance',
				'slug',
				'include_slugs',
				'title',
			),
		);

		return $query_params;
	}

	/**
	 * Checks the post excerpt and prepare it for single post output.
	 *
	 * @since 4.7.0
	 *
	 * @param string  $excerpt The post excerpt.
	 * @param WP_Post $post    Post revision object.
	 * @return string Prepared excerpt or empty string.
	 */
	protected function prepare_excerpt_response( $excerpt, $post ) {

		/** This filter is documented in wp-includes/post-template.php */
		$excerpt = apply_filters( 'the_excerpt', $excerpt, $post );

		if ( empty( $excerpt ) ) {
			return '';
		}

		return $excerpt;
	}
}
endpoints/class-wp-rest-themes-controller.php000064400000055422152222510010015426 0ustar00<?php
/**
 * REST API: WP_REST_Themes_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Core class used to manage themes via the REST API.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Themes_Controller extends WP_REST_Controller {

	/**
	 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
	 * Excludes invalid directory name characters: `/:<>*?"|`.
	 */
	const PATTERN = '[^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?';

	/**
	 * Constructor.
	 *
	 * @since 5.0.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'themes';
	}

	/**
	 * Registers the routes for themes.
	 *
	 * @since 5.0.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf( '/%s/(?P<stylesheet>%s)', $this->rest_base, self::PATTERN ),
			array(
				'args'   => array(
					'stylesheet' => array(
						'description'       => __( "The theme's stylesheet. This uniquely identifies the theme." ),
						'type'              => 'string',
						'sanitize_callback' => array( $this, '_sanitize_stylesheet_callback' ),
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Sanitize the stylesheet to decode endpoint.
	 *
	 * @since 5.9.0
	 *
	 * @param string $stylesheet The stylesheet name.
	 * @return string Sanitized stylesheet.
	 */
	public function _sanitize_stylesheet_callback( $stylesheet ) {
		return urldecode( $stylesheet );
	}

	/**
	 * Checks if a given request has access to read the theme.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
	 */
	public function get_items_permissions_check( $request ) {
		if ( current_user_can( 'switch_themes' ) || current_user_can( 'manage_network_themes' ) ) {
			return true;
		}

		$registered = $this->get_collection_params();
		if ( isset( $registered['status'], $request['status'] ) && is_array( $request['status'] ) && array( 'active' ) === $request['status'] ) {
			return $this->check_read_active_theme_permission();
		}

		return new WP_Error(
			'rest_cannot_view_themes',
			__( 'Sorry, you are not allowed to view themes.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Checks if a given request has access to read the theme.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
	 */
	public function get_item_permissions_check( $request ) {
		if ( current_user_can( 'switch_themes' ) || current_user_can( 'manage_network_themes' ) ) {
			return true;
		}

		$wp_theme      = wp_get_theme( $request['stylesheet'] );
		$current_theme = wp_get_theme();

		if ( $this->is_same_theme( $wp_theme, $current_theme ) ) {
			return $this->check_read_active_theme_permission();
		}

		return new WP_Error(
			'rest_cannot_view_themes',
			__( 'Sorry, you are not allowed to view themes.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Checks if a theme can be read.
	 *
	 * @since 5.7.0
	 *
	 * @return true|WP_Error True if the theme can be read, WP_Error object otherwise.
	 */
	protected function check_read_active_theme_permission() {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view_active_theme',
			__( 'Sorry, you are not allowed to view the active theme.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Retrieves a single theme.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$wp_theme = wp_get_theme( $request['stylesheet'] );
		if ( ! $wp_theme->exists() ) {
			return new WP_Error(
				'rest_theme_not_found',
				__( 'Theme not found.' ),
				array( 'status' => 404 )
			);
		}
		$data = $this->prepare_item_for_response( $wp_theme, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Retrieves a collection of themes.
	 *
	 * @since 5.0.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$themes = array();

		$active_themes = wp_get_themes();
		$current_theme = wp_get_theme();
		$status        = $request['status'];

		foreach ( $active_themes as $theme ) {
			$theme_status = ( $this->is_same_theme( $theme, $current_theme ) ) ? 'active' : 'inactive';
			if ( is_array( $status ) && ! in_array( $theme_status, $status, true ) ) {
				continue;
			}

			$prepared = $this->prepare_item_for_response( $theme, $request );
			$themes[] = $this->prepare_response_for_collection( $prepared );
		}

		$response = rest_ensure_response( $themes );

		$response->header( 'X-WP-Total', count( $themes ) );
		$response->header( 'X-WP-TotalPages', 1 );

		return $response;
	}

	/**
	 * Prepares a single theme output for response.
	 *
	 * @since 5.0.0
	 * @since 5.9.0 Renamed `$theme` to `$item` to match parent class for PHP 8 named parameter support.
	 * @since 6.6.0 Added `stylesheet_uri` and `template_uri` fields.
	 *
	 * @param WP_Theme        $item    Theme object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$theme = $item;

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'stylesheet', $fields ) ) {
			$data['stylesheet'] = $theme->get_stylesheet();
		}

		if ( rest_is_field_included( 'template', $fields ) ) {
			/**
			 * Use the get_template() method, not the 'Template' header, for finding the template.
			 * The 'Template' header is only good for what was written in the style.css, while
			 * get_template() takes into account where WordPress actually located the theme and
			 * whether it is actually valid.
			 */
			$data['template'] = $theme->get_template();
		}

		$plain_field_mappings = array(
			'requires_php' => 'RequiresPHP',
			'requires_wp'  => 'RequiresWP',
			'textdomain'   => 'TextDomain',
			'version'      => 'Version',
		);

		foreach ( $plain_field_mappings as $field => $header ) {
			if ( rest_is_field_included( $field, $fields ) ) {
				$data[ $field ] = $theme->get( $header );
			}
		}

		if ( rest_is_field_included( 'screenshot', $fields ) ) {
			// Using $theme->get_screenshot() with no args to get absolute URL.
			$data['screenshot'] = $theme->get_screenshot() ? $theme->get_screenshot() : '';
		}

		$rich_field_mappings = array(
			'author'      => 'Author',
			'author_uri'  => 'AuthorURI',
			'description' => 'Description',
			'name'        => 'Name',
			'tags'        => 'Tags',
			'theme_uri'   => 'ThemeURI',
		);

		foreach ( $rich_field_mappings as $field => $header ) {
			if ( rest_is_field_included( "{$field}.raw", $fields ) ) {
				$data[ $field ]['raw'] = $theme->display( $header, false, true );
			}

			if ( rest_is_field_included( "{$field}.rendered", $fields ) ) {
				$data[ $field ]['rendered'] = $theme->display( $header );
			}
		}

		$current_theme = wp_get_theme();
		if ( rest_is_field_included( 'status', $fields ) ) {
			$data['status'] = ( $this->is_same_theme( $theme, $current_theme ) ) ? 'active' : 'inactive';
		}

		if ( rest_is_field_included( 'theme_supports', $fields ) && $this->is_same_theme( $theme, $current_theme ) ) {
			foreach ( get_registered_theme_features() as $feature => $config ) {
				if ( ! is_array( $config['show_in_rest'] ) ) {
					continue;
				}

				$name = $config['show_in_rest']['name'];

				if ( ! rest_is_field_included( "theme_supports.{$name}", $fields ) ) {
					continue;
				}

				if ( ! current_theme_supports( $feature ) ) {
					$data['theme_supports'][ $name ] = $config['show_in_rest']['schema']['default'];
					continue;
				}

				$support = get_theme_support( $feature );

				if ( isset( $config['show_in_rest']['prepare_callback'] ) ) {
					$prepare = $config['show_in_rest']['prepare_callback'];
				} else {
					$prepare = array( $this, 'prepare_theme_support' );
				}

				$prepared = $prepare( $support, $config, $feature, $request );

				if ( is_wp_error( $prepared ) ) {
					continue;
				}

				$data['theme_supports'][ $name ] = $prepared;
			}
		}

		if ( rest_is_field_included( 'is_block_theme', $fields ) ) {
			$data['is_block_theme'] = $theme->is_block_theme();
		}

		if ( rest_is_field_included( 'stylesheet_uri', $fields ) ) {
			if ( $this->is_same_theme( $theme, $current_theme ) ) {
				$data['stylesheet_uri'] = get_stylesheet_directory_uri();
			} else {
				$data['stylesheet_uri'] = $theme->get_stylesheet_directory_uri();
			}
		}

		if ( rest_is_field_included( 'template_uri', $fields ) ) {
			if ( $this->is_same_theme( $theme, $current_theme ) ) {
				$data['template_uri'] = get_template_directory_uri();
			} else {
				$data['template_uri'] = $theme->get_template_directory_uri();
			}
		}

		if ( rest_is_field_included( 'default_template_types', $fields ) && $this->is_same_theme( $theme, $current_theme ) ) {
			$default_template_types = array();
			foreach ( get_default_block_template_types() as $slug => $template_type ) {
				$template_type['slug']    = (string) $slug;
				$default_template_types[] = $template_type;
			}
			$data['default_template_types'] = $default_template_types;
		}

		if ( rest_is_field_included( 'default_template_part_areas', $fields ) && $this->is_same_theme( $theme, $current_theme ) ) {
			$data['default_template_part_areas'] = get_allowed_block_template_part_areas();
		}

		$data = $this->add_additional_fields_to_object( $data, $request );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $theme ) );
		}

		/**
		 * Filters theme data returned from the REST API.
		 *
		 * @since 5.0.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Theme         $theme    Theme object used to create response.
		 * @param WP_REST_Request  $request  Request object.
		 */
		return apply_filters( 'rest_prepare_theme', $response, $theme, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_Theme $theme Theme data.
	 * @return array Links for the given block type.
	 */
	protected function prepare_links( $theme ) {
		$links = array(
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $theme->get_stylesheet() ) ),
			),
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
		);

		if ( $this->is_same_theme( $theme, wp_get_theme() ) ) {
			// This creates a record for the active theme if not existent.
			$id = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();
		} else {
			$user_cpt = WP_Theme_JSON_Resolver::get_user_data_from_wp_global_styles( $theme );
			$id       = isset( $user_cpt['ID'] ) ? $user_cpt['ID'] : null;
		}

		if ( $id ) {
			$links['https://api.w.org/user-global-styles'] = array(
				'href' => rest_url( 'wp/v2/global-styles/' . $id ),
			);
		}

		if ( $theme->is_block_theme() && $this->is_same_theme( $theme, wp_get_theme() ) ) {
			$links['https://api.w.org/export-theme'] = array(
				'href'        => rest_url( 'wp-block-editor/v1/export' ),
				'targetHints' => array(
					'allow' => current_user_can( 'export' ) ? array( 'GET' ) : array(),
				),
			);
		}

		return $links;
	}

	/**
	 * Helper function to compare two themes.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_Theme $theme_a First theme to compare.
	 * @param WP_Theme $theme_b Second theme to compare.
	 * @return bool
	 */
	protected function is_same_theme( $theme_a, $theme_b ) {
		return $theme_a->get_stylesheet() === $theme_b->get_stylesheet();
	}

	/**
	 * Prepares the theme support value for inclusion in the REST API response.
	 *
	 * @since 5.5.0
	 *
	 * @param mixed           $support The raw value from get_theme_support().
	 * @param array           $args    The feature's registration args.
	 * @param string          $feature The feature name.
	 * @param WP_REST_Request $request The request object.
	 * @return mixed The prepared support value.
	 */
	protected function prepare_theme_support( $support, $args, $feature, $request ) {
		$schema = $args['show_in_rest']['schema'];

		if ( 'boolean' === $schema['type'] ) {
			return true;
		}

		if ( is_array( $support ) && ! $args['variadic'] ) {
			$support = $support[0];
		}

		return rest_sanitize_value_from_schema( $support, $schema );
	}

	/**
	 * Retrieves the theme's schema, conforming to JSON Schema.
	 *
	 * @since 5.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'theme',
			'type'       => 'object',
			'properties' => array(
				'stylesheet'                  => array(
					'description' => __( 'The theme\'s stylesheet. This uniquely identifies the theme.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'stylesheet_uri'              => array(
					'description' => __( 'The uri for the theme\'s stylesheet directory.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'readonly'    => true,
				),
				'template'                    => array(
					'description' => __( 'The theme\'s template. If this is a child theme, this refers to the parent theme, otherwise this is the same as the theme\'s stylesheet.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'template_uri'                => array(
					'description' => __( 'The uri for the theme\'s template directory. If this is a child theme, this refers to the parent theme, otherwise this is the same as the theme\'s stylesheet directory.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'readonly'    => true,
				),
				'author'                      => array(
					'description' => __( 'The theme author.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The theme author\'s name, as found in the theme header.' ),
							'type'        => 'string',
						),
						'rendered' => array(
							'description' => __( 'HTML for the theme author, transformed for display.' ),
							'type'        => 'string',
						),
					),
				),
				'author_uri'                  => array(
					'description' => __( 'The website of the theme author.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The website of the theme author, as found in the theme header.' ),
							'type'        => 'string',
							'format'      => 'uri',
						),
						'rendered' => array(
							'description' => __( 'The website of the theme author, transformed for display.' ),
							'type'        => 'string',
							'format'      => 'uri',
						),
					),
				),
				'description'                 => array(
					'description' => __( 'A description of the theme.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The theme description, as found in the theme header.' ),
							'type'        => 'string',
						),
						'rendered' => array(
							'description' => __( 'The theme description, transformed for display.' ),
							'type'        => 'string',
						),
					),
				),
				'is_block_theme'              => array(
					'description' => __( 'Whether the theme is a block-based theme.' ),
					'type'        => 'boolean',
					'readonly'    => true,
				),
				'name'                        => array(
					'description' => __( 'The name of the theme.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The theme name, as found in the theme header.' ),
							'type'        => 'string',
						),
						'rendered' => array(
							'description' => __( 'The theme name, transformed for display.' ),
							'type'        => 'string',
						),
					),
				),
				'requires_php'                => array(
					'description' => __( 'The minimum PHP version required for the theme to work.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'requires_wp'                 => array(
					'description' => __( 'The minimum WordPress version required for the theme to work.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'screenshot'                  => array(
					'description' => __( 'The theme\'s screenshot URL.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'readonly'    => true,
				),
				'tags'                        => array(
					'description' => __( 'Tags indicating styles and features of the theme.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The theme tags, as found in the theme header.' ),
							'type'        => 'array',
							'items'       => array(
								'type' => 'string',
							),
						),
						'rendered' => array(
							'description' => __( 'The theme tags, transformed for display.' ),
							'type'        => 'string',
						),
					),
				),
				'textdomain'                  => array(
					'description' => __( 'The theme\'s text domain.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'theme_supports'              => array(
					'description' => __( 'Features supported by this theme.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(),
				),
				'theme_uri'                   => array(
					'description' => __( 'The URI of the theme\'s webpage.' ),
					'type'        => 'object',
					'readonly'    => true,
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The URI of the theme\'s webpage, as found in the theme header.' ),
							'type'        => 'string',
							'format'      => 'uri',
						),
						'rendered' => array(
							'description' => __( 'The URI of the theme\'s webpage, transformed for display.' ),
							'type'        => 'string',
							'format'      => 'uri',
						),
					),
				),
				'version'                     => array(
					'description' => __( 'The theme\'s current version.' ),
					'type'        => 'string',
					'readonly'    => true,
				),
				'status'                      => array(
					'description' => __( 'A named status for the theme.' ),
					'type'        => 'string',
					'enum'        => array( 'inactive', 'active' ),
				),
				'default_template_types'      => array(
					'description' => __( 'A list of default template types.' ),
					'type'        => 'array',
					'readonly'    => true,
					'items'       => array(
						'type'       => 'object',
						'properties' => array(
							'slug'        => array(
								'type' => 'string',
							),
							'title'       => array(
								'type' => 'string',
							),
							'description' => array(
								'type' => 'string',
							),
						),
					),
				),
				'default_template_part_areas' => array(
					'description' => __( 'A list of allowed area values for template parts.' ),
					'type'        => 'array',
					'readonly'    => true,
					'items'       => array(
						'type'       => 'object',
						'properties' => array(
							'area'        => array(
								'type' => 'string',
							),
							'label'       => array(
								'type' => 'string',
							),
							'description' => array(
								'type' => 'string',
							),
							'icon'        => array(
								'type' => 'string',
							),
							'area_tag'    => array(
								'type' => 'string',
							),
						),
					),
				),
			),
		);

		foreach ( get_registered_theme_features() as $feature => $config ) {
			if ( ! is_array( $config['show_in_rest'] ) ) {
				continue;
			}

			$name = $config['show_in_rest']['name'];

			$schema['properties']['theme_supports']['properties'][ $name ] = $config['show_in_rest']['schema'];
		}

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the search params for the themes collection.
	 *
	 * @since 5.0.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = array(
			'status' => array(
				'description' => __( 'Limit result set to themes assigned one or more statuses.' ),
				'type'        => 'array',
				'items'       => array(
					'enum' => array( 'active', 'inactive' ),
					'type' => 'string',
				),
			),
		);

		/**
		 * Filters REST API collection parameters for the themes controller.
		 *
		 * @since 5.0.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_themes_collection_params', $query_params );
	}

	/**
	 * Sanitizes and validates the list of theme status.
	 *
	 * @since 5.0.0
	 * @deprecated 5.7.0
	 *
	 * @param string|array    $statuses  One or more theme statuses.
	 * @param WP_REST_Request $request   Full details about the request.
	 * @param string          $parameter Additional parameter to pass to validation.
	 * @return array|WP_Error A list of valid statuses, otherwise WP_Error object.
	 */
	public function sanitize_theme_status( $statuses, $request, $parameter ) {
		_deprecated_function( __METHOD__, '5.7.0' );

		$statuses = wp_parse_slug_list( $statuses );

		foreach ( $statuses as $status ) {
			$result = rest_validate_request_arg( $status, $request, $parameter );

			if ( is_wp_error( $result ) ) {
				return $result;
			}
		}

		return $statuses;
	}
}
endpoints/class-wp-rest-edit-site-export-controller.php000064400000004076152222510010017346 0ustar00<?php
/**
 * REST API: WP_REST_Edit_Site_Export_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 */

/**
 * Controller which provides REST endpoint for exporting current templates
 * and template parts.
 *
 * @since 5.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Edit_Site_Export_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 5.9.0
	 */
	public function __construct() {
		$this->namespace = 'wp-block-editor/v1';
		$this->rest_base = 'export';
	}

	/**
	 * Registers the site export route.
	 *
	 * @since 5.9.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'export' ),
					'permission_callback' => array( $this, 'permissions_check' ),
				),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to export.
	 *
	 * @since 5.9.0
	 *
	 * @return true|WP_Error True if the request has access, or WP_Error object.
	 */
	public function permissions_check() {
		if ( current_user_can( 'export' ) ) {
			return true;
		}

		return new WP_Error(
			'rest_cannot_export_templates',
			__( 'Sorry, you are not allowed to export templates and template parts.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Output a ZIP file with an export of the current templates
	 * and template parts from the site editor, and close the connection.
	 *
	 * @since 5.9.0
	 *
	 * @return void|WP_Error
	 */
	public function export() {
		// Generate the export file.
		$filename = wp_generate_block_templates_export_file();

		if ( is_wp_error( $filename ) ) {
			$filename->add_data( array( 'status' => 500 ) );

			return $filename;
		}

		$theme_name = basename( get_stylesheet() );
		header( 'Content-Type: application/zip' );
		header( 'Content-Disposition: attachment; filename=' . $theme_name . '.zip' );
		header( 'Content-Length: ' . filesize( $filename ) );
		flush();
		readfile( $filename );
		unlink( $filename );
		exit;
	}
}
endpoints/class-wp-rest-font-families-controller.php000064400000042152152222510010016672 0ustar00<?php
/**
 * REST API: WP_REST_Font_Families_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.5.0
 */

/**
 * Font Families Controller class.
 *
 * @since 6.5.0
 */
class WP_REST_Font_Families_Controller extends WP_REST_Posts_Controller {

	/**
	 * The latest version of theme.json schema supported by the controller.
	 *
	 * @since 6.5.0
	 * @var int
	 */
	const LATEST_THEME_JSON_VERSION_SUPPORTED = 3;

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 6.5.0
	 * @var false
	 */
	protected $allow_batch = false;

	/**
	 * Checks if a given request has access to font families.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$post_type = get_post_type_object( $this->post_type );

		if ( ! current_user_can( $post_type->cap->read ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to access font families.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Checks if a given request has access to a font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$post = $this->get_post( $request['id'] );
		if ( is_wp_error( $post ) ) {
			return $post;
		}

		if ( ! current_user_can( 'read_post', $post->ID ) ) {
			return new WP_Error(
				'rest_cannot_read',
				__( 'Sorry, you are not allowed to access this font family.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Validates settings when creating or updating a font family.
	 *
	 * @since 6.5.0
	 *
	 * @param string          $value   Encoded JSON string of font family settings.
	 * @param WP_REST_Request $request Request object.
	 * @return true|WP_Error True if the settings are valid, otherwise a WP_Error object.
	 */
	public function validate_font_family_settings( $value, $request ) {
		$settings = json_decode( $value, true );

		// Check settings string is valid JSON.
		if ( null === $settings ) {
			return new WP_Error(
				'rest_invalid_param',
				/* translators: %s: Parameter name: "font_family_settings". */
				sprintf( __( '%s parameter must be a valid JSON string.' ), 'font_family_settings' ),
				array( 'status' => 400 )
			);
		}

		$schema   = $this->get_item_schema()['properties']['font_family_settings'];
		$required = $schema['required'];

		if ( isset( $request['id'] ) ) {
			// Allow sending individual properties if we are updating an existing font family.
			unset( $schema['required'] );

			// But don't allow updating the slug, since it is used as a unique identifier.
			if ( isset( $settings['slug'] ) ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: %s: Name of parameter being updated: font_family_settings[slug]". */
					sprintf( __( '%s cannot be updated.' ), 'font_family_settings[slug]' ),
					array( 'status' => 400 )
				);
			}
		}

		// Check that the font face settings match the theme.json schema.
		$has_valid_settings = rest_validate_value_from_schema( $settings, $schema, 'font_family_settings' );

		if ( is_wp_error( $has_valid_settings ) ) {
			$has_valid_settings->add_data( array( 'status' => 400 ) );
			return $has_valid_settings;
		}

		// Check that none of the required settings are empty values.
		foreach ( $required as $key ) {
			if ( isset( $settings[ $key ] ) && ! $settings[ $key ] ) {
				return new WP_Error(
					'rest_invalid_param',
					/* translators: %s: Name of the empty font family setting parameter, e.g. "font_family_settings[slug]". */
					sprintf( __( '%s cannot be empty.' ), "font_family_settings[ $key ]" ),
					array( 'status' => 400 )
				);
			}
		}

		return true;
	}

	/**
	 * Sanitizes the font family settings when creating or updating a font family.
	 *
	 * @since 6.5.0
	 *
	 * @param string $value Encoded JSON string of font family settings.
	 * @return array Decoded array of font family settings.
	 */
	public function sanitize_font_family_settings( $value ) {
		// Settings arrive as stringified JSON, since this is a multipart/form-data request.
		$settings = json_decode( $value, true );
		$schema   = $this->get_item_schema()['properties']['font_family_settings']['properties'];

		// Sanitize settings based on callbacks in the schema.
		foreach ( $settings as $key => $value ) {
			$sanitize_callback = $schema[ $key ]['arg_options']['sanitize_callback'];
			$settings[ $key ]  = call_user_func( $sanitize_callback, $value );
		}

		return $settings;
	}

	/**
	 * Creates a single font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		$settings = $request->get_param( 'font_family_settings' );

		// Check that the font family slug is unique.
		$query = new WP_Query(
			array(
				'post_type'              => $this->post_type,
				'posts_per_page'         => 1,
				'name'                   => $settings['slug'],
				'update_post_meta_cache' => false,
				'update_post_term_cache' => false,
			)
		);
		if ( ! empty( $query->posts ) ) {
			return new WP_Error(
				'rest_duplicate_font_family',
				/* translators: %s: Font family slug. */
				sprintf( __( 'A font family with slug "%s" already exists.' ), $settings['slug'] ),
				array( 'status' => 400 )
			);
		}

		return parent::create_item( $request );
	}

	/**
	 * Deletes a single font family.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

		// We don't support trashing for font families.
		if ( ! $force ) {
			return new WP_Error(
				'rest_trash_not_supported',
				/* translators: %s: force=true */
				sprintf( __( 'Font faces do not support trashing. Set "%s" to delete.' ), 'force=true' ),
				array( 'status' => 501 )
			);
		}

		return parent::delete_item( $request );
	}

	/**
	 * Prepares a single font family output for response.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post         $item    Post object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $item->ID;
		}

		if ( rest_is_field_included( 'theme_json_version', $fields ) ) {
			$data['theme_json_version'] = static::LATEST_THEME_JSON_VERSION_SUPPORTED;
		}

		if ( rest_is_field_included( 'font_faces', $fields ) ) {
			$data['font_faces'] = $this->get_font_face_ids( $item->ID );
		}

		if ( rest_is_field_included( 'font_family_settings', $fields ) ) {
			$data['font_family_settings'] = $this->get_settings_from_post( $item );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) ) {
			$links = $this->prepare_links( $item );
			$response->add_links( $links );
		}

		/**
		 * Filters the font family data for a REST API response.
		 *
		 * @since 6.5.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Post          $post     Font family post object.
		 * @param WP_REST_Request  $request  Request object.
		 */
		return apply_filters( 'rest_prepare_wp_font_family', $response, $item, $request );
	}

	/**
	 * Retrieves the post's schema, conforming to JSON Schema.
	 *
	 * @since 6.5.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => $this->post_type,
			'type'       => 'object',
			// Base properties for every Post.
			'properties' => array(
				'id'                   => array(
					'description' => __( 'Unique identifier for the post.', 'default' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'theme_json_version'   => array(
					'description' => __( 'Version of the theme.json schema used for the typography settings.' ),
					'type'        => 'integer',
					'default'     => static::LATEST_THEME_JSON_VERSION_SUPPORTED,
					'minimum'     => 2,
					'maximum'     => static::LATEST_THEME_JSON_VERSION_SUPPORTED,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'font_faces'           => array(
					'description' => __( 'The IDs of the child font faces in the font family.' ),
					'type'        => 'array',
					'context'     => array( 'view', 'edit', 'embed' ),
					'items'       => array(
						'type' => 'integer',
					),
				),
				// Font family settings come directly from theme.json schema
				// See https://schemas.wp.org/trunk/theme.json
				'font_family_settings' => array(
					'description'          => __( 'font-face definition in theme.json format.' ),
					'type'                 => 'object',
					'context'              => array( 'view', 'edit', 'embed' ),
					'properties'           => array(
						'name'       => array(
							'description' => __( 'Name of the font family preset, translatable.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_text_field',
							),
						),
						'slug'       => array(
							'description' => __( 'Kebab-case unique identifier for the font family preset.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_title',
							),
						),
						'fontFamily' => array(
							'description' => __( 'CSS font-family value.' ),
							'type'        => 'string',
							'arg_options' => array(
								'sanitize_callback' => array( 'WP_Font_Utils', 'sanitize_font_family' ),
							),
						),
						'preview'    => array(
							'description' => __( 'URL to a preview image of the font family.' ),
							'type'        => 'string',
							'format'      => 'uri',
							'default'     => '',
							'arg_options' => array(
								'sanitize_callback' => 'sanitize_url',
							),
						),
					),
					'required'             => array( 'name', 'slug', 'fontFamily' ),
					'additionalProperties' => false,
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the item's schema for display / public consumption purposes.
	 *
	 * @since 6.5.0
	 *
	 * @return array Public item schema data.
	 */
	public function get_public_item_schema() {

		$schema = parent::get_public_item_schema();

		// Also remove `arg_options' from child font_family_settings properties, since the parent
		// controller only handles the top level properties.
		foreach ( $schema['properties']['font_family_settings']['properties'] as &$property ) {
			unset( $property['arg_options'] );
		}

		return $schema;
	}

	/**
	 * Retrieves the query params for the font family collection.
	 *
	 * @since 6.5.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		// Remove unneeded params.
		unset(
			$query_params['after'],
			$query_params['modified_after'],
			$query_params['before'],
			$query_params['modified_before'],
			$query_params['search'],
			$query_params['search_columns'],
			$query_params['status']
		);

		$query_params['orderby']['default'] = 'id';
		$query_params['orderby']['enum']    = array( 'id', 'include' );

		/**
		 * Filters collection parameters for the font family controller.
		 *
		 * @since 6.5.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_wp_font_family_collection_params', $query_params );
	}

	/**
	 * Get the arguments used when creating or updating a font family.
	 *
	 * @since 6.5.0
	 *
	 * @return array Font family create/edit arguments.
	 */
	public function get_endpoint_args_for_item_schema( $method = WP_REST_Server::CREATABLE ) {
		if ( WP_REST_Server::CREATABLE === $method || WP_REST_Server::EDITABLE === $method ) {
			$properties = $this->get_item_schema()['properties'];
			return array(
				'theme_json_version'   => $properties['theme_json_version'],
				// When creating or updating, font_family_settings is stringified JSON, to work with multipart/form-data.
				// Font families don't currently support file uploads, but may accept preview files in the future.
				'font_family_settings' => array(
					'description'       => __( 'font-family declaration in theme.json format, encoded as a string.' ),
					'type'              => 'string',
					'required'          => true,
					'validate_callback' => array( $this, 'validate_font_family_settings' ),
					'sanitize_callback' => array( $this, 'sanitize_font_family_settings' ),
				),
			);
		}

		return parent::get_endpoint_args_for_item_schema( $method );
	}

	/**
	 * Get the child font face post IDs.
	 *
	 * @since 6.5.0
	 *
	 * @param int $font_family_id Font family post ID.
	 * @return int[] Array of child font face post IDs.
	 */
	protected function get_font_face_ids( $font_family_id ) {
		$query = new WP_Query(
			array(
				'fields'                 => 'ids',
				'post_parent'            => $font_family_id,
				'post_type'              => 'wp_font_face',
				'posts_per_page'         => 99,
				'order'                  => 'ASC',
				'orderby'                => 'id',
				'update_post_meta_cache' => false,
				'update_post_term_cache' => false,
			)
		);

		return $query->posts;
	}

	/**
	 * Prepares font family links for the request.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post $post Post object.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $post ) {
		// Entity meta.
		$links = parent::prepare_links( $post );

		return array(
			'self'       => $links['self'],
			'collection' => $links['collection'],
			'font_faces' => $this->prepare_font_face_links( $post->ID ),
		);
	}

	/**
	 * Prepares child font face links for the request.
	 *
	 * @param int $font_family_id Font family post ID.
	 * @return array Links for the child font face posts.
	 */
	protected function prepare_font_face_links( $font_family_id ) {
		$font_face_ids = $this->get_font_face_ids( $font_family_id );
		$links         = array();
		foreach ( $font_face_ids as $font_face_id ) {
			$links[] = array(
				'embeddable' => true,
				'href'       => rest_url( sprintf( '%s/%s/%s/font-faces/%s', $this->namespace, $this->rest_base, $font_family_id, $font_face_id ) ),
			);
		}
		return $links;
	}

	/**
	 * Prepares a single font family post for create or update.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass|WP_Error Post object or WP_Error.
	 */
	protected function prepare_item_for_database( $request ) {
		$prepared_post = new stdClass();
		// Settings have already been decoded by ::sanitize_font_family_settings().
		$settings = $request->get_param( 'font_family_settings' );

		// This is an update and we merge with the existing font family.
		if ( isset( $request['id'] ) ) {
			$existing_post = $this->get_post( $request['id'] );
			if ( is_wp_error( $existing_post ) ) {
				return $existing_post;
			}

			$prepared_post->ID = $existing_post->ID;
			$existing_settings = $this->get_settings_from_post( $existing_post );
			$settings          = array_merge( $existing_settings, $settings );
		}

		$prepared_post->post_type   = $this->post_type;
		$prepared_post->post_status = 'publish';
		$prepared_post->post_title  = $settings['name'];
		$prepared_post->post_name   = sanitize_title( $settings['slug'] );

		// Remove duplicate information from settings.
		unset( $settings['name'] );
		unset( $settings['slug'] );

		$prepared_post->post_content = wp_json_encode( $settings );

		return $prepared_post;
	}

	/**
	 * Gets the font family's settings from the post.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Post $post Font family post object.
	 * @return array Font family settings array.
	 */
	protected function get_settings_from_post( $post ) {
		$settings_json = json_decode( $post->post_content, true );

		// Default to empty strings if the settings are missing.
		return array(
			'name'       => isset( $post->post_title ) && $post->post_title ? $post->post_title : '',
			'slug'       => isset( $post->post_name ) && $post->post_name ? $post->post_name : '',
			'fontFamily' => isset( $settings_json['fontFamily'] ) && $settings_json['fontFamily'] ? $settings_json['fontFamily'] : '',
			'preview'    => isset( $settings_json['preview'] ) && $settings_json['preview'] ? $settings_json['preview'] : '',
		);
	}
}
endpoints/class-wp-rest-template-autosaves-controller.php000064400000017221152222510010017757 0ustar00<?php
/**
 * REST API: WP_REST_Template_Autosaves_Controller class.
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.4.0
 */

/**
 * Core class used to access template autosaves via the REST API.
 *
 * @since 6.4.0
 *
 * @see WP_REST_Autosaves_Controller
 */
class WP_REST_Template_Autosaves_Controller extends WP_REST_Autosaves_Controller {
	/**
	 * Parent post type.
	 *
	 * @since 6.4.0
	 * @var string
	 */
	private $parent_post_type;

	/**
	 * Parent post controller.
	 *
	 * @since 6.4.0
	 * @var WP_REST_Controller
	 */
	private $parent_controller;

	/**
	 * Revision controller.
	 *
	 * @since 6.4.0
	 * @var WP_REST_Revisions_Controller
	 */
	private $revisions_controller;

	/**
	 * The base of the parent controller's route.
	 *
	 * @since 6.4.0
	 * @var string
	 */
	private $parent_base;

	/**
	 * Constructor.
	 *
	 * @since 6.4.0
	 *
	 * @param string $parent_post_type Post type of the parent.
	 */
	public function __construct( $parent_post_type ) {
		parent::__construct( $parent_post_type );
		$this->parent_post_type = $parent_post_type;
		$post_type_object       = get_post_type_object( $parent_post_type );
		$parent_controller      = $post_type_object->get_rest_controller();

		if ( ! $parent_controller ) {
			$parent_controller = new WP_REST_Templates_Controller( $parent_post_type );
		}

		$this->parent_controller = $parent_controller;

		$revisions_controller = $post_type_object->get_revisions_rest_controller();
		if ( ! $revisions_controller ) {
			$revisions_controller = new WP_REST_Revisions_Controller( $parent_post_type );
		}
		$this->revisions_controller = $revisions_controller;
		$this->rest_base            = 'autosaves';
		$this->parent_base          = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
		$this->namespace            = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
	}

	/**
	 * Registers the routes for autosaves.
	 *
	 * @since 6.4.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/(?P<id>%s%s)/%s',
				$this->parent_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
				// Matches the template name.
				'[\/\w%-]+',
				$this->rest_base
			),
			array(
				'args'   => array(
					'id' => array(
						'description'       => __( 'The id of a template' ),
						'type'              => 'string',
						'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->parent_controller->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/(?P<parent>%s%s)/%s/%s',
				$this->parent_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
				// Matches the template name.
				'[\/\w%-]+',
				$this->rest_base,
				'(?P<id>[\d]+)'
			),
			array(
				'args'   => array(
					'parent' => array(
						'description'       => __( 'The id of a template' ),
						'type'              => 'string',
						'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
					),
					'id'     => array(
						'description' => __( 'The ID for the autosave.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this->revisions_controller, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Prepares the item for the REST response.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_Post         $item    Post revision object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$template = _build_block_template_result_from_post( $item );
		$response = $this->parent_controller->prepare_item_for_response( $template, $request );

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			return $response;
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = $response->get_data();

		if ( in_array( 'parent', $fields, true ) ) {
			$data['parent'] = (int) $item->post_parent;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = new WP_REST_Response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $template );
			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Gets the autosave, if the ID is valid.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_Post|WP_Error Autosave post object if ID is valid, WP_Error otherwise.
	 */
	public function get_item( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		$autosave = wp_get_post_autosave( $parent->ID );

		if ( ! $autosave ) {
			return new WP_Error(
				'rest_post_no_autosave',
				__( 'There is no autosave revision for this template.' ),
				array( 'status' => 404 )
			);
		}

		$response = $this->prepare_item_for_response( $autosave, $request );
		return $response;
	}

	/**
	 * Get the parent post.
	 *
	 * @since 6.4.0
	 *
	 * @param int $parent_id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_parent( $parent_id ) {
		return $this->revisions_controller->get_parent( $parent_id );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_Block_Template $template Template.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $template ) {
		$links = array(
			'self'   => array(
				'href' => rest_url( sprintf( '/%s/%s/%s/%s/%d', $this->namespace, $this->parent_base, $template->id, $this->rest_base, $template->wp_id ) ),
			),
			'parent' => array(
				'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->parent_base, $template->id ) ),
			),
		);

		return $links;
	}

	/**
	 * Retrieves the autosave's schema, conforming to JSON Schema.
	 *
	 * @since 6.4.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = $this->revisions_controller->get_item_schema();

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-plugins-controller.php000064400000067561152222510010015631 0ustar00<?php
/**
 * REST API: WP_REST_Plugins_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.5.0
 */

/**
 * Core class to access plugins via the REST API.
 *
 * @since 5.5.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Plugins_Controller extends WP_REST_Controller {

	const PATTERN = '[^.\/]+(?:\/[^.\/]+)?';

	/**
	 * Plugins controller constructor.
	 *
	 * @since 5.5.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'plugins';
	}

	/**
	 * Registers the routes for the plugins controller.
	 *
	 * @since 5.5.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => array(
						'slug'   => array(
							'type'        => 'string',
							'required'    => true,
							'description' => __( 'WordPress.org plugin directory slug.' ),
							'pattern'     => '[\w\-]+',
						),
						'status' => array(
							'description' => __( 'The plugin activation status.' ),
							'type'        => 'string',
							'enum'        => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ),
							'default'     => 'inactive',
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<plugin>' . self::PATTERN . ')',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
				),
				'args'   => array(
					'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					'plugin'  => array(
						'type'              => 'string',
						'pattern'           => self::PATTERN,
						'validate_callback' => array( $this, 'validate_plugin_param' ),
						'sanitize_callback' => array( $this, 'sanitize_plugin_param' ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to get plugins.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_view_plugins',
				__( 'Sorry, you are not allowed to manage plugins for this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves a collection of plugins.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$plugins = array();

		foreach ( get_plugins() as $file => $data ) {
			if ( is_wp_error( $this->check_read_permission( $file ) ) ) {
				continue;
			}

			$data['_file'] = $file;

			if ( ! $this->does_plugin_match_request( $request, $data ) ) {
				continue;
			}

			$plugins[] = $this->prepare_response_for_collection( $this->prepare_item_for_response( $data, $request ) );
		}

		return new WP_REST_Response( $plugins );
	}

	/**
	 * Checks if a given request has access to get a specific plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		if ( ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_view_plugin',
				__( 'Sorry, you are not allowed to manage plugins for this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$can_read = $this->check_read_permission( $request['plugin'] );

		if ( is_wp_error( $can_read ) ) {
			return $can_read;
		}

		return true;
	}

	/**
	 * Retrieves one plugin from the site.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$data = $this->get_plugin_data( $request['plugin'] );

		if ( is_wp_error( $data ) ) {
			return $data;
		}

		return $this->prepare_item_for_response( $data, $request );
	}

	/**
	 * Checks if the given plugin can be viewed by the current user.
	 *
	 * On multisite, this hides non-active network only plugins if the user does not have permission
	 * to manage network plugins.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin The plugin file to check.
	 * @return true|WP_Error True if can read, a WP_Error instance otherwise.
	 */
	protected function check_read_permission( $plugin ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		if ( ! $this->is_plugin_installed( $plugin ) ) {
			return new WP_Error( 'rest_plugin_not_found', __( 'Plugin not found.' ), array( 'status' => 404 ) );
		}

		if ( ! is_multisite() ) {
			return true;
		}

		if ( ! is_network_only_plugin( $plugin ) || is_plugin_active( $plugin ) || current_user_can( 'manage_network_plugins' ) ) {
			return true;
		}

		return new WP_Error(
			'rest_cannot_view_plugin',
			__( 'Sorry, you are not allowed to manage this plugin.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Checks if a given request has access to upload plugins.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		if ( ! current_user_can( 'install_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_install_plugin',
				__( 'Sorry, you are not allowed to install plugins on this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'inactive' !== $request['status'] && ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_activate_plugin',
				__( 'Sorry, you are not allowed to activate plugins.' ),
				array(
					'status' => rest_authorization_required_code(),
				)
			);
		}

		return true;
	}

	/**
	 * Uploads a plugin and optionally activates it.
	 *
	 * @since 5.5.0
	 *
	 * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		global $wp_filesystem;

		require_once ABSPATH . 'wp-admin/includes/file.php';
		require_once ABSPATH . 'wp-admin/includes/plugin.php';
		require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
		require_once ABSPATH . 'wp-admin/includes/plugin-install.php';

		$slug = $request['slug'];

		// Verify filesystem is accessible first.
		$filesystem_available = $this->is_filesystem_available();
		if ( is_wp_error( $filesystem_available ) ) {
			return $filesystem_available;
		}

		$api = plugins_api(
			'plugin_information',
			array(
				'slug'   => $slug,
				'fields' => array(
					'sections'       => false,
					'language_packs' => true,
				),
			)
		);

		if ( is_wp_error( $api ) ) {
			if ( str_contains( $api->get_error_message(), 'Plugin not found.' ) ) {
				$api->add_data( array( 'status' => 404 ) );
			} else {
				$api->add_data( array( 'status' => 500 ) );
			}

			return $api;
		}

		$skin     = new WP_Ajax_Upgrader_Skin();
		$upgrader = new Plugin_Upgrader( $skin );

		$result = $upgrader->install( $api->download_link );

		if ( is_wp_error( $result ) ) {
			$result->add_data( array( 'status' => 500 ) );

			return $result;
		}

		// This should be the same as $result above.
		if ( is_wp_error( $skin->result ) ) {
			$skin->result->add_data( array( 'status' => 500 ) );

			return $skin->result;
		}

		if ( $skin->get_errors()->has_errors() ) {
			$error = $skin->get_errors();
			$error->add_data( array( 'status' => 500 ) );

			return $error;
		}

		if ( is_null( $result ) ) {
			// Pass through the error from WP_Filesystem if one was raised.
			if ( $wp_filesystem instanceof WP_Filesystem_Base
				&& is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->has_errors()
			) {
				return new WP_Error(
					'unable_to_connect_to_filesystem',
					$wp_filesystem->errors->get_error_message(),
					array( 'status' => 500 )
				);
			}

			return new WP_Error(
				'unable_to_connect_to_filesystem',
				__( 'Unable to connect to the filesystem. Please confirm your credentials.' ),
				array( 'status' => 500 )
			);
		}

		$file = $upgrader->plugin_info();

		if ( ! $file ) {
			return new WP_Error(
				'unable_to_determine_installed_plugin',
				__( 'Unable to determine what plugin was installed.' ),
				array( 'status' => 500 )
			);
		}

		if ( 'inactive' !== $request['status'] ) {
			$can_change_status = $this->plugin_status_permission_check( $file, $request['status'], 'inactive' );

			if ( is_wp_error( $can_change_status ) ) {
				return $can_change_status;
			}

			$changed_status = $this->handle_plugin_status( $file, $request['status'], 'inactive' );

			if ( is_wp_error( $changed_status ) ) {
				return $changed_status;
			}
		}

		// Install translations.
		$installed_locales = array_values( get_available_languages() );
		/** This filter is documented in wp-includes/update.php */
		$installed_locales = apply_filters( 'plugins_update_check_locales', $installed_locales );

		$language_packs = array_map(
			static function ( $item ) {
				return (object) $item;
			},
			$api->language_packs
		);

		$language_packs = array_filter(
			$language_packs,
			static function ( $pack ) use ( $installed_locales ) {
				return in_array( $pack->language, $installed_locales, true );
			}
		);

		if ( $language_packs ) {
			$lp_upgrader = new Language_Pack_Upgrader( $skin );

			// Install all applicable language packs for the plugin.
			$lp_upgrader->bulk_upgrade( $language_packs );
		}

		$path          = WP_PLUGIN_DIR . '/' . $file;
		$data          = get_plugin_data( $path, false, false );
		$data['_file'] = $file;

		$response = $this->prepare_item_for_response( $data, $request );
		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, substr( $file, 0, - 4 ) ) ) );

		return $response;
	}

	/**
	 * Checks if a given request has access to update a specific plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to update the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		if ( ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_manage_plugins',
				__( 'Sorry, you are not allowed to manage plugins for this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$can_read = $this->check_read_permission( $request['plugin'] );

		if ( is_wp_error( $can_read ) ) {
			return $can_read;
		}

		$status = $this->get_plugin_status( $request['plugin'] );

		if ( $request['status'] && $status !== $request['status'] ) {
			$can_change_status = $this->plugin_status_permission_check( $request['plugin'], $request['status'], $status );

			if ( is_wp_error( $can_change_status ) ) {
				return $can_change_status;
			}
		}

		return true;
	}

	/**
	 * Updates one plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$data = $this->get_plugin_data( $request['plugin'] );

		if ( is_wp_error( $data ) ) {
			return $data;
		}

		$status = $this->get_plugin_status( $request['plugin'] );

		if ( $request['status'] && $status !== $request['status'] ) {
			$handled = $this->handle_plugin_status( $request['plugin'], $request['status'], $status );

			if ( is_wp_error( $handled ) ) {
				return $handled;
			}
		}

		$this->update_additional_fields_for_object( $data, $request );

		$request['context'] = 'edit';

		return $this->prepare_item_for_response( $data, $request );
	}

	/**
	 * Checks if a given request has access to delete a specific plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		if ( ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_manage_plugins',
				__( 'Sorry, you are not allowed to manage plugins for this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ! current_user_can( 'delete_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_manage_plugins',
				__( 'Sorry, you are not allowed to delete plugins for this site.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$can_read = $this->check_read_permission( $request['plugin'] );

		if ( is_wp_error( $can_read ) ) {
			return $can_read;
		}

		return true;
	}

	/**
	 * Deletes one plugin from the site.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		require_once ABSPATH . 'wp-admin/includes/file.php';
		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$data = $this->get_plugin_data( $request['plugin'] );

		if ( is_wp_error( $data ) ) {
			return $data;
		}

		if ( is_plugin_active( $request['plugin'] ) ) {
			return new WP_Error(
				'rest_cannot_delete_active_plugin',
				__( 'Cannot delete an active plugin. Please deactivate it first.' ),
				array( 'status' => 400 )
			);
		}

		$filesystem_available = $this->is_filesystem_available();
		if ( is_wp_error( $filesystem_available ) ) {
			return $filesystem_available;
		}

		$prepared = $this->prepare_item_for_response( $data, $request );
		$deleted  = delete_plugins( array( $request['plugin'] ) );

		if ( is_wp_error( $deleted ) ) {
			$deleted->add_data( array( 'status' => 500 ) );

			return $deleted;
		}

		return new WP_REST_Response(
			array(
				'deleted'  => true,
				'previous' => $prepared->get_data(),
			)
		);
	}

	/**
	 * Prepares the plugin for the REST response.
	 *
	 * @since 5.5.0
	 *
	 * @param array           $item    Unmarked up and untranslated plugin data from {@see get_plugin_data()}.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$fields = $this->get_fields_for_response( $request );

		$item   = _get_plugin_data_markup_translate( $item['_file'], $item, false );
		$marked = _get_plugin_data_markup_translate( $item['_file'], $item, true );

		$data = array(
			'plugin'       => substr( $item['_file'], 0, - 4 ),
			'status'       => $this->get_plugin_status( $item['_file'] ),
			'name'         => $item['Name'],
			'plugin_uri'   => $item['PluginURI'],
			'author'       => $item['Author'],
			'author_uri'   => $item['AuthorURI'],
			'description'  => array(
				'raw'      => $item['Description'],
				'rendered' => $marked['Description'],
			),
			'version'      => $item['Version'],
			'network_only' => $item['Network'],
			'requires_wp'  => $item['RequiresWP'],
			'requires_php' => $item['RequiresPHP'],
			'textdomain'   => $item['TextDomain'],
		);

		$data = $this->add_additional_fields_to_object( $data, $request );

		$response = new WP_REST_Response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $item ) );
		}

		/**
		 * Filters plugin data for a REST API response.
		 *
		 * @since 5.5.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param array            $item     The plugin item from {@see get_plugin_data()}.
		 * @param WP_REST_Request  $request  The request object.
		 */
		return apply_filters( 'rest_prepare_plugin', $response, $item, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.5.0
	 *
	 * @param array $item The plugin item.
	 * @return array[]
	 */
	protected function prepare_links( $item ) {
		return array(
			'self' => array(
				'href' => rest_url(
					sprintf(
						'%s/%s/%s',
						$this->namespace,
						$this->rest_base,
						substr( $item['_file'], 0, - 4 )
					)
				),
			),
		);
	}

	/**
	 * Gets the plugin header data for a plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin The plugin file to get data for.
	 * @return array|WP_Error The plugin data, or a WP_Error if the plugin is not installed.
	 */
	protected function get_plugin_data( $plugin ) {
		$plugins = get_plugins();

		if ( ! isset( $plugins[ $plugin ] ) ) {
			return new WP_Error( 'rest_plugin_not_found', __( 'Plugin not found.' ), array( 'status' => 404 ) );
		}

		$data          = $plugins[ $plugin ];
		$data['_file'] = $plugin;

		return $data;
	}

	/**
	 * Get's the activation status for a plugin.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin The plugin file to check.
	 * @return string Either 'network-active', 'active' or 'inactive'.
	 */
	protected function get_plugin_status( $plugin ) {
		if ( is_plugin_active_for_network( $plugin ) ) {
			return 'network-active';
		}

		if ( is_plugin_active( $plugin ) ) {
			return 'active';
		}

		return 'inactive';
	}

	/**
	 * Handle updating a plugin's status.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin         The plugin file to update.
	 * @param string $new_status     The plugin's new status.
	 * @param string $current_status The plugin's current status.
	 * @return true|WP_Error
	 */
	protected function plugin_status_permission_check( $plugin, $new_status, $current_status ) {
		if ( is_multisite() && ( 'network-active' === $current_status || 'network-active' === $new_status ) && ! current_user_can( 'manage_network_plugins' ) ) {
			return new WP_Error(
				'rest_cannot_manage_network_plugins',
				__( 'Sorry, you are not allowed to manage network plugins.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( ( 'active' === $new_status || 'network-active' === $new_status ) && ! current_user_can( 'activate_plugin', $plugin ) ) {
			return new WP_Error(
				'rest_cannot_activate_plugin',
				__( 'Sorry, you are not allowed to activate this plugin.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'inactive' === $new_status && ! current_user_can( 'deactivate_plugin', $plugin ) ) {
			return new WP_Error(
				'rest_cannot_deactivate_plugin',
				__( 'Sorry, you are not allowed to deactivate this plugin.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Handle updating a plugin's status.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin         The plugin file to update.
	 * @param string $new_status     The plugin's new status.
	 * @param string $current_status The plugin's current status.
	 * @return true|WP_Error
	 */
	protected function handle_plugin_status( $plugin, $new_status, $current_status ) {
		if ( 'inactive' === $new_status ) {
			deactivate_plugins( $plugin, false, 'network-active' === $current_status );

			return true;
		}

		if ( 'active' === $new_status && 'network-active' === $current_status ) {
			return true;
		}

		$network_activate = 'network-active' === $new_status;

		if ( is_multisite() && ! $network_activate && is_network_only_plugin( $plugin ) ) {
			return new WP_Error(
				'rest_network_only_plugin',
				__( 'Network only plugin must be network activated.' ),
				array( 'status' => 400 )
			);
		}

		$activated = activate_plugin( $plugin, '', $network_activate );

		if ( is_wp_error( $activated ) ) {
			$activated->add_data( array( 'status' => 500 ) );

			return $activated;
		}

		return true;
	}

	/**
	 * Checks that the "plugin" parameter is a valid path.
	 *
	 * @since 5.5.0
	 *
	 * @param string $file The plugin file parameter.
	 * @return bool
	 */
	public function validate_plugin_param( $file ) {
		if ( ! is_string( $file ) || ! preg_match( '/' . self::PATTERN . '/u', $file ) ) {
			return false;
		}

		$validated = validate_file( plugin_basename( $file ) );

		return 0 === $validated;
	}

	/**
	 * Sanitizes the "plugin" parameter to be a proper plugin file with ".php" appended.
	 *
	 * @since 5.5.0
	 *
	 * @param string $file The plugin file parameter.
	 * @return string
	 */
	public function sanitize_plugin_param( $file ) {
		return plugin_basename( sanitize_text_field( $file . '.php' ) );
	}

	/**
	 * Checks if the plugin matches the requested parameters.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request The request to require the plugin matches against.
	 * @param array           $item    The plugin item.
	 * @return bool
	 */
	protected function does_plugin_match_request( $request, $item ) {
		$search = $request['search'];

		if ( $search ) {
			$matched_search = false;

			foreach ( $item as $field ) {
				if ( is_string( $field ) && str_contains( strip_tags( $field ), $search ) ) {
					$matched_search = true;
					break;
				}
			}

			if ( ! $matched_search ) {
				return false;
			}
		}

		$status = $request['status'];

		if ( $status && ! in_array( $this->get_plugin_status( $item['_file'] ), $status, true ) ) {
			return false;
		}

		return true;
	}

	/**
	 * Checks if the plugin is installed.
	 *
	 * @since 5.5.0
	 *
	 * @param string $plugin The plugin file.
	 * @return bool
	 */
	protected function is_plugin_installed( $plugin ) {
		return file_exists( WP_PLUGIN_DIR . '/' . $plugin );
	}

	/**
	 * Determine if the endpoints are available.
	 *
	 * Only the 'Direct' filesystem transport, and SSH/FTP when credentials are stored are supported at present.
	 *
	 * @since 5.5.0
	 *
	 * @return true|WP_Error True if filesystem is available, WP_Error otherwise.
	 */
	protected function is_filesystem_available() {
		$filesystem_method = get_filesystem_method();

		if ( 'direct' === $filesystem_method ) {
			return true;
		}

		ob_start();
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
		ob_end_clean();

		if ( $filesystem_credentials_are_stored ) {
			return true;
		}

		return new WP_Error( 'fs_unavailable', __( 'The filesystem is currently unavailable for managing plugins.' ), array( 'status' => 500 ) );
	}

	/**
	 * Retrieves the plugin's schema, conforming to JSON Schema.
	 *
	 * @since 5.5.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'plugin',
			'type'       => 'object',
			'properties' => array(
				'plugin'       => array(
					'description' => __( 'The plugin file.' ),
					'type'        => 'string',
					'pattern'     => self::PATTERN,
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'status'       => array(
					'description' => __( 'The plugin activation status.' ),
					'type'        => 'string',
					'enum'        => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ),
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'name'         => array(
					'description' => __( 'The plugin name.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'plugin_uri'   => array(
					'description' => __( 'The plugin\'s website address.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
				),
				'author'       => array(
					'description' => __( 'The plugin author.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
				),
				'author_uri'   => array(
					'description' => __( 'Plugin author\'s website address.' ),
					'type'        => 'string',
					'format'      => 'uri',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
				),
				'description'  => array(
					'description' => __( 'The plugin description.' ),
					'type'        => 'object',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'The raw plugin description.' ),
							'type'        => 'string',
						),
						'rendered' => array(
							'description' => __( 'The plugin description formatted for display.' ),
							'type'        => 'string',
						),
					),
				),
				'version'      => array(
					'description' => __( 'The plugin version number.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
				),
				'network_only' => array(
					'description' => __( 'Whether the plugin can only be activated network-wide.' ),
					'type'        => 'boolean',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'requires_wp'  => array(
					'description' => __( 'Minimum required version of WordPress.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'requires_php' => array(
					'description' => __( 'Minimum required version of PHP.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'textdomain'   => array(
					'description' => __( 'The plugin\'s text domain.' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit' ),
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for the collections.
	 *
	 * @since 5.5.0
	 *
	 * @return array Query parameters for the collection.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['context']['default'] = 'view';

		$query_params['status'] = array(
			'description' => __( 'Limits results to plugins with the given status.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
				'enum' => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ),
			),
		);

		unset( $query_params['page'], $query_params['per_page'] );

		return $query_params;
	}
}
endpoints/.htaccess000064400000000000152222510010010321 0ustar00endpoints/class-wp-rest-block-renderer-controller.php000064400000013312152222510010017027 0ustar00<?php
/**
 * Block Renderer REST API: WP_REST_Block_Renderer_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.0.0
 */

/**
 * Controller which provides REST endpoint for rendering a block.
 *
 * @since 5.0.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Block_Renderer_Controller extends WP_REST_Controller {

	/**
	 * Constructs the controller.
	 *
	 * @since 5.0.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'block-renderer';
	}

	/**
	 * Registers the necessary REST API routes, one for each dynamic block.
	 *
	 * @since 5.0.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<name>[a-z0-9-]+/[a-z0-9-]+)',
			array(
				'args'   => array(
					'name' => array(
						'description' => __( 'Unique registered name for the block.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => array( WP_REST_Server::READABLE, WP_REST_Server::CREATABLE ),
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context'    => $this->get_context_param( array( 'default' => 'view' ) ),
						'attributes' => array(
							'description'       => __( 'Attributes for the block.' ),
							'type'              => 'object',
							'default'           => array(),
							'validate_callback' => static function ( $value, $request ) {
								$block = WP_Block_Type_Registry::get_instance()->get_registered( $request['name'] );

								if ( ! $block ) {
									// This will get rejected in ::get_item().
									return true;
								}

								$schema = array(
									'type'                 => 'object',
									'properties'           => $block->get_attributes(),
									'additionalProperties' => false,
								);

								return rest_validate_value_from_schema( $value, $schema );
							},
							'sanitize_callback' => static function ( $value, $request ) {
								$block = WP_Block_Type_Registry::get_instance()->get_registered( $request['name'] );

								if ( ! $block ) {
									// This will get rejected in ::get_item().
									return true;
								}

								$schema = array(
									'type'                 => 'object',
									'properties'           => $block->get_attributes(),
									'additionalProperties' => false,
								);

								return rest_sanitize_value_from_schema( $value, $schema );
							},
						),
						'post_id'    => array(
							'description' => __( 'ID of the post context.' ),
							'type'        => 'integer',
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to read blocks.
	 *
	 * @since 5.0.0
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param WP_REST_Request $request Request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		global $post;

		$post_id = isset( $request['post_id'] ) ? (int) $request['post_id'] : 0;

		if ( $post_id > 0 ) {
			$post = get_post( $post_id );

			if ( ! $post || ! current_user_can( 'edit_post', $post->ID ) ) {
				return new WP_Error(
					'block_cannot_read',
					__( 'Sorry, you are not allowed to read blocks of this post.' ),
					array(
						'status' => rest_authorization_required_code(),
					)
				);
			}
		} else {
			if ( ! current_user_can( 'edit_posts' ) ) {
				return new WP_Error(
					'block_cannot_read',
					__( 'Sorry, you are not allowed to read blocks as this user.' ),
					array(
						'status' => rest_authorization_required_code(),
					)
				);
			}
		}

		return true;
	}

	/**
	 * Returns block output from block's registered render_callback.
	 *
	 * @since 5.0.0
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		global $post;

		$post_id = isset( $request['post_id'] ) ? (int) $request['post_id'] : 0;

		if ( $post_id > 0 ) {
			$post = get_post( $post_id );

			// Set up postdata since this will be needed if post_id was set.
			setup_postdata( $post );
		}

		$registry   = WP_Block_Type_Registry::get_instance();
		$registered = $registry->get_registered( $request['name'] );

		if ( null === $registered || ! $registered->is_dynamic() ) {
			return new WP_Error(
				'block_invalid',
				__( 'Invalid block.' ),
				array(
					'status' => 404,
				)
			);
		}

		$attributes = $request->get_param( 'attributes' );

		// Create an array representation simulating the output of parse_blocks.
		$block = array(
			'blockName'    => $request['name'],
			'attrs'        => $attributes,
			'innerHTML'    => '',
			'innerContent' => array(),
		);

		// Render using render_block to ensure all relevant filters are used.
		$data = array(
			'rendered' => render_block( $block ),
		);

		return rest_ensure_response( $data );
	}

	/**
	 * Retrieves block's output schema, conforming to JSON Schema.
	 *
	 * @since 5.0.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->schema;
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/schema#',
			'title'      => 'rendered-block',
			'type'       => 'object',
			'properties' => array(
				'rendered' => array(
					'description' => __( 'The rendered block.' ),
					'type'        => 'string',
					'required'    => true,
					'context'     => array( 'edit' ),
				),
			),
		);

		return $this->schema;
	}
}
endpoints/class-wp-rest-menu-locations-controller.php000064400000021403152222510010017066 0ustar00<?php
/**
 * REST API: WP_REST_Menu_Locations_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.9.0
 */

/**
 * Core class used to access menu locations via the REST API.
 *
 * @since 5.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Menu_Locations_Controller extends WP_REST_Controller {

	/**
	 * Menu Locations Constructor.
	 *
	 * @since 5.9.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'menu-locations';
	}

	/**
	 * Registers the routes for the objects of the controller.
	 *
	 * @since 5.9.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<location>[\w-]+)',
			array(
				'args'   => array(
					'location' => array(
						'description' => __( 'An alphanumeric identifier for the menu location.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read menu locations.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Retrieves all menu locations, depending on user context.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$data = array();

		foreach ( get_registered_nav_menus() as $name => $description ) {
			$location              = new stdClass();
			$location->name        = $name;
			$location->description = $description;

			$location      = $this->prepare_item_for_response( $location, $request );
			$data[ $name ] = $this->prepare_response_for_collection( $location );
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read a menu location.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Retrieves a specific menu location.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$registered_menus = get_registered_nav_menus();
		if ( ! array_key_exists( $request['location'], $registered_menus ) ) {
			return new WP_Error( 'rest_menu_location_invalid', __( 'Invalid menu location.' ), array( 'status' => 404 ) );
		}

		$location              = new stdClass();
		$location->name        = $request['location'];
		$location->description = $registered_menus[ $location->name ];

		$data = $this->prepare_item_for_response( $location, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Checks whether the current user has read permission for the endpoint.
	 *
	 * @since 6.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the current user has permission, WP_Error object otherwise.
	 */
	protected function check_has_read_only_access( $request ) {
		/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
		$read_only_access = apply_filters( 'rest_menu_read_access', false, $request, $this );
		if ( $read_only_access ) {
			return true;
		}

		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_view',
				__( 'Sorry, you are not allowed to view menu locations.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Prepares a menu location object for serialization.
	 *
	 * @since 5.9.0
	 *
	 * @param stdClass        $item    Post status data.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Menu location data.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$location = $item;

		$locations = get_nav_menu_locations();
		$menu      = isset( $locations[ $location->name ] ) ? $locations[ $location->name ] : 0;

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'name', $fields ) ) {
			$data['name'] = $location->name;
		}

		if ( rest_is_field_included( 'description', $fields ) ) {
			$data['description'] = $location->description;
		}

		if ( rest_is_field_included( 'menu', $fields ) ) {
			$data['menu'] = (int) $menu;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $location ) );
		}

		/**
		 * Filters menu location data returned from the REST API.
		 *
		 * @since 5.9.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param object           $location The original location object.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_menu_location', $response, $location, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.9.0
	 *
	 * @param stdClass $location Menu location.
	 * @return array Links for the given menu location.
	 */
	protected function prepare_links( $location ) {
		$base = sprintf( '%s/%s', $this->namespace, $this->rest_base );

		// Entity meta.
		$links = array(
			'self'       => array(
				'href' => rest_url( trailingslashit( $base ) . $location->name ),
			),
			'collection' => array(
				'href' => rest_url( $base ),
			),
		);

		$locations = get_nav_menu_locations();
		$menu      = isset( $locations[ $location->name ] ) ? $locations[ $location->name ] : 0;
		if ( $menu ) {
			$path = rest_get_route_for_term( $menu );
			if ( $path ) {
				$url = rest_url( $path );

				$links['https://api.w.org/menu'][] = array(
					'href'       => $url,
					'embeddable' => true,
				);
			}
		}

		return $links;
	}

	/**
	 * Retrieves the menu location's schema, conforming to JSON Schema.
	 *
	 * @since 5.9.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'menu-location',
			'type'       => 'object',
			'properties' => array(
				'name'        => array(
					'description' => __( 'The name of the menu location.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'description' => array(
					'description' => __( 'The description of the menu location.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'menu'        => array(
					'description' => __( 'The ID of the assigned menu.' ),
					'type'        => 'integer',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 5.9.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}
}
endpoints/class-wp-rest-global-styles-revisions-controller.php000064400000031166152222510010020740 0ustar00<?php
/**
 * REST API: WP_REST_Global_Styles_Revisions_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.3.0
 */

/**
 * Core class used to access global styles revisions via the REST API.
 *
 * @since 6.3.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Global_Styles_Revisions_Controller extends WP_REST_Revisions_Controller {
	/**
	 * Parent controller.
	 *
	 * @since 6.6.0
	 * @var WP_REST_Controller
	 */
	private $parent_controller;

	/**
	 * The base of the parent controller's route.
	 *
	 * @since 6.3.0
	 * @var string
	 */
	protected $parent_base;

	/**
	 * Parent post type.
	 *
	 * @since 6.6.0
	 * @var string
	 */
	protected $parent_post_type;

	/**
	 * Constructor.
	 *
	 * @since 6.3.0
	 * @since 6.6.0 Extends class from WP_REST_Revisions_Controller.
	 *
	 * @param string $parent_post_type Post type of the parent.
	 */
	public function __construct( $parent_post_type = 'wp_global_styles' ) {
		parent::__construct( $parent_post_type );
		$post_type_object  = get_post_type_object( $parent_post_type );
		$parent_controller = $post_type_object->get_rest_controller();

		if ( ! $parent_controller ) {
			$parent_controller = new WP_REST_Global_Styles_Controller( $parent_post_type );
		}

		$this->parent_controller = $parent_controller;
		$this->rest_base         = 'revisions';
		$this->parent_base       = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
		$this->namespace         = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
	}

	/**
	 * Registers the controller's routes.
	 *
	 * @since 6.3.0
	 * @since 6.6.0 Added route to fetch individual global styles revisions.
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base,
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the revision.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base . '/(?P<id>[\d]+)',
			array(
				'args'   => array(
					'parent' => array(
						'description' => __( 'The ID for the parent of the global styles revision.' ),
						'type'        => 'integer',
					),
					'id'     => array(
						'description' => __( 'Unique identifier for the global styles revision.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Returns decoded JSON from post content string,
	 * or a 404 if not found.
	 *
	 * @since 6.3.0
	 *
	 * @param string $raw_json Encoded JSON from global styles custom post content.
	 * @return Array|WP_Error
	 */
	protected function get_decoded_global_styles_json( $raw_json ) {
		$decoded_json = json_decode( $raw_json, true );

		if ( is_array( $decoded_json ) && isset( $decoded_json['isGlobalStylesUserThemeJSON'] ) && true === $decoded_json['isGlobalStylesUserThemeJSON'] ) {
			return $decoded_json;
		}

		return new WP_Error(
			'rest_global_styles_not_found',
			__( 'Cannot find user global styles revisions.' ),
			array( 'status' => 404 )
		);
	}

	/**
	 * Returns paginated revisions of the given global styles config custom post type.
	 *
	 * The bulk of the body is taken from WP_REST_Revisions_Controller->get_items,
	 * but global styles does not require as many parameters.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_REST_Request $request The request instance.
	 * @return WP_REST_Response|WP_Error
	 */
	public function get_items( $request ) {
		$parent = $this->get_parent( $request['parent'] );

		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		$global_styles_config = $this->get_decoded_global_styles_json( $parent->post_content );

		if ( is_wp_error( $global_styles_config ) ) {
			return $global_styles_config;
		}

		$is_head_request = $request->is_method( 'HEAD' );

		if ( wp_revisions_enabled( $parent ) ) {
			$registered = $this->get_collection_params();
			$query_args = array(
				'post_parent'    => $parent->ID,
				'post_type'      => 'revision',
				'post_status'    => 'inherit',
				'posts_per_page' => -1,
				'orderby'        => 'date ID',
				'order'          => 'DESC',
			);

			$parameter_mappings = array(
				'offset'   => 'offset',
				'page'     => 'paged',
				'per_page' => 'posts_per_page',
			);

			foreach ( $parameter_mappings as $api_param => $wp_param ) {
				if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) {
					$query_args[ $wp_param ] = $request[ $api_param ];
				}
			}

			if ( $is_head_request ) {
				// Force the 'fields' argument. For HEAD requests, only post IDs are required to calculate pagination.
				$query_args['fields'] = 'ids';
				// Disable priming post meta for HEAD requests to improve performance.
				$query_args['update_post_term_cache'] = false;
				$query_args['update_post_meta_cache'] = false;
			}

			$revisions_query = new WP_Query();
			$revisions       = $revisions_query->query( $query_args );
			$offset          = isset( $query_args['offset'] ) ? (int) $query_args['offset'] : 0;
			$page            = isset( $query_args['paged'] ) ? (int) $query_args['paged'] : 0;
			$total_revisions = $revisions_query->found_posts;

			if ( $total_revisions < 1 ) {
				// Out-of-bounds, run the query without pagination/offset to get the total count.
				unset( $query_args['paged'], $query_args['offset'] );

				$count_query                          = new WP_Query();
				$query_args['fields']                 = 'ids';
				$query_args['posts_per_page']         = 1;
				$query_args['update_post_meta_cache'] = false;
				$query_args['update_post_term_cache'] = false;

				$count_query->query( $query_args );

				$total_revisions = $count_query->found_posts;
			}

			if ( $revisions_query->query_vars['posts_per_page'] > 0 ) {
				$max_pages = (int) ceil( $total_revisions / (int) $revisions_query->query_vars['posts_per_page'] );
			} else {
				$max_pages = $total_revisions > 0 ? 1 : 0;
			}
			if ( $total_revisions > 0 ) {
				if ( $offset >= $total_revisions ) {
					return new WP_Error(
						'rest_revision_invalid_offset_number',
						__( 'The offset number requested is larger than or equal to the number of available revisions.' ),
						array( 'status' => 400 )
					);
				} elseif ( ! $offset && $page > $max_pages ) {
					return new WP_Error(
						'rest_revision_invalid_page_number',
						__( 'The page number requested is larger than the number of pages available.' ),
						array( 'status' => 400 )
					);
				}
			}
		} else {
			$revisions       = array();
			$total_revisions = 0;
			$max_pages       = 0;
			$page            = (int) $request['page'];
		}

		if ( ! $is_head_request ) {
			$response = array();

			foreach ( $revisions as $revision ) {
				$data       = $this->prepare_item_for_response( $revision, $request );
				$response[] = $this->prepare_response_for_collection( $data );
			}

			$response = rest_ensure_response( $response );
		} else {
			$response = new WP_REST_Response( array() );
		}

		$response->header( 'X-WP-Total', (int) $total_revisions );
		$response->header( 'X-WP-TotalPages', (int) $max_pages );

		$request_params = $request->get_query_params();
		$base_path      = rest_url( sprintf( '%s/%s/%d/%s', $this->namespace, $this->parent_base, $request['parent'], $this->rest_base ) );
		$base           = add_query_arg( urlencode_deep( $request_params ), $base_path );

		if ( $page > 1 ) {
			$prev_page = $page - 1;

			if ( $prev_page > $max_pages ) {
				$prev_page = $max_pages;
			}

			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}
		if ( $max_pages > $page ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );

			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Prepares the revision for the REST response.
	 *
	 * @since 6.3.0
	 * @since 6.6.0 Added resolved URI links to the response.
	 *
	 * @param WP_Post         $post    Post revision object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object.
	 */
	public function prepare_item_for_response( $post, $request ) {
		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			return new WP_REST_Response( array() );
		}

		$parent               = $this->get_parent( $request['parent'] );
		$global_styles_config = $this->get_decoded_global_styles_json( $post->post_content );

		if ( is_wp_error( $global_styles_config ) ) {
			return $global_styles_config;
		}

		$fields     = $this->get_fields_for_response( $request );
		$data       = array();
		$theme_json = null;

		if ( ! empty( $global_styles_config['styles'] ) || ! empty( $global_styles_config['settings'] ) ) {
			$theme_json           = new WP_Theme_JSON( $global_styles_config, 'custom' );
			$global_styles_config = $theme_json->get_raw_data();
			if ( rest_is_field_included( 'settings', $fields ) ) {
				$data['settings'] = ! empty( $global_styles_config['settings'] ) ? $global_styles_config['settings'] : new stdClass();
			}
			if ( rest_is_field_included( 'styles', $fields ) ) {
				$data['styles'] = ! empty( $global_styles_config['styles'] ) ? $global_styles_config['styles'] : new stdClass();
			}
		}

		if ( rest_is_field_included( 'author', $fields ) ) {
			$data['author'] = (int) $post->post_author;
		}

		if ( rest_is_field_included( 'date', $fields ) ) {
			$data['date'] = $this->prepare_date_response( $post->post_date_gmt, $post->post_date );
		}

		if ( rest_is_field_included( 'date_gmt', $fields ) ) {
			$data['date_gmt'] = $this->prepare_date_response( $post->post_date_gmt );
		}

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = (int) $post->ID;
		}

		if ( rest_is_field_included( 'modified', $fields ) ) {
			$data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified );
		}

		if ( rest_is_field_included( 'modified_gmt', $fields ) ) {
			$data['modified_gmt'] = $this->prepare_date_response( $post->post_modified_gmt );
		}

		if ( rest_is_field_included( 'parent', $fields ) ) {
			$data['parent'] = (int) $parent->ID;
		}

		$context             = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data                = $this->add_additional_fields_to_object( $data, $request );
		$data                = $this->filter_response_by_context( $data, $context );
		$response            = rest_ensure_response( $data );
		$resolved_theme_uris = WP_Theme_JSON_Resolver::get_resolved_theme_uris( $theme_json );

		if ( ! empty( $resolved_theme_uris ) ) {
			$response->add_links(
				array(
					'https://api.w.org/theme-file' => $resolved_theme_uris,
				)
			);
		}

		return $response;
	}

	/**
	 * Retrieves the revision's schema, conforming to JSON Schema.
	 *
	 * @since 6.3.0
	 * @since 6.6.0 Merged parent and parent controller schema data.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema               = parent::get_item_schema();
		$parent_schema        = $this->parent_controller->get_item_schema();
		$schema['properties'] = array_merge( $schema['properties'], $parent_schema['properties'] );

		unset(
			$schema['properties']['guid'],
			$schema['properties']['slug'],
			$schema['properties']['meta'],
			$schema['properties']['content'],
			$schema['properties']['title']
		);

			$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 * Removes params that are not supported by global styles revisions.
	 *
	 * @since 6.6.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();
		unset(
			$query_params['exclude'],
			$query_params['include'],
			$query_params['search'],
			$query_params['order'],
			$query_params['orderby']
		);
		return $query_params;
	}
}
endpoints/class-wp-rest-templates-controller.php000064400000112637152222510010016141 0ustar00<?php
/**
 * REST API: WP_REST_Templates_Controller class
 *
 * @package    WordPress
 * @subpackage REST_API
 * @since 5.8.0
 */

/**
 * Base Templates REST API Controller.
 *
 * @since 5.8.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Templates_Controller extends WP_REST_Controller {

	/**
	 * Post type.
	 *
	 * @since 5.8.0
	 * @var string
	 */
	protected $post_type;

	/**
	 * Constructor.
	 *
	 * @since 5.8.0
	 *
	 * @param string $post_type Post type.
	 */
	public function __construct( $post_type ) {
		$this->post_type = $post_type;
		$obj             = get_post_type_object( $post_type );
		$this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name;
		$this->namespace = ! empty( $obj->rest_namespace ) ? $obj->rest_namespace : 'wp/v2';
	}

	/**
	 * Registers the controllers routes.
	 *
	 * @since 5.8.0
	 * @since 6.1.0 Endpoint for fallback template content.
	 */
	public function register_routes() {
		// Lists all templates.
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		// Get fallback template content.
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/lookup',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_template_fallback' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'slug'            => array(
							'description' => __( 'The slug of the template to get the fallback for' ),
							'type'        => 'string',
							'required'    => true,
						),
						'is_custom'       => array(
							'description' => __( 'Indicates if a template is custom or part of the template hierarchy' ),
							'type'        => 'boolean',
						),
						'template_prefix' => array(
							'description' => __( 'The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`' ),
							'type'        => 'string',
						),
					),
				),
			)
		);

		// Lists/updates a single template based on the given id.
		register_rest_route(
			$this->namespace,
			// The route.
			sprintf(
				'/%s/(?P<id>%s%s)',
				$this->rest_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
				// Matches the template name.
				'[\/\w%-]+'
			),
			array(
				'args'   => array(
					'id' => array(
						'description'       => __( 'The id of a template' ),
						'type'              => 'string',
						'sanitize_callback' => array( $this, '_sanitize_template_id' ),
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Whether to bypass Trash and force deletion.' ),
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Returns the fallback template for the given slug.
	 *
	 * @since 6.1.0
	 * @since 6.3.0 Ignore empty templates.
	 *
	 * @param WP_REST_Request $request The request instance.
	 * @return WP_REST_Response|WP_Error
	 */
	public function get_template_fallback( $request ) {
		$hierarchy = get_template_hierarchy( $request['slug'], $request['is_custom'], $request['template_prefix'] );

		do {
			$fallback_template = resolve_block_template( $request['slug'], $hierarchy, '' );
			array_shift( $hierarchy );
		} while ( ! empty( $hierarchy ) && empty( $fallback_template->content ) );

		// To maintain original behavior, return an empty object rather than a 404 error when no template is found.
		$response = $fallback_template ? $this->prepare_item_for_response( $fallback_template, $request ) : new stdClass();

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if the user has permissions to make the request.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	protected function permissions_check( $request ) {
		/*
		 * Verify if the current user has edit_theme_options capability.
		 * This capability is required to edit/view/delete templates.
		 */
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_manage_templates',
				__( 'Sorry, you are not allowed to access the templates on this site.' ),
				array(
					'status' => rest_authorization_required_code(),
				)
			);
		}

		return true;
	}

	/**
	 * Requesting this endpoint for a template like 'twentytwentytwo//home'
	 * requires using a path like /wp/v2/templates/twentytwentytwo//home. There
	 * are special cases when WordPress routing corrects the name to contain
	 * only a single slash like 'twentytwentytwo/home'.
	 *
	 * This method doubles the last slash if it's not already doubled. It relies
	 * on the template ID format {theme_name}//{template_slug} and the fact that
	 * slugs cannot contain slashes.
	 *
	 * @since 5.9.0
	 * @see https://core.trac.wordpress.org/ticket/54507
	 *
	 * @param string $id Template ID.
	 * @return string Sanitized template ID.
	 */
	public function _sanitize_template_id( $id ) {
		$id = urldecode( $id );

		$last_slash_pos = strrpos( $id, '/' );
		if ( false === $last_slash_pos ) {
			return $id;
		}

		$is_double_slashed = substr( $id, $last_slash_pos - 1, 1 ) === '/';
		if ( $is_double_slashed ) {
			return $id;
		}
		return (
			substr( $id, 0, $last_slash_pos )
			. '/'
			. substr( $id, $last_slash_pos )
		);
	}

	/**
	 * Checks if a given request has access to read templates.
	 *
	 * @since 5.8.0
	 * @since 6.6.0 Allow users with edit_posts capability to read templates.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}
		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_manage_templates',
			__( 'Sorry, you are not allowed to access the templates on this site.' ),
			array(
				'status' => rest_authorization_required_code(),
			)
		);
	}

	/**
	 * Returns a list of templates.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request The request instance.
	 * @return WP_REST_Response
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$query = array();
		if ( isset( $request['wp_id'] ) ) {
			$query['wp_id'] = $request['wp_id'];
		}
		if ( isset( $request['area'] ) ) {
			$query['area'] = $request['area'];
		}
		if ( isset( $request['post_type'] ) ) {
			$query['post_type'] = $request['post_type'];
		}

		$templates = array();
		foreach ( get_block_templates( $query, $this->post_type ) as $template ) {
			$data        = $this->prepare_item_for_response( $template, $request );
			$templates[] = $this->prepare_response_for_collection( $data );
		}

		return rest_ensure_response( $templates );
	}

	/**
	 * Checks if a given request has access to read a single template.
	 *
	 * @since 5.8.0
	 * @since 6.6.0 Allow users with edit_posts capability to read individual templates.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}
		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_manage_templates',
			__( 'Sorry, you are not allowed to access the templates on this site.' ),
			array(
				'status' => rest_authorization_required_code(),
			)
		);
	}

	/**
	 * Returns the given template
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request The request instance.
	 * @return WP_REST_Response|WP_Error
	 */
	public function get_item( $request ) {
		if ( isset( $request['source'] ) && ( 'theme' === $request['source'] || 'plugin' === $request['source'] ) ) {
			$template = get_block_file_template( $request['id'], $this->post_type );
		} else {
			$template = get_block_template( $request['id'], $this->post_type );
		}

		if ( ! $template ) {
			return new WP_Error( 'rest_template_not_found', __( 'No templates exist with that id.' ), array( 'status' => 404 ) );
		}

		return $this->prepare_item_for_response( $template, $request );
	}

	/**
	 * Checks if a given request has access to write a single template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Updates a single template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$template = get_block_template( $request['id'], $this->post_type );
		if ( ! $template ) {
			return new WP_Error( 'rest_template_not_found', __( 'No templates exist with that id.' ), array( 'status' => 404 ) );
		}

		$post_before = get_post( $template->wp_id );

		if ( isset( $request['source'] ) && 'theme' === $request['source'] ) {
			wp_delete_post( $template->wp_id, true );
			$request->set_param( 'context', 'edit' );

			$template = get_block_template( $request['id'], $this->post_type );
			$response = $this->prepare_item_for_response( $template, $request );

			return rest_ensure_response( $response );
		}

		$changes = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $changes ) ) {
			return $changes;
		}

		if ( 'custom' === $template->source ) {
			$update = true;
			$result = wp_update_post( wp_slash( (array) $changes ), false );
		} else {
			$update      = false;
			$post_before = null;
			$result      = wp_insert_post( wp_slash( (array) $changes ), false );
		}

		if ( is_wp_error( $result ) ) {
			if ( 'db_update_error' === $result->get_error_code() ) {
				$result->add_data( array( 'status' => 500 ) );
			} else {
				$result->add_data( array( 'status' => 400 ) );
			}
			return $result;
		}

		$template      = get_block_template( $request['id'], $this->post_type );
		$fields_update = $this->update_additional_fields_for_object( $template, $request );
		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'edit' );

		$post = get_post( $template->wp_id );
		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
		do_action( "rest_after_insert_{$this->post_type}", $post, $request, false );

		wp_after_insert_post( $post, $update, $post_before );

		$response = $this->prepare_item_for_response( $template, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Checks if a given request has access to create a template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to create items, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Creates a single template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		$prepared_post = $this->prepare_item_for_database( $request );

		if ( is_wp_error( $prepared_post ) ) {
			return $prepared_post;
		}

		$prepared_post->post_name = $request['slug'];
		$post_id                  = wp_insert_post( wp_slash( (array) $prepared_post ), true );
		if ( is_wp_error( $post_id ) ) {
			if ( 'db_insert_error' === $post_id->get_error_code() ) {
				$post_id->add_data( array( 'status' => 500 ) );
			} else {
				$post_id->add_data( array( 'status' => 400 ) );
			}

			return $post_id;
		}
		$posts = get_block_templates( array( 'wp_id' => $post_id ), $this->post_type );
		if ( ! count( $posts ) ) {
			return new WP_Error( 'rest_template_insert_error', __( 'No templates exist with that id.' ), array( 'status' => 400 ) );
		}
		$id            = $posts[0]->id;
		$post          = get_post( $post_id );
		$template      = get_block_template( $id, $this->post_type );
		$fields_update = $this->update_additional_fields_for_object( $template, $request );
		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
		do_action( "rest_after_insert_{$this->post_type}", $post, $request, true );

		wp_after_insert_post( $post, false, null );

		$response = $this->prepare_item_for_response( $template, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $template->id ) ) );

		return $response;
	}

	/**
	 * Checks if a given request has access to delete a single template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has delete access for the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Deletes a single template.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$template = get_block_template( $request['id'], $this->post_type );
		if ( ! $template ) {
			return new WP_Error( 'rest_template_not_found', __( 'No templates exist with that id.' ), array( 'status' => 404 ) );
		}
		if ( 'custom' !== $template->source ) {
			return new WP_Error( 'rest_invalid_template', __( 'Templates based on theme files can\'t be removed.' ), array( 'status' => 400 ) );
		}

		$id    = $template->wp_id;
		$force = (bool) $request['force'];

		$request->set_param( 'context', 'edit' );

		// If we're forcing, then delete permanently.
		if ( $force ) {
			$previous = $this->prepare_item_for_response( $template, $request );
			$result   = wp_delete_post( $id, true );
			$response = new WP_REST_Response();
			$response->set_data(
				array(
					'deleted'  => true,
					'previous' => $previous->get_data(),
				)
			);
		} else {
			// Otherwise, only trash if we haven't already.
			if ( 'trash' === $template->status ) {
				return new WP_Error(
					'rest_template_already_trashed',
					__( 'The template has already been deleted.' ),
					array( 'status' => 410 )
				);
			}

			/*
			 * (Note that internally this falls through to `wp_delete_post()`
			 * if the Trash is disabled.)
			 */
			$result           = wp_trash_post( $id );
			$template->status = 'trash';
			$response         = $this->prepare_item_for_response( $template, $request );
		}

		if ( ! $result ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'The template cannot be deleted.' ),
				array( 'status' => 500 )
			);
		}

		return $response;
	}

	/**
	 * Prepares a single template for create or update.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return stdClass|WP_Error Changes to pass to wp_update_post.
	 */
	protected function prepare_item_for_database( $request ) {
		$template = $request['id'] ? get_block_template( $request['id'], $this->post_type ) : null;
		$changes  = new stdClass();
		if ( null === $template ) {
			$changes->post_type   = $this->post_type;
			$changes->post_status = 'publish';
			$changes->tax_input   = array(
				'wp_theme' => isset( $request['theme'] ) ? $request['theme'] : get_stylesheet(),
			);
		} elseif ( 'custom' !== $template->source ) {
			$changes->post_name   = $template->slug;
			$changes->post_type   = $this->post_type;
			$changes->post_status = 'publish';
			$changes->tax_input   = array(
				'wp_theme' => $template->theme,
			);
			$changes->meta_input  = array(
				'origin' => $template->source,
			);
		} else {
			$changes->post_name   = $template->slug;
			$changes->ID          = $template->wp_id;
			$changes->post_status = 'publish';
		}
		if ( isset( $request['content'] ) ) {
			if ( is_string( $request['content'] ) ) {
				$changes->post_content = $request['content'];
			} elseif ( isset( $request['content']['raw'] ) ) {
				$changes->post_content = $request['content']['raw'];
			}
		} elseif ( null !== $template && 'custom' !== $template->source ) {
			$changes->post_content = $template->content;
		}
		if ( isset( $request['title'] ) ) {
			if ( is_string( $request['title'] ) ) {
				$changes->post_title = $request['title'];
			} elseif ( ! empty( $request['title']['raw'] ) ) {
				$changes->post_title = $request['title']['raw'];
			}
		} elseif ( null !== $template && 'custom' !== $template->source ) {
			$changes->post_title = $template->title;
		}
		if ( isset( $request['description'] ) ) {
			$changes->post_excerpt = $request['description'];
		} elseif ( null !== $template && 'custom' !== $template->source ) {
			$changes->post_excerpt = $template->description;
		}

		if ( 'wp_template' === $this->post_type && isset( $request['is_wp_suggestion'] ) ) {
			$changes->meta_input     = wp_parse_args(
				array(
					'is_wp_suggestion' => $request['is_wp_suggestion'],
				),
				$changes->meta_input = array()
			);
		}

		if ( 'wp_template_part' === $this->post_type ) {
			if ( isset( $request['area'] ) ) {
				$changes->tax_input['wp_template_part_area'] = _filter_block_template_part_area( $request['area'] );
			} elseif ( null !== $template && 'custom' !== $template->source && $template->area ) {
				$changes->tax_input['wp_template_part_area'] = _filter_block_template_part_area( $template->area );
			} elseif ( empty( $template->area ) ) {
				$changes->tax_input['wp_template_part_area'] = WP_TEMPLATE_PART_AREA_UNCATEGORIZED;
			}
		}

		if ( ! empty( $request['author'] ) ) {
			$post_author = (int) $request['author'];

			if ( get_current_user_id() !== $post_author ) {
				$user_obj = get_userdata( $post_author );

				if ( ! $user_obj ) {
					return new WP_Error(
						'rest_invalid_author',
						__( 'Invalid author ID.' ),
						array( 'status' => 400 )
					);
				}
			}

			$changes->post_author = $post_author;
		}

		/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
		return apply_filters( "rest_pre_insert_{$this->post_type}", $changes, $request );
	}

	/**
	 * Prepare a single template output for response
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Renamed `$template` to `$item` to match parent class for PHP 8 named parameter support.
	 * @since 6.3.0 Added `modified` property to the response.
	 *
	 * @param WP_Block_Template $item    Template instance.
	 * @param WP_REST_Request   $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			return new WP_REST_Response( array() );
		}

		/*
		 * Resolve pattern blocks so they don't need to be resolved client-side
		 * in the editor, improving performance.
		 */
		$blocks        = parse_blocks( $item->content );
		$blocks        = resolve_pattern_blocks( $blocks );
		$item->content = serialize_blocks( $blocks );

		// Restores the more descriptive, specific name for use within this method.
		$template = $item;

		$fields = $this->get_fields_for_response( $request );

		// Base fields for every template.
		$data = array();

		if ( rest_is_field_included( 'id', $fields ) ) {
			$data['id'] = $template->id;
		}

		if ( rest_is_field_included( 'theme', $fields ) ) {
			$data['theme'] = $template->theme;
		}

		if ( rest_is_field_included( 'content', $fields ) ) {
			$data['content'] = array();
		}
		if ( rest_is_field_included( 'content.raw', $fields ) ) {
			$data['content']['raw'] = $template->content;
		}

		if ( rest_is_field_included( 'content.block_version', $fields ) ) {
			$data['content']['block_version'] = block_version( $template->content );
		}

		if ( rest_is_field_included( 'slug', $fields ) ) {
			$data['slug'] = $template->slug;
		}

		if ( rest_is_field_included( 'source', $fields ) ) {
			$data['source'] = $template->source;
		}

		if ( rest_is_field_included( 'origin', $fields ) ) {
			$data['origin'] = $template->origin;
		}

		if ( rest_is_field_included( 'type', $fields ) ) {
			$data['type'] = $template->type;
		}

		if ( rest_is_field_included( 'description', $fields ) ) {
			$data['description'] = $template->description;
		}

		if ( rest_is_field_included( 'title', $fields ) ) {
			$data['title'] = array();
		}

		if ( rest_is_field_included( 'title.raw', $fields ) ) {
			$data['title']['raw'] = $template->title;
		}

		if ( rest_is_field_included( 'title.rendered', $fields ) ) {
			if ( $template->wp_id ) {
				/** This filter is documented in wp-includes/post-template.php */
				$data['title']['rendered'] = apply_filters( 'the_title', $template->title, $template->wp_id );
			} else {
				$data['title']['rendered'] = $template->title;
			}
		}

		if ( rest_is_field_included( 'status', $fields ) ) {
			$data['status'] = $template->status;
		}

		if ( rest_is_field_included( 'wp_id', $fields ) ) {
			$data['wp_id'] = (int) $template->wp_id;
		}

		if ( rest_is_field_included( 'has_theme_file', $fields ) ) {
			$data['has_theme_file'] = (bool) $template->has_theme_file;
		}

		if ( rest_is_field_included( 'is_custom', $fields ) && 'wp_template' === $template->type ) {
			$data['is_custom'] = $template->is_custom;
		}

		if ( rest_is_field_included( 'author', $fields ) ) {
			$data['author'] = (int) $template->author;
		}

		if ( rest_is_field_included( 'area', $fields ) && 'wp_template_part' === $template->type ) {
			$data['area'] = $template->area;
		}

		if ( rest_is_field_included( 'modified', $fields ) ) {
			$data['modified'] = mysql_to_rfc3339( $template->modified );
		}

		if ( rest_is_field_included( 'author_text', $fields ) ) {
			$data['author_text'] = self::get_wp_templates_author_text_field( $template );
		}

		if ( rest_is_field_included( 'original_source', $fields ) ) {
			$data['original_source'] = self::get_wp_templates_original_source_field( $template );
		}

		if ( rest_is_field_included( 'plugin', $fields ) ) {
			$registered_template = WP_Block_Templates_Registry::get_instance()->get_by_slug( $template->slug );
			if ( $registered_template ) {
				$data['plugin'] = $registered_template->plugin;
			}
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $template->id );
			$response->add_links( $links );
			if ( ! empty( $links['self']['href'] ) ) {
				$actions = $this->get_available_actions();
				$self    = $links['self']['href'];
				foreach ( $actions as $rel ) {
					$response->add_link( $rel, $self );
				}
			}
		}

		return $response;
	}

	/**
	 * Returns the source from where the template originally comes from.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Block_Template $template_object Template instance.
	 * @return string                            Original source of the template one of theme, plugin, site, or user.
	 */
	private static function get_wp_templates_original_source_field( $template_object ) {
		if ( 'wp_template' === $template_object->type || 'wp_template_part' === $template_object->type ) {
			/*
			 * Added by theme.
			 * Template originally provided by a theme, but customized by a user.
			 * Templates originally didn't have the 'origin' field so identify
			 * older customized templates by checking for no origin and a 'theme'
			 * or 'custom' source.
			 */
			if ( $template_object->has_theme_file &&
			( 'theme' === $template_object->origin || (
				empty( $template_object->origin ) && in_array(
					$template_object->source,
					array(
						'theme',
						'custom',
					),
					true
				) )
			)
			) {
				return 'theme';
			}

			// Added by plugin.
			if ( 'plugin' === $template_object->origin ) {
				return 'plugin';
			}

			/*
			 * Added by site.
			 * Template was created from scratch, but has no author. Author support
			 * was only added to templates in WordPress 5.9. Fallback to showing the
			 * site logo and title.
			 */
			if ( empty( $template_object->has_theme_file ) && 'custom' === $template_object->source && empty( $template_object->author ) ) {
				return 'site';
			}
		}

		// Added by user.
		return 'user';
	}

	/**
	 * Returns a human readable text for the author of the template.
	 *
	 * @since 6.5.0
	 *
	 * @param WP_Block_Template $template_object Template instance.
	 * @return string                            Human readable text for the author.
	 */
	private static function get_wp_templates_author_text_field( $template_object ) {
		$original_source = self::get_wp_templates_original_source_field( $template_object );
		switch ( $original_source ) {
			case 'theme':
				$theme_name = wp_get_theme( $template_object->theme )->get( 'Name' );
				return empty( $theme_name ) ? $template_object->theme : $theme_name;
			case 'plugin':
				if ( ! function_exists( 'get_plugins' ) ) {
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
				}
				if ( isset( $template_object->plugin ) ) {
					$plugins = wp_get_active_and_valid_plugins();

					foreach ( $plugins as $plugin_file ) {
						$plugin_basename = plugin_basename( $plugin_file );
						// Split basename by '/' to get the plugin slug.
						list( $plugin_slug, ) = explode( '/', $plugin_basename );

						if ( $plugin_slug === $template_object->plugin ) {
							$plugin_data = get_plugin_data( $plugin_file );

							if ( ! empty( $plugin_data['Name'] ) ) {
								return $plugin_data['Name'];
							}

							break;
						}
					}
				}

				/*
				 * Fall back to the theme name if the plugin is not defined. That's needed to keep backwards
				 * compatibility with templates that were registered before the plugin attribute was added.
				 */
				$plugins         = get_plugins();
				$plugin_basename = plugin_basename( sanitize_text_field( $template_object->theme . '.php' ) );
				if ( isset( $plugins[ $plugin_basename ] ) && isset( $plugins[ $plugin_basename ]['Name'] ) ) {
					return $plugins[ $plugin_basename ]['Name'];
				}
				return isset( $template_object->plugin ) ?
					$template_object->plugin :
					$template_object->theme;
			case 'site':
				return get_bloginfo( 'name' );
			case 'user':
				$author = get_user_by( 'id', $template_object->author );
				if ( ! $author ) {
					return __( 'Unknown author' );
				}
				return $author->get( 'display_name' );
		}

		// Fail-safe to return a string should the original source ever fall through.
		return '';
	}


	/**
	 * Prepares links for the request.
	 *
	 * @since 5.8.0
	 *
	 * @param integer $id ID.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $id ) {
		$links = array(
			'self'       => array(
				'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $id ) ),
			),
			'collection' => array(
				'href' => rest_url( rest_get_route_for_post_type_items( $this->post_type ) ),
			),
			'about'      => array(
				'href' => rest_url( 'wp/v2/types/' . $this->post_type ),
			),
		);

		if ( post_type_supports( $this->post_type, 'revisions' ) ) {
			$template = get_block_template( $id, $this->post_type );
			if ( $template instanceof WP_Block_Template && ! empty( $template->wp_id ) ) {
				$revisions       = wp_get_latest_revision_id_and_total_count( $template->wp_id );
				$revisions_count = ! is_wp_error( $revisions ) ? $revisions['count'] : 0;
				$revisions_base  = sprintf( '/%s/%s/%s/revisions', $this->namespace, $this->rest_base, $id );

				$links['version-history'] = array(
					'href'  => rest_url( $revisions_base ),
					'count' => $revisions_count,
				);

				if ( $revisions_count > 0 ) {
					$links['predecessor-version'] = array(
						'href' => rest_url( $revisions_base . '/' . $revisions['latest_id'] ),
						'id'   => $revisions['latest_id'],
					);
				}
			}
		}

		return $links;
	}

	/**
	 * Get the link relations available for the post and current user.
	 *
	 * @since 5.8.0
	 *
	 * @return string[] List of link relations.
	 */
	protected function get_available_actions() {
		$rels = array();

		$post_type = get_post_type_object( $this->post_type );

		if ( current_user_can( $post_type->cap->publish_posts ) ) {
			$rels[] = 'https://api.w.org/action-publish';
		}

		if ( current_user_can( 'unfiltered_html' ) ) {
			$rels[] = 'https://api.w.org/action-unfiltered-html';
		}

		return $rels;
	}

	/**
	 * Retrieves the query params for the posts collection.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added `'area'` and `'post_type'`.
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context'   => $this->get_context_param( array( 'default' => 'view' ) ),
			'wp_id'     => array(
				'description' => __( 'Limit to the specified post id.' ),
				'type'        => 'integer',
			),
			'area'      => array(
				'description' => __( 'Limit to the specified template part area.' ),
				'type'        => 'string',
			),
			'post_type' => array(
				'description' => __( 'Post type to get the templates for.' ),
				'type'        => 'string',
			),
		);
	}

	/**
	 * Retrieves the block type' schema, conforming to JSON Schema.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added `'area'`.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => $this->post_type,
			'type'       => 'object',
			'properties' => array(
				'id'              => array(
					'description' => __( 'ID of template.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'slug'            => array(
					'description' => __( 'Unique slug identifying the template.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'required'    => true,
					'minLength'   => 1,
					'pattern'     => '[a-zA-Z0-9_\%-]+',
				),
				'theme'           => array(
					'description' => __( 'Theme identifier for the template.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'type'            => array(
					'description' => __( 'Type of template.' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'source'          => array(
					'description' => __( 'Source of template' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'origin'          => array(
					'description' => __( 'Source of a customized template' ),
					'type'        => 'string',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'content'         => array(
					'description' => __( 'Content of template.' ),
					'type'        => array( 'object', 'string' ),
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'properties'  => array(
						'raw'           => array(
							'description' => __( 'Content for the template, as it exists in the database.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit' ),
						),
						'block_version' => array(
							'description' => __( 'Version of the content block format used by the template.' ),
							'type'        => 'integer',
							'context'     => array( 'edit' ),
							'readonly'    => true,
						),
					),
				),
				'title'           => array(
					'description' => __( 'Title of template.' ),
					'type'        => array( 'object', 'string' ),
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'properties'  => array(
						'raw'      => array(
							'description' => __( 'Title for the template, as it exists in the database.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit', 'embed' ),
						),
						'rendered' => array(
							'description' => __( 'HTML title for the template, transformed for display.' ),
							'type'        => 'string',
							'context'     => array( 'view', 'edit', 'embed' ),
							'readonly'    => true,
						),
					),
				),
				'description'     => array(
					'description' => __( 'Description of template.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'status'          => array(
					'description' => __( 'Status of template.' ),
					'type'        => 'string',
					'enum'        => array_keys( get_post_stati( array( 'internal' => false ) ) ),
					'default'     => 'publish',
					'context'     => array( 'embed', 'view', 'edit' ),
				),
				'wp_id'           => array(
					'description' => __( 'Post ID.' ),
					'type'        => 'integer',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'has_theme_file'  => array(
					'description' => __( 'Theme file exists.' ),
					'type'        => 'bool',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'author'          => array(
					'description' => __( 'The ID for the author of the template.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'modified'        => array(
					'description' => __( "The date the template was last modified, in the site's timezone." ),
					'type'        => 'string',
					'format'      => 'date-time',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'author_text'     => array(
					'type'        => 'string',
					'description' => __( 'Human readable text for the author.' ),
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'original_source' => array(
					'description' => __( 'Where the template originally comes from e.g. \'theme\'' ),
					'type'        => 'string',
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
					'enum'        => array(
						'theme',
						'plugin',
						'site',
						'user',
					),
				),
			),
		);

		if ( 'wp_template' === $this->post_type ) {
			$schema['properties']['is_custom'] = array(
				'description' => __( 'Whether a template is a custom template.' ),
				'type'        => 'bool',
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			);
			$schema['properties']['plugin']    = array(
				'type'        => 'string',
				'description' => __( 'Plugin that registered the template.' ),
				'readonly'    => true,
				'context'     => array( 'view', 'edit', 'embed' ),
			);
		}

		if ( 'wp_template_part' === $this->post_type ) {
			$schema['properties']['area'] = array(
				'description' => __( 'Where the template part is intended for use (header, footer, etc.)' ),
				'type'        => 'string',
				'context'     => array( 'embed', 'view', 'edit' ),
			);
		}

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-pattern-directory-controller.php000064400000031215152222510010017612 0ustar00<?php
/**
 * Block Pattern Directory REST API: WP_REST_Pattern_Directory_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.8.0
 */

/**
 * Controller which provides REST endpoint for block patterns.
 *
 * This simply proxies the endpoint at http://api.wordpress.org/patterns/1.0/. That isn't necessary for
 * functionality, but is desired for privacy. It prevents api.wordpress.org from knowing the user's IP address.
 *
 * @since 5.8.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Pattern_Directory_Controller extends WP_REST_Controller {

	/**
	 * Constructs the controller.
	 *
	 * @since 5.8.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'pattern-directory';
	}

	/**
	 * Registers the necessary REST API routes.
	 *
	 * @since 5.8.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/patterns',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to view the local block pattern directory.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has permission, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_pattern_directory_cannot_view',
			__( 'Sorry, you are not allowed to browse the local block pattern directory.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Search and retrieve block patterns metadata
	 *
	 * @since 5.8.0
	 * @since 6.0.0 Added 'slug' to request.
	 * @since 6.2.0 Added 'per_page', 'page', 'offset', 'order', and 'orderby' to request.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		$valid_query_args = array(
			'offset'   => true,
			'order'    => true,
			'orderby'  => true,
			'page'     => true,
			'per_page' => true,
			'search'   => true,
			'slug'     => true,
		);
		$query_args       = array_intersect_key( $request->get_params(), $valid_query_args );

		$query_args['locale']             = get_user_locale();
		$query_args['wp-version']         = wp_get_wp_version();
		$query_args['pattern-categories'] = isset( $request['category'] ) ? $request['category'] : false;
		$query_args['pattern-keywords']   = isset( $request['keyword'] ) ? $request['keyword'] : false;

		$query_args = array_filter( $query_args );

		$transient_key = $this->get_transient_key( $query_args );

		/*
		 * Use network-wide transient to improve performance. The locale is the only site
		 * configuration that affects the response, and it's included in the transient key.
		 */
		$raw_patterns = get_site_transient( $transient_key );

		if ( ! $raw_patterns ) {
			$api_url = 'http://api.wordpress.org/patterns/1.0/?' . build_query( $query_args );
			if ( wp_http_supports( array( 'ssl' ) ) ) {
				$api_url = set_url_scheme( $api_url, 'https' );
			}

			/*
			 * Default to a short TTL, to mitigate cache stampedes on high-traffic sites.
			 * This assumes that most errors will be short-lived, e.g., packet loss that causes the
			 * first request to fail, but a follow-up one will succeed. The value should be high
			 * enough to avoid stampedes, but low enough to not interfere with users manually
			 * re-trying a failed request.
			 */
			$cache_ttl      = 5;
			$wporg_response = wp_remote_get( $api_url );
			$raw_patterns   = json_decode( wp_remote_retrieve_body( $wporg_response ) );

			if ( is_wp_error( $wporg_response ) ) {
				$raw_patterns = $wporg_response;

			} elseif ( ! is_array( $raw_patterns ) ) {
				// HTTP request succeeded, but response data is invalid.
				$raw_patterns = new WP_Error(
					'pattern_api_failed',
					sprintf(
						/* translators: %s: Support forums URL. */
						__( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ),
						__( 'https://wordpress.org/support/forums/' )
					),
					array(
						'response' => wp_remote_retrieve_body( $wporg_response ),
					)
				);

			} else {
				// Response has valid data.
				$cache_ttl = HOUR_IN_SECONDS;
			}

			set_site_transient( $transient_key, $raw_patterns, $cache_ttl );
		}

		if ( is_wp_error( $raw_patterns ) ) {
			$raw_patterns->add_data( array( 'status' => 500 ) );

			return $raw_patterns;
		}

		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$response = array();

		if ( $raw_patterns ) {
			foreach ( $raw_patterns as $pattern ) {
				$response[] = $this->prepare_response_for_collection(
					$this->prepare_item_for_response( $pattern, $request )
				);
			}
		}

		return new WP_REST_Response( $response );
	}

	/**
	 * Prepare a raw block pattern before it gets output in a REST API response.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Renamed `$raw_pattern` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param object          $item    Raw pattern from api.wordpress.org, before any changes.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$raw_pattern = $item;

		$prepared_pattern = array(
			'id'             => absint( $raw_pattern->id ),
			'title'          => sanitize_text_field( $raw_pattern->title->rendered ),
			'content'        => wp_kses_post( $raw_pattern->pattern_content ),
			'categories'     => array_map( 'sanitize_title', $raw_pattern->category_slugs ),
			'keywords'       => array_map( 'sanitize_text_field', explode( ',', $raw_pattern->meta->wpop_keywords ) ),
			'description'    => sanitize_text_field( $raw_pattern->meta->wpop_description ),
			'viewport_width' => absint( $raw_pattern->meta->wpop_viewport_width ),
			'block_types'    => array_map( 'sanitize_text_field', $raw_pattern->meta->wpop_block_types ),
		);

		$prepared_pattern = $this->add_additional_fields_to_object( $prepared_pattern, $request );

		$response = new WP_REST_Response( $prepared_pattern );

		/**
		 * Filters the REST API response for a block pattern.
		 *
		 * @since 5.8.0
		 *
		 * @param WP_REST_Response $response    The response object.
		 * @param object           $raw_pattern The unprepared block pattern.
		 * @param WP_REST_Request  $request     The request object.
		 */
		return apply_filters( 'rest_prepare_block_pattern', $response, $raw_pattern, $request );
	}

	/**
	 * Retrieves the block pattern's schema, conforming to JSON Schema.
	 *
	 * @since 5.8.0
	 * @since 6.2.0 Added `'block_types'` to schema.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'pattern-directory-item',
			'type'       => 'object',
			'properties' => array(
				'id'             => array(
					'description' => __( 'The pattern ID.' ),
					'type'        => 'integer',
					'minimum'     => 1,
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'title'          => array(
					'description' => __( 'The pattern title, in human readable format.' ),
					'type'        => 'string',
					'minLength'   => 1,
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'content'        => array(
					'description' => __( 'The pattern content.' ),
					'type'        => 'string',
					'minLength'   => 1,
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'categories'     => array(
					'description' => __( "The pattern's category slugs." ),
					'type'        => 'array',
					'uniqueItems' => true,
					'items'       => array( 'type' => 'string' ),
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'keywords'       => array(
					'description' => __( "The pattern's keywords." ),
					'type'        => 'array',
					'uniqueItems' => true,
					'items'       => array( 'type' => 'string' ),
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'description'    => array(
					'description' => __( 'A description of the pattern.' ),
					'type'        => 'string',
					'minLength'   => 1,
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'viewport_width' => array(
					'description' => __( 'The preferred width of the viewport when previewing a pattern, in pixels.' ),
					'type'        => 'integer',
					'context'     => array( 'view', 'edit', 'embed' ),
				),

				'block_types'    => array(
					'description' => __( 'The block types which can use this pattern.' ),
					'type'        => 'array',
					'uniqueItems' => true,
					'items'       => array( 'type' => 'string' ),
					'context'     => array( 'view', 'embed' ),
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the search parameters for the block pattern's collection.
	 *
	 * @since 5.8.0
	 * @since 6.2.0 Added 'per_page', 'page', 'offset', 'order', and 'orderby' to request.
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$query_params = parent::get_collection_params();

		$query_params['per_page']['default'] = 100;
		$query_params['search']['minLength'] = 1;
		$query_params['context']['default']  = 'view';

		$query_params['category'] = array(
			'description' => __( 'Limit results to those matching a category ID.' ),
			'type'        => 'integer',
			'minimum'     => 1,
		);

		$query_params['keyword'] = array(
			'description' => __( 'Limit results to those matching a keyword ID.' ),
			'type'        => 'integer',
			'minimum'     => 1,
		);

		$query_params['slug'] = array(
			'description' => __( 'Limit results to those matching a pattern (slug).' ),
			'type'        => 'array',
		);

		$query_params['offset'] = array(
			'description' => __( 'Offset the result set by a specific number of items.' ),
			'type'        => 'integer',
		);

		$query_params['order'] = array(
			'description' => __( 'Order sort attribute ascending or descending.' ),
			'type'        => 'string',
			'default'     => 'desc',
			'enum'        => array( 'asc', 'desc' ),
		);

		$query_params['orderby'] = array(
			'description' => __( 'Sort collection by post attribute.' ),
			'type'        => 'string',
			'default'     => 'date',
			'enum'        => array(
				'author',
				'date',
				'id',
				'include',
				'modified',
				'parent',
				'relevance',
				'slug',
				'include_slugs',
				'title',
				'favorite_count',
			),
		);

		/**
		 * Filter collection parameters for the block pattern directory controller.
		 *
		 * @since 5.8.0
		 *
		 * @param array $query_params JSON Schema-formatted collection parameters.
		 */
		return apply_filters( 'rest_pattern_directory_collection_params', $query_params );
	}

	/**
	 * Include a hash of the query args, so that different requests are stored in
	 * separate caches.
	 *
	 * MD5 is chosen for its speed, low-collision rate, universal availability, and to stay
	 * under the character limit for `_site_transient_timeout_{...}` keys.
	 *
	 * @link https://stackoverflow.com/questions/3665247/fastest-hash-for-non-cryptographic-uses
	 *
	 * @since 6.0.0
	 *
	 * @param array $query_args Query arguments to generate a transient key from.
	 * @return string Transient key.
	 */
	protected function get_transient_key( $query_args ) {

		if ( isset( $query_args['slug'] ) ) {
			// This is an additional precaution because the "sort" function expects an array.
			$query_args['slug'] = wp_parse_list( $query_args['slug'] );

			// Empty arrays should not affect the transient key.
			if ( empty( $query_args['slug'] ) ) {
				unset( $query_args['slug'] );
			} else {
				// Sort the array so that the transient key doesn't depend on the order of slugs.
				sort( $query_args['slug'] );
			}
		}

		return 'wp_remote_block_patterns_' . md5( serialize( $query_args ) );
	}
}
endpoints/class-wp-rest-site-health-controller.php000064400000023154152222510010016345 0ustar00<?php
/**
 * REST API: WP_REST_Site_Health_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.6.0
 */

/**
 * Core class for interacting with Site Health tests.
 *
 * @since 5.6.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Site_Health_Controller extends WP_REST_Controller {

	/**
	 * An instance of the site health class.
	 *
	 * @since 5.6.0
	 *
	 * @var WP_Site_Health
	 */
	private $site_health;

	/**
	 * Site Health controller constructor.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_Site_Health $site_health An instance of the site health class.
	 */
	public function __construct( $site_health ) {
		$this->namespace = 'wp-site-health/v1';
		$this->rest_base = 'tests';

		$this->site_health = $site_health;
	}

	/**
	 * Registers API routes.
	 *
	 * @since 5.6.0
	 * @since 6.1.0 Adds page-cache async test.
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'background-updates'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_background_updates' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'background_updates' );
					},
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'loopback-requests'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_loopback_requests' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'loopback_requests' );
					},
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'https-status'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_https_status' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'https_status' );
					},
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'dotorg-communication'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_dotorg_communication' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'dotorg_communication' );
					},
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'authorization-header'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_authorization_header' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'authorization_header' );
					},
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s',
				'directory-sizes'
			),
			array(
				'methods'             => 'GET',
				'callback'            => array( $this, 'get_directory_sizes' ),
				'permission_callback' => function () {
					return $this->validate_request_permission( 'directory_sizes' ) && ! is_multisite();
				},
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/%s',
				$this->rest_base,
				'page-cache'
			),
			array(
				array(
					'methods'             => 'GET',
					'callback'            => array( $this, 'test_page_cache' ),
					'permission_callback' => function () {
						return $this->validate_request_permission( 'page_cache' );
					},
				),
			)
		);
	}

	/**
	 * Validates if the current user can request this REST endpoint.
	 *
	 * @since 5.6.0
	 *
	 * @param string $check The endpoint check being ran.
	 * @return bool
	 */
	protected function validate_request_permission( $check ) {
		$default_capability = 'view_site_health_checks';

		/**
		 * Filters the capability needed to run a given Site Health check.
		 *
		 * @since 5.6.0
		 *
		 * @param string $default_capability The default capability required for this check.
		 * @param string $check              The Site Health check being performed.
		 */
		$capability = apply_filters( "site_health_test_rest_capability_{$check}", $default_capability, $check );

		return current_user_can( $capability );
	}

	/**
	 * Checks if background updates work as expected.
	 *
	 * @since 5.6.0
	 *
	 * @return array
	 */
	public function test_background_updates() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_background_updates();
	}

	/**
	 * Checks that the site can reach the WordPress.org API.
	 *
	 * @since 5.6.0
	 *
	 * @return array
	 */
	public function test_dotorg_communication() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_dotorg_communication();
	}

	/**
	 * Checks that loopbacks can be performed.
	 *
	 * @since 5.6.0
	 *
	 * @return array
	 */
	public function test_loopback_requests() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_loopback_requests();
	}

	/**
	 * Checks that the site's frontend can be accessed over HTTPS.
	 *
	 * @since 5.7.0
	 *
	 * @return array
	 */
	public function test_https_status() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_https_status();
	}

	/**
	 * Checks that the authorization header is valid.
	 *
	 * @since 5.6.0
	 *
	 * @return array
	 */
	public function test_authorization_header() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_authorization_header();
	}

	/**
	 * Checks that full page cache is active.
	 *
	 * @since 6.1.0
	 *
	 * @return array The test result.
	 */
	public function test_page_cache() {
		$this->load_admin_textdomain();
		return $this->site_health->get_test_page_cache();
	}

	/**
	 * Gets the current directory sizes for this install.
	 *
	 * @since 5.6.0
	 *
	 * @return array|WP_Error
	 */
	public function get_directory_sizes() {
		if ( ! class_exists( 'WP_Debug_Data' ) ) {
			require_once ABSPATH . 'wp-admin/includes/class-wp-debug-data.php';
		}

		$this->load_admin_textdomain();

		$sizes_data = WP_Debug_Data::get_sizes();
		$all_sizes  = array( 'raw' => 0 );

		foreach ( $sizes_data as $name => $value ) {
			$name = sanitize_text_field( $name );
			$data = array();

			if ( isset( $value['size'] ) ) {
				if ( is_string( $value['size'] ) ) {
					$data['size'] = sanitize_text_field( $value['size'] );
				} else {
					$data['size'] = (int) $value['size'];
				}
			}

			if ( isset( $value['debug'] ) ) {
				if ( is_string( $value['debug'] ) ) {
					$data['debug'] = sanitize_text_field( $value['debug'] );
				} else {
					$data['debug'] = (int) $value['debug'];
				}
			}

			if ( ! empty( $value['raw'] ) ) {
				$data['raw'] = (int) $value['raw'];
			}

			$all_sizes[ $name ] = $data;
		}

		if ( isset( $all_sizes['total_size']['debug'] ) && 'not available' === $all_sizes['total_size']['debug'] ) {
			return new WP_Error( 'not_available', __( 'Directory sizes could not be returned.' ), array( 'status' => 500 ) );
		}

		return $all_sizes;
	}

	/**
	 * Loads the admin textdomain for Site Health tests.
	 *
	 * The {@see WP_Site_Health} class is defined in WP-Admin, while the REST API operates in a front-end context.
	 * This means that the translations for Site Health won't be loaded by default in {@see load_default_textdomain()}.
	 *
	 * @since 5.6.0
	 */
	protected function load_admin_textdomain() {
		// Accounts for inner REST API requests in the admin.
		if ( ! is_admin() ) {
			$locale = determine_locale();
			load_textdomain( 'default', WP_LANG_DIR . "/admin-$locale.mo", $locale );
		}
	}

	/**
	 * Gets the schema for each site health test.
	 *
	 * @since 5.6.0
	 *
	 * @return array The test schema.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->schema;
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'wp-site-health-test',
			'type'       => 'object',
			'properties' => array(
				'test'        => array(
					'type'        => 'string',
					'description' => __( 'The name of the test being run.' ),
					'readonly'    => true,
				),
				'label'       => array(
					'type'        => 'string',
					'description' => __( 'A label describing the test.' ),
					'readonly'    => true,
				),
				'status'      => array(
					'type'        => 'string',
					'description' => __( 'The status of the test.' ),
					'enum'        => array( 'good', 'recommended', 'critical' ),
					'readonly'    => true,
				),
				'badge'       => array(
					'type'        => 'object',
					'description' => __( 'The category this test is grouped in.' ),
					'properties'  => array(
						'label' => array(
							'type'     => 'string',
							'readonly' => true,
						),
						'color' => array(
							'type'     => 'string',
							'enum'     => array( 'blue', 'orange', 'red', 'green', 'purple', 'gray' ),
							'readonly' => true,
						),
					),
					'readonly'    => true,
				),
				'description' => array(
					'type'        => 'string',
					'description' => __( 'A more descriptive explanation of what the test looks for, and why it is important for the user.' ),
					'readonly'    => true,
				),
				'actions'     => array(
					'type'        => 'string',
					'description' => __( 'HTML containing an action to direct the user to where they can resolve the issue.' ),
					'readonly'    => true,
				),
			),
		);

		return $this->schema;
	}
}
endpoints/class-wp-rest-block-types-controller.php000064400000064375152222510010016404 0ustar00<?php
/**
 * REST API: WP_REST_Block_Types_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.5.0
 */

/**
 * Core class used to access block types via the REST API.
 *
 * @since 5.5.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Block_Types_Controller extends WP_REST_Controller {

	const NAME_PATTERN = '^[a-z][a-z0-9-]*/[a-z][a-z0-9-]*$';

	/**
	 * Instance of WP_Block_Type_Registry.
	 *
	 * @since 5.5.0
	 * @var WP_Block_Type_Registry
	 */
	protected $block_registry;

	/**
	 * Instance of WP_Block_Styles_Registry.
	 *
	 * @since 5.5.0
	 * @var WP_Block_Styles_Registry
	 */
	protected $style_registry;

	/**
	 * Constructor.
	 *
	 * @since 5.5.0
	 */
	public function __construct() {
		$this->namespace      = 'wp/v2';
		$this->rest_base      = 'block-types';
		$this->block_registry = WP_Block_Type_Registry::get_instance();
		$this->style_registry = WP_Block_Styles_Registry::get_instance();
	}

	/**
	 * Registers the routes for block types.
	 *
	 * @since 5.5.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<namespace>[a-zA-Z0-9_-]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<namespace>[a-zA-Z0-9_-]+)/(?P<name>[a-zA-Z0-9_-]+)',
			array(
				'args'   => array(
					'name'      => array(
						'description' => __( 'Block name.' ),
						'type'        => 'string',
					),
					'namespace' => array(
						'description' => __( 'Block namespace.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read post block types.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		return $this->check_read_permission();
	}

	/**
	 * Retrieves all post block types, depending on user context.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$data        = array();
		$block_types = $this->block_registry->get_all_registered();

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();
		$namespace  = '';
		if ( isset( $registered['namespace'] ) && ! empty( $request['namespace'] ) ) {
			$namespace = $request['namespace'];
		}

		foreach ( $block_types as $obj ) {
			if ( $namespace ) {
				list ( $block_namespace ) = explode( '/', $obj->name );

				if ( $namespace !== $block_namespace ) {
					continue;
				}
			}
			$block_type = $this->prepare_item_for_response( $obj, $request );
			$data[]     = $this->prepare_response_for_collection( $block_type );
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read a block type.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$check = $this->check_read_permission();
		if ( is_wp_error( $check ) ) {
			return $check;
		}
		$block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] );
		$block_type = $this->get_block( $block_name );
		if ( is_wp_error( $block_type ) ) {
			return $block_type;
		}

		return true;
	}

	/**
	 * Checks whether a given block type should be visible.
	 *
	 * @since 5.5.0
	 *
	 * @return true|WP_Error True if the block type is visible, WP_Error otherwise.
	 */
	protected function check_read_permission() {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}
		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error( 'rest_block_type_cannot_view', __( 'Sorry, you are not allowed to manage block types.' ), array( 'status' => rest_authorization_required_code() ) );
	}

	/**
	 * Get the block, if the name is valid.
	 *
	 * @since 5.5.0
	 *
	 * @param string $name Block name.
	 * @return WP_Block_Type|WP_Error Block type object if name is valid, WP_Error otherwise.
	 */
	protected function get_block( $name ) {
		$block_type = $this->block_registry->get_registered( $name );
		if ( empty( $block_type ) ) {
			return new WP_Error( 'rest_block_type_invalid', __( 'Invalid block type.' ), array( 'status' => 404 ) );
		}

		return $block_type;
	}

	/**
	 * Retrieves a specific block type.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] );
		$block_type = $this->get_block( $block_name );
		if ( is_wp_error( $block_type ) ) {
			return $block_type;
		}
		$data = $this->prepare_item_for_response( $block_type, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Prepares a block type object for serialization.
	 *
	 * @since 5.5.0
	 * @since 5.9.0 Renamed `$block_type` to `$item` to match parent class for PHP 8 named parameter support.
	 * @since 6.3.0 Added `selectors` field.
	 * @since 6.5.0 Added `view_script_module_ids` field.
	 *
	 * @param WP_Block_Type   $item    Block type data.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Block type data.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$block_type = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php */
			return apply_filters( 'rest_prepare_block_type', new WP_REST_Response( array() ), $block_type, $request );
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'attributes', $fields ) ) {
			$data['attributes'] = $block_type->get_attributes();
		}

		if ( rest_is_field_included( 'is_dynamic', $fields ) ) {
			$data['is_dynamic'] = $block_type->is_dynamic();
		}

		$schema = $this->get_item_schema();
		// Fields deprecated in WordPress 6.1, but left in the schema for backwards compatibility.
		$deprecated_fields = array(
			'editor_script',
			'script',
			'view_script',
			'editor_style',
			'style',
		);
		$extra_fields      = array_merge(
			array(
				'api_version',
				'name',
				'title',
				'description',
				'icon',
				'category',
				'keywords',
				'parent',
				'ancestor',
				'allowed_blocks',
				'provides_context',
				'uses_context',
				'selectors',
				'supports',
				'styles',
				'textdomain',
				'example',
				'editor_script_handles',
				'script_handles',
				'view_script_handles',
				'view_script_module_ids',
				'editor_style_handles',
				'style_handles',
				'view_style_handles',
				'variations',
				'block_hooks',
			),
			$deprecated_fields
		);
		foreach ( $extra_fields as $extra_field ) {
			if ( rest_is_field_included( $extra_field, $fields ) ) {
				if ( isset( $block_type->$extra_field ) ) {
					$field = $block_type->$extra_field;
					if ( in_array( $extra_field, $deprecated_fields, true ) && is_array( $field ) ) {
						// Since the schema only allows strings or null (but no arrays), we return the first array item.
						$field = ! empty( $field ) ? array_shift( $field ) : '';
					}
				} elseif ( array_key_exists( 'default', $schema['properties'][ $extra_field ] ) ) {
					$field = $schema['properties'][ $extra_field ]['default'];
				} else {
					$field = '';
				}
				$data[ $extra_field ] = rest_sanitize_value_from_schema( $field, $schema['properties'][ $extra_field ] );
			}
		}

		if ( rest_is_field_included( 'styles', $fields ) ) {
			$styles         = $this->style_registry->get_registered_styles_for_block( $block_type->name );
			$styles         = array_values( $styles );
			$data['styles'] = wp_parse_args( $styles, $data['styles'] );
			$data['styles'] = array_filter( $data['styles'] );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $block_type ) );
		}

		/**
		 * Filters a block type returned from the REST API.
		 *
		 * Allows modification of the block type data right before it is returned.
		 *
		 * @since 5.5.0
		 *
		 * @param WP_REST_Response $response   The response object.
		 * @param WP_Block_Type    $block_type The original block type object.
		 * @param WP_REST_Request  $request    Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_block_type', $response, $block_type, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_Block_Type $block_type Block type data.
	 * @return array Links for the given block type.
	 */
	protected function prepare_links( $block_type ) {
		list( $namespace ) = explode( '/', $block_type->name );

		$links = array(
			'collection' => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'self'       => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $block_type->name ) ),
			),
			'up'         => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $namespace ) ),
			),
		);

		if ( $block_type->is_dynamic() ) {
			$links['https://api.w.org/render-block'] = array(
				'href' => add_query_arg(
					'context',
					'edit',
					rest_url( sprintf( '%s/%s/%s', 'wp/v2', 'block-renderer', $block_type->name ) )
				),
			);
		}

		return $links;
	}

	/**
	 * Retrieves the block type' schema, conforming to JSON Schema.
	 *
	 * @since 5.5.0
	 * @since 6.3.0 Added `selectors` field.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		// rest_validate_value_from_schema doesn't understand $refs, pull out reused definitions for readability.
		$inner_blocks_definition = array(
			'description' => __( 'The list of inner blocks used in the example.' ),
			'type'        => 'array',
			'items'       => array(
				'type'       => 'object',
				'properties' => array(
					'name'        => array(
						'description' => __( 'The name of the inner block.' ),
						'type'        => 'string',
						'pattern'     => self::NAME_PATTERN,
						'required'    => true,
					),
					'attributes'  => array(
						'description' => __( 'The attributes of the inner block.' ),
						'type'        => 'object',
					),
					'innerBlocks' => array(
						'description' => __( "A list of the inner block's own inner blocks. This is a recursive definition following the parent innerBlocks schema." ),
						'type'        => 'array',
					),
				),
			),
		);

		$example_definition = array(
			'description' => __( 'Block example.' ),
			'type'        => array( 'object', 'null' ),
			'default'     => null,
			'properties'  => array(
				'attributes'  => array(
					'description' => __( 'The attributes used in the example.' ),
					'type'        => 'object',
				),
				'innerBlocks' => $inner_blocks_definition,
			),
			'context'     => array( 'embed', 'view', 'edit' ),
			'readonly'    => true,
		);

		$keywords_definition = array(
			'description' => __( 'Block keywords.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
			'default'     => array(),
			'context'     => array( 'embed', 'view', 'edit' ),
			'readonly'    => true,
		);

		$icon_definition = array(
			'description' => __( 'Icon of block type.' ),
			'type'        => array( 'string', 'null' ),
			'default'     => null,
			'context'     => array( 'embed', 'view', 'edit' ),
			'readonly'    => true,
		);

		$category_definition = array(
			'description' => __( 'Block category.' ),
			'type'        => array( 'string', 'null' ),
			'default'     => null,
			'context'     => array( 'embed', 'view', 'edit' ),
			'readonly'    => true,
		);

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'block-type',
			'type'       => 'object',
			'properties' => array(
				'api_version'            => array(
					'description' => __( 'Version of block API.' ),
					'type'        => 'integer',
					'default'     => 1,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'title'                  => array(
					'description' => __( 'Title of block type.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'name'                   => array(
					'description' => __( 'Unique name identifying the block type.' ),
					'type'        => 'string',
					'pattern'     => self::NAME_PATTERN,
					'required'    => true,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'description'            => array(
					'description' => __( 'Description of block type.' ),
					'type'        => 'string',
					'default'     => '',
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'icon'                   => $icon_definition,
				'attributes'             => array(
					'description'          => __( 'Block attributes.' ),
					'type'                 => array( 'object', 'null' ),
					'properties'           => array(),
					'default'              => null,
					'additionalProperties' => array(
						'type' => 'object',
					),
					'context'              => array( 'embed', 'view', 'edit' ),
					'readonly'             => true,
				),
				'provides_context'       => array(
					'description'          => __( 'Context provided by blocks of this type.' ),
					'type'                 => 'object',
					'properties'           => array(),
					'additionalProperties' => array(
						'type' => 'string',
					),
					'default'              => array(),
					'context'              => array( 'embed', 'view', 'edit' ),
					'readonly'             => true,
				),
				'uses_context'           => array(
					'description' => __( 'Context values inherited by blocks of this type.' ),
					'type'        => 'array',
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'selectors'              => array(
					'description' => __( 'Custom CSS selectors.' ),
					'type'        => 'object',
					'default'     => array(),
					'properties'  => array(),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'supports'               => array(
					'description' => __( 'Block supports.' ),
					'type'        => 'object',
					'default'     => array(),
					'properties'  => array(),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'category'               => $category_definition,
				'is_dynamic'             => array(
					'description' => __( 'Is the block dynamically rendered.' ),
					'type'        => 'boolean',
					'default'     => false,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'editor_script_handles'  => array(
					'description' => __( 'Editor script handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'script_handles'         => array(
					'description' => __( 'Public facing and editor script handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'view_script_handles'    => array(
					'description' => __( 'Public facing script handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'view_script_module_ids' => array(
					'description' => __( 'Public facing script module IDs.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'editor_style_handles'   => array(
					'description' => __( 'Editor style handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'style_handles'          => array(
					'description' => __( 'Public facing and editor style handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'view_style_handles'     => array(
					'description' => __( 'Public facing style handles.' ),
					'type'        => array( 'array' ),
					'default'     => array(),
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'styles'                 => array(
					'description' => __( 'Block style variations.' ),
					'type'        => 'array',
					'items'       => array(
						'type'       => 'object',
						'properties' => array(
							'name'         => array(
								'description' => __( 'Unique name identifying the style.' ),
								'type'        => 'string',
								'required'    => true,
							),
							'label'        => array(
								'description' => __( 'The human-readable label for the style.' ),
								'type'        => 'string',
							),
							'inline_style' => array(
								'description' => __( 'Inline CSS code that registers the CSS class required for the style.' ),
								'type'        => 'string',
							),
							'style_handle' => array(
								'description' => __( 'Contains the handle that defines the block style.' ),
								'type'        => 'string',
							),
						),
					),
					'default'     => array(),
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'variations'             => array(
					'description' => __( 'Block variations.' ),
					'type'        => 'array',
					'items'       => array(
						'type'       => 'object',
						'properties' => array(
							'name'        => array(
								'description' => __( 'The unique and machine-readable name.' ),
								'type'        => 'string',
								'required'    => true,
							),
							'title'       => array(
								'description' => __( 'A human-readable variation title.' ),
								'type'        => 'string',
								'required'    => true,
							),
							'description' => array(
								'description' => __( 'A detailed variation description.' ),
								'type'        => 'string',
								'required'    => false,
							),
							'category'    => $category_definition,
							'icon'        => $icon_definition,
							'isDefault'   => array(
								'description' => __( 'Indicates whether the current variation is the default one.' ),
								'type'        => 'boolean',
								'required'    => false,
								'default'     => false,
							),
							'attributes'  => array(
								'description' => __( 'The initial values for attributes.' ),
								'type'        => 'object',
							),
							'innerBlocks' => $inner_blocks_definition,
							'example'     => $example_definition,
							'scope'       => array(
								'description' => __( 'The list of scopes where the variation is applicable. When not provided, it assumes all available scopes.' ),
								'type'        => array( 'array', 'null' ),
								'default'     => null,
								'items'       => array(
									'type' => 'string',
									'enum' => array( 'block', 'inserter', 'transform' ),
								),
								'readonly'    => true,
							),
							'keywords'    => $keywords_definition,
						),
					),
					'readonly'    => true,
					'context'     => array( 'embed', 'view', 'edit' ),
					'default'     => null,
				),
				'textdomain'             => array(
					'description' => __( 'Public text domain.' ),
					'type'        => array( 'string', 'null' ),
					'default'     => null,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'parent'                 => array(
					'description' => __( 'Parent blocks.' ),
					'type'        => array( 'array', 'null' ),
					'items'       => array(
						'type'    => 'string',
						'pattern' => self::NAME_PATTERN,
					),
					'default'     => null,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'ancestor'               => array(
					'description' => __( 'Ancestor blocks.' ),
					'type'        => array( 'array', 'null' ),
					'items'       => array(
						'type'    => 'string',
						'pattern' => self::NAME_PATTERN,
					),
					'default'     => null,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'allowed_blocks'         => array(
					'description' => __( 'Allowed child block types.' ),
					'type'        => array( 'array', 'null' ),
					'items'       => array(
						'type'    => 'string',
						'pattern' => self::NAME_PATTERN,
					),
					'default'     => null,
					'context'     => array( 'embed', 'view', 'edit' ),
					'readonly'    => true,
				),
				'keywords'               => $keywords_definition,
				'example'                => $example_definition,
				'block_hooks'            => array(
					'description'       => __( 'This block is automatically inserted near any occurrence of the block types used as keys of this map, into a relative position given by the corresponding value.' ),
					'type'              => 'object',
					'patternProperties' => array(
						self::NAME_PATTERN => array(
							'type' => 'string',
							'enum' => array( 'before', 'after', 'first_child', 'last_child' ),
						),
					),
					'default'           => array(),
					'context'           => array( 'embed', 'view', 'edit' ),
					'readonly'          => true,
				),
			),
		);

		// Properties deprecated in WordPress 6.1, but left in the schema for backwards compatibility.
		$deprecated_properties      = array(
			'editor_script' => array(
				'description' => __( 'Editor script handle. DEPRECATED: Use `editor_script_handles` instead.' ),
				'type'        => array( 'string', 'null' ),
				'default'     => null,
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
			'script'        => array(
				'description' => __( 'Public facing and editor script handle. DEPRECATED: Use `script_handles` instead.' ),
				'type'        => array( 'string', 'null' ),
				'default'     => null,
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
			'view_script'   => array(
				'description' => __( 'Public facing script handle. DEPRECATED: Use `view_script_handles` instead.' ),
				'type'        => array( 'string', 'null' ),
				'default'     => null,
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
			'editor_style'  => array(
				'description' => __( 'Editor style handle. DEPRECATED: Use `editor_style_handles` instead.' ),
				'type'        => array( 'string', 'null' ),
				'default'     => null,
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
			'style'         => array(
				'description' => __( 'Public facing and editor style handle. DEPRECATED: Use `style_handles` instead.' ),
				'type'        => array( 'string', 'null' ),
				'default'     => null,
				'context'     => array( 'embed', 'view', 'edit' ),
				'readonly'    => true,
			),
		);
		$this->schema['properties'] = array_merge( $this->schema['properties'], $deprecated_properties );

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 5.5.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context'   => $this->get_context_param( array( 'default' => 'view' ) ),
			'namespace' => array(
				'description' => __( 'Block namespace.' ),
				'type'        => 'string',
			),
		);
	}
}
endpoints/class-wp-rest-template-revisions-controller.php000064400000021024152222510010017762 0ustar00<?php
/**
 * REST API: WP_REST_Template_Revisions_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 6.4.0
 */

/**
 * Core class used to access template revisions via the REST API.
 *
 * @since 6.4.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Template_Revisions_Controller extends WP_REST_Revisions_Controller {
	/**
	 * Parent post type.
	 *
	 * @since 6.4.0
	 * @var string
	 */
	private $parent_post_type;

	/**
	 * Parent controller.
	 *
	 * @since 6.4.0
	 * @var WP_REST_Controller
	 */
	private $parent_controller;

	/**
	 * The base of the parent controller's route.
	 *
	 * @since 6.4.0
	 * @var string
	 */
	private $parent_base;

	/**
	 * Constructor.
	 *
	 * @since 6.4.0
	 *
	 * @param string $parent_post_type Post type of the parent.
	 */
	public function __construct( $parent_post_type ) {
		parent::__construct( $parent_post_type );
		$this->parent_post_type = $parent_post_type;
		$post_type_object       = get_post_type_object( $parent_post_type );
		$parent_controller      = $post_type_object->get_rest_controller();

		if ( ! $parent_controller ) {
			$parent_controller = new WP_REST_Templates_Controller( $parent_post_type );
		}

		$this->parent_controller = $parent_controller;
		$this->rest_base         = 'revisions';
		$this->parent_base       = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
		$this->namespace         = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2';
	}

	/**
	 * Registers the routes for revisions based on post types supporting revisions.
	 *
	 * @since 6.4.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/(?P<parent>%s%s)/%s',
				$this->parent_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
				// Matches the template name.
				'[\/\w%-]+',
				$this->rest_base
			),
			array(
				'args'   => array(
					'parent' => array(
						'description'       => __( 'The id of a template' ),
						'type'              => 'string',
						'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			sprintf(
				'/%s/(?P<parent>%s%s)/%s/%s',
				$this->parent_base,
				/*
				 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
				 * Excludes invalid directory name characters: `/:<>*?"|`.
				 */
				'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
				// Matches the template name.
				'[\/\w%-]+',
				$this->rest_base,
				'(?P<id>[\d]+)'
			),
			array(
				'args'   => array(
					'parent' => array(
						'description'       => __( 'The id of a template' ),
						'type'              => 'string',
						'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
					),
					'id'     => array(
						'description' => __( 'Unique identifier for the revision.' ),
						'type'        => 'integer',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'type'        => 'boolean',
							'default'     => false,
							'description' => __( 'Required to be true, as revisions do not support trashing.' ),
						),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Gets the parent post, if the template ID is valid.
	 *
	 * @since 6.4.0
	 *
	 * @param string $parent_template_id Supplied ID.
	 * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise.
	 */
	protected function get_parent( $parent_template_id ) {
		$template = get_block_template( $parent_template_id, $this->parent_post_type );

		if ( ! $template ) {
			return new WP_Error(
				'rest_post_invalid_parent',
				__( 'Invalid template parent ID.' ),
				array( 'status' => WP_Http::NOT_FOUND )
			);
		}

		$parent_post_id = isset( $template->wp_id ) ? (int) $template->wp_id : 0;

		if ( $parent_post_id <= 0 ) {
			return new WP_Error(
				'rest_invalid_template',
				__( 'Templates based on theme files can\'t have revisions.' ),
				array( 'status' => WP_Http::BAD_REQUEST )
			);
		}

		return get_post( $template->wp_id );
	}

	/**
	 * Prepares the item for the REST response.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_Post         $item    Post revision object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		$template = _build_block_template_result_from_post( $item );
		$response = $this->parent_controller->prepare_item_for_response( $template, $request );

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			return $response;
		}

		$fields = $this->get_fields_for_response( $request );
		$data   = $response->get_data();

		if ( in_array( 'parent', $fields, true ) ) {
			$data['parent'] = (int) $item->post_parent;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = new WP_REST_Response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = $this->prepare_links( $template );
			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Checks if a given request has access to delete a revision.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has access to delete the item, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		$parent = $this->get_parent( $request['parent'] );
		if ( is_wp_error( $parent ) ) {
			return $parent;
		}

		if ( ! current_user_can( 'delete_post', $parent->ID ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete revisions of this post.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$revision = $this->get_revision( $request['id'] );
		if ( is_wp_error( $revision ) ) {
			return $revision;
		}

		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				__( 'Sorry, you are not allowed to delete this revision.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.4.0
	 *
	 * @param WP_Block_Template $template Template.
	 * @return array Links for the given post.
	 */
	protected function prepare_links( $template ) {
		$links = array(
			'self'   => array(
				'href' => rest_url( sprintf( '/%s/%s/%s/%s/%d', $this->namespace, $this->parent_base, $template->id, $this->rest_base, $template->wp_id ) ),
			),
			'parent' => array(
				'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->parent_base, $template->id ) ),
			),
		);

		return $links;
	}

	/**
	 * Retrieves the item's schema, conforming to JSON Schema.
	 *
	 * @since 6.4.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = $this->parent_controller->get_item_schema();

		$schema['properties']['parent'] = array(
			'description' => __( 'The ID for the parent of the revision.' ),
			'type'        => 'integer',
			'context'     => array( 'view', 'edit', 'embed' ),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-url-details-controller.php000064400000050111152222510010016354 0ustar00<?php
/**
 * REST API: WP_REST_URL_Details_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.9.0
 */

/**
 * Controller which provides REST endpoint for retrieving information
 * from a remote site's HTML response.
 *
 * @since 5.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_URL_Details_Controller extends WP_REST_Controller {

	/**
	 * Constructs the controller.
	 *
	 * @since 5.9.0
	 */
	public function __construct() {
		$this->namespace = 'wp-block-editor/v1';
		$this->rest_base = 'url-details';
	}

	/**
	 * Registers the necessary REST API routes.
	 *
	 * @since 5.9.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'parse_url_details' ),
					'args'                => array(
						'url' => array(
							'required'          => true,
							'description'       => __( 'The URL to process.' ),
							'validate_callback' => 'wp_http_validate_url',
							'sanitize_callback' => 'sanitize_url',
							'type'              => 'string',
							'format'            => 'uri',
						),
					),
					'permission_callback' => array( $this, 'permissions_check' ),
					'schema'              => array( $this, 'get_public_item_schema' ),
				),
			)
		);
	}

	/**
	 * Retrieves the item's schema, conforming to JSON Schema.
	 *
	 * @since 5.9.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'url-details',
			'type'       => 'object',
			'properties' => array(
				'title'       => array(
					'description' => sprintf(
						/* translators: %s: HTML title tag. */
						__( 'The contents of the %s element from the URL.' ),
						'<title>'
					),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'icon'        => array(
					'description' => sprintf(
						/* translators: %s: HTML link tag. */
						__( 'The favicon image link of the %s element from the URL.' ),
						'<link rel="icon">'
					),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'description' => array(
					'description' => sprintf(
						/* translators: %s: HTML meta tag. */
						__( 'The content of the %s element from the URL.' ),
						'<meta name="description">'
					),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'image'       => array(
					'description' => sprintf(
						/* translators: 1: HTML meta tag, 2: HTML meta tag. */
						__( 'The Open Graph image link of the %1$s or %2$s element from the URL.' ),
						'<meta property="og:image">',
						'<meta property="og:image:url">'
					),
					'type'        => 'string',
					'format'      => 'uri',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the contents of the title tag from the HTML response.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error The parsed details as a response object. WP_Error if there are errors.
	 */
	public function parse_url_details( $request ) {
		$url = untrailingslashit( $request['url'] );

		if ( empty( $url ) ) {
			return new WP_Error( 'rest_invalid_url', __( 'Invalid URL' ), array( 'status' => 404 ) );
		}

		// Transient per URL.
		$cache_key = $this->build_cache_key_for_url( $url );

		// Attempt to retrieve cached response.
		$cached_response = $this->get_cache( $cache_key );

		if ( ! empty( $cached_response ) ) {
			$remote_url_response = $cached_response;
		} else {
			$remote_url_response = $this->get_remote_url( $url );

			// Exit if we don't have a valid body or it's empty.
			if ( is_wp_error( $remote_url_response ) || empty( $remote_url_response ) ) {
				return $remote_url_response;
			}

			// Cache the valid response.
			$this->set_cache( $cache_key, $remote_url_response );
		}

		$html_head     = $this->get_document_head( $remote_url_response );
		$meta_elements = $this->get_meta_with_content_elements( $html_head );

		$data = $this->add_additional_fields_to_object(
			array(
				'title'       => $this->get_title( $html_head ),
				'icon'        => $this->get_icon( $html_head, $url ),
				'description' => $this->get_description( $meta_elements ),
				'image'       => $this->get_image( $meta_elements, $url ),
			),
			$request
		);

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		/**
		 * Filters the URL data for the response.
		 *
		 * @since 5.9.0
		 *
		 * @param WP_REST_Response $response            The response object.
		 * @param string           $url                 The requested URL.
		 * @param WP_REST_Request  $request             Request object.
		 * @param string           $remote_url_response HTTP response body from the remote URL.
		 */
		return apply_filters( 'rest_prepare_url_details', $response, $url, $request, $remote_url_response );
	}

	/**
	 * Checks whether a given request has permission to read remote URLs.
	 *
	 * @since 5.9.0
	 *
	 * @return true|WP_Error True if the request has permission, else WP_Error.
	 */
	public function permissions_check() {
		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view_url_details',
			__( 'Sorry, you are not allowed to process remote URLs.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Retrieves the document title from a remote URL.
	 *
	 * @since 5.9.0
	 *
	 * @param string $url The website URL whose HTML to access.
	 * @return string|WP_Error The HTTP response from the remote URL on success.
	 *                         WP_Error if no response or no content.
	 */
	private function get_remote_url( $url ) {

		/*
		 * Provide a modified UA string to workaround web properties which block WordPress "Pingbacks".
		 * Why? The UA string used for pingback requests contains `WordPress/` which is very similar
		 * to that used as the default UA string by the WP HTTP API. Therefore requests from this
		 * REST endpoint are being unintentionally blocked as they are misidentified as pingback requests.
		 * By slightly modifying the UA string, but still retaining the "WordPress" identification (via "WP")
		 * we are able to work around this issue.
		 * Example UA string: `WP-URLDetails/5.9-alpha-51389 (+http://localhost:8888)`.
		*/
		$modified_user_agent = 'WP-URLDetails/' . get_bloginfo( 'version' ) . ' (+' . get_bloginfo( 'url' ) . ')';

		$args = array(
			'limit_response_size' => 150 * KB_IN_BYTES,
			'user-agent'          => $modified_user_agent,
		);

		/**
		 * Filters the HTTP request args for URL data retrieval.
		 *
		 * Can be used to adjust response size limit and other WP_Http::request() args.
		 *
		 * @since 5.9.0
		 *
		 * @param array  $args Arguments used for the HTTP request.
		 * @param string $url  The attempted URL.
		 */
		$args = apply_filters( 'rest_url_details_http_request_args', $args, $url );

		$response = wp_safe_remote_get( $url, $args );

		if ( WP_Http::OK !== wp_remote_retrieve_response_code( $response ) ) {
			// Not saving the error response to cache since the error might be temporary.
			return new WP_Error(
				'no_response',
				__( 'URL not found. Response returned a non-200 status code for this URL.' ),
				array( 'status' => WP_Http::NOT_FOUND )
			);
		}

		$remote_body = wp_remote_retrieve_body( $response );

		if ( empty( $remote_body ) ) {
			return new WP_Error(
				'no_content',
				__( 'Unable to retrieve body from response at this URL.' ),
				array( 'status' => WP_Http::NOT_FOUND )
			);
		}

		return $remote_body;
	}

	/**
	 * Parses the title tag contents from the provided HTML.
	 *
	 * @since 5.9.0
	 *
	 * @param string $html The HTML from the remote website at URL.
	 * @return string The title tag contents on success. Empty string if not found.
	 */
	private function get_title( $html ) {
		$pattern = '#<title[^>]*>(.*?)<\s*/\s*title>#is';
		preg_match( $pattern, $html, $match_title );

		if ( empty( $match_title[1] ) || ! is_string( $match_title[1] ) ) {
			return '';
		}

		$title = trim( $match_title[1] );

		return $this->prepare_metadata_for_output( $title );
	}

	/**
	 * Parses the site icon from the provided HTML.
	 *
	 * @since 5.9.0
	 *
	 * @param string $html The HTML from the remote website at URL.
	 * @param string $url  The target website URL.
	 * @return string The icon URI on success. Empty string if not found.
	 */
	private function get_icon( $html, $url ) {
		// Grab the icon's link element.
		$pattern = '#<link\s[^>]*rel=(?:[\"\']??)\s*(?:icon|shortcut icon|icon shortcut)\s*(?:[\"\']??)[^>]*\/?>#isU';
		preg_match( $pattern, $html, $element );
		if ( empty( $element[0] ) || ! is_string( $element[0] ) ) {
			return '';
		}
		$element = trim( $element[0] );

		// Get the icon's href value.
		$pattern = '#href=([\"\']??)([^\" >]*?)\\1[^>]*#isU';
		preg_match( $pattern, $element, $icon );
		if ( empty( $icon[2] ) || ! is_string( $icon[2] ) ) {
			return '';
		}
		$icon = trim( $icon[2] );

		// If the icon is a data URL, return it.
		$parsed_icon = parse_url( $icon );
		if ( isset( $parsed_icon['scheme'] ) && 'data' === $parsed_icon['scheme'] ) {
			return $icon;
		}

		// Attempt to convert relative URLs to absolute.
		if ( ! is_string( $url ) || '' === $url ) {
			return $icon;
		}
		$parsed_url = parse_url( $url );
		if ( isset( $parsed_url['scheme'] ) && isset( $parsed_url['host'] ) ) {
			$root_url = $parsed_url['scheme'] . '://' . $parsed_url['host'] . '/';
			$icon     = WP_Http::make_absolute_url( $icon, $root_url );
		}

		return $icon;
	}

	/**
	 * Parses the meta description from the provided HTML.
	 *
	 * @since 5.9.0
	 *
	 * @param array $meta_elements {
	 *     A multidimensional indexed array on success, else empty array.
	 *
	 *     @type string[] $0 Meta elements with a content attribute.
	 *     @type string[] $1 Content attribute's opening quotation mark.
	 *     @type string[] $2 Content attribute's value for each meta element.
	 * }
	 * @return string The meta description contents on success. Empty string if not found.
	 */
	private function get_description( $meta_elements ) {
		// Bail out if there are no meta elements.
		if ( empty( $meta_elements[0] ) ) {
			return '';
		}

		$description = $this->get_metadata_from_meta_element(
			$meta_elements,
			'name',
			'(?:description|og:description)'
		);

		// Bail out if description not found.
		if ( '' === $description ) {
			return '';
		}

		return $this->prepare_metadata_for_output( $description );
	}

	/**
	 * Parses the Open Graph (OG) Image from the provided HTML.
	 *
	 * See: https://ogp.me/.
	 *
	 * @since 5.9.0
	 *
	 * @param array  $meta_elements {
	 *     A multidimensional indexed array on success, else empty array.
	 *
	 *     @type string[] $0 Meta elements with a content attribute.
	 *     @type string[] $1 Content attribute's opening quotation mark.
	 *     @type string[] $2 Content attribute's value for each meta element.
	 * }
	 * @param string $url The target website URL.
	 * @return string The OG image on success. Empty string if not found.
	 */
	private function get_image( $meta_elements, $url ) {
		$image = $this->get_metadata_from_meta_element(
			$meta_elements,
			'property',
			'(?:og:image|og:image:url)'
		);

		// Bail out if image not found.
		if ( '' === $image ) {
			return '';
		}

		// Attempt to convert relative URLs to absolute.
		$parsed_url = parse_url( $url );
		if ( isset( $parsed_url['scheme'] ) && isset( $parsed_url['host'] ) ) {
			$root_url = $parsed_url['scheme'] . '://' . $parsed_url['host'] . '/';
			$image    = WP_Http::make_absolute_url( $image, $root_url );
		}

		return $image;
	}

	/**
	 * Prepares the metadata by:
	 *    - stripping all HTML tags and tag entities.
	 *    - converting non-tag entities into characters.
	 *
	 * @since 5.9.0
	 *
	 * @param string $metadata The metadata content to prepare.
	 * @return string The prepared metadata.
	 */
	private function prepare_metadata_for_output( $metadata ) {
		$metadata = html_entity_decode( $metadata, ENT_QUOTES, get_bloginfo( 'charset' ) );
		$metadata = wp_strip_all_tags( $metadata );
		return $metadata;
	}

	/**
	 * Utility function to build cache key for a given URL.
	 *
	 * @since 5.9.0
	 *
	 * @param string $url The URL for which to build a cache key.
	 * @return string The cache key.
	 */
	private function build_cache_key_for_url( $url ) {
		return 'g_url_details_response_' . md5( $url );
	}

	/**
	 * Utility function to retrieve a value from the cache at a given key.
	 *
	 * @since 5.9.0
	 *
	 * @param string $key The cache key.
	 * @return mixed The value from the cache.
	 */
	private function get_cache( $key ) {
		return get_site_transient( $key );
	}

	/**
	 * Utility function to cache a given data set at a given cache key.
	 *
	 * @since 5.9.0
	 *
	 * @param string $key  The cache key under which to store the value.
	 * @param string $data The data to be stored at the given cache key.
	 * @return bool True when transient set. False if not set.
	 */
	private function set_cache( $key, $data = '' ) {
		$ttl = HOUR_IN_SECONDS;

		/**
		 * Filters the cache expiration.
		 *
		 * Can be used to adjust the time until expiration in seconds for the cache
		 * of the data retrieved for the given URL.
		 *
		 * @since 5.9.0
		 *
		 * @param int $ttl The time until cache expiration in seconds.
		 */
		$cache_expiration = apply_filters( 'rest_url_details_cache_expiration', $ttl );

		return set_site_transient( $key, $data, $cache_expiration );
	}

	/**
	 * Retrieves the head element section.
	 *
	 * @since 5.9.0
	 *
	 * @param string $html The string of HTML to parse.
	 * @return string The `<head>..</head>` section on success. Given `$html` if not found.
	 */
	private function get_document_head( $html ) {
		$head_html = $html;

		// Find the opening `<head>` tag.
		$head_start = strpos( $html, '<head' );
		if ( false === $head_start ) {
			// Didn't find it. Return the original HTML.
			return $html;
		}

		// Find the closing `</head>` tag.
		$head_end = strpos( $head_html, '</head>' );
		if ( false === $head_end ) {
			// Didn't find it. Find the opening `<body>` tag.
			$head_end = strpos( $head_html, '<body' );

			// Didn't find it. Return the original HTML.
			if ( false === $head_end ) {
				return $html;
			}
		}

		// Extract the HTML from opening tag to the closing tag. Then add the closing tag.
		$head_html  = substr( $head_html, $head_start, $head_end );
		$head_html .= '</head>';

		return $head_html;
	}

	/**
	 * Gets all the meta tag elements that have a 'content' attribute.
	 *
	 * @since 5.9.0
	 *
	 * @param string $html The string of HTML to be parsed.
	 * @return array {
	 *     A multidimensional indexed array on success, else empty array.
	 *
	 *     @type string[] $0 Meta elements with a content attribute.
	 *     @type string[] $1 Content attribute's opening quotation mark.
	 *     @type string[] $2 Content attribute's value for each meta element.
	 * }
	 */
	private function get_meta_with_content_elements( $html ) {
		/*
		 * Parse all meta elements with a content attribute.
		 *
		 * Why first search for the content attribute rather than directly searching for name=description element?
		 * tl;dr The content attribute's value will be truncated when it contains a > symbol.
		 *
		 * The content attribute's value (i.e. the description to get) can have HTML in it and be well-formed as
		 * it's a string to the browser. Imagine what happens when attempting to match for the name=description
		 * first. Hmm, if a > or /> symbol is in the content attribute's value, then it terminates the match
		 * as the element's closing symbol. But wait, it's in the content attribute and is not the end of the
		 * element. This is a limitation of using regex. It can't determine "wait a minute this is inside of quotation".
		 * If this happens, what gets matched is not the entire element or all of the content.
		 *
		 * Why not search for the name=description and then content="(.*)"?
		 * The attribute order could be opposite. Plus, additional attributes may exist including being between
		 * the name and content attributes.
		 *
		 * Why not lookahead?
		 * Lookahead is not constrained to stay within the element. The first <meta it finds may not include
		 * the name or content, but rather could be from a different element downstream.
		 */
		$pattern = '#<meta\s' .

				/*
				 * Allows for additional attributes before the content attribute.
				 * Searches for anything other than > symbol.
				 */
				'[^>]*' .

				/*
				* Find the content attribute. When found, capture its value (.*).
				*
				* Allows for (a) single or double quotes and (b) whitespace in the value.
				*
				* Why capture the opening quotation mark, i.e. (["\']), and then backreference,
				* i.e \1, for the closing quotation mark?
				* To ensure the closing quotation mark matches the opening one. Why? Attribute values
				* can contain quotation marks, such as an apostrophe in the content.
				*/
				'content=(["\']??)(.*)\1' .

				/*
				* Allows for additional attributes after the content attribute.
				* Searches for anything other than > symbol.
				*/
				'[^>]*' .

				/*
				* \/?> searches for the closing > symbol, which can be in either /> or > format.
				* # ends the pattern.
				*/
				'\/?>#' .

				/*
				* These are the options:
				* - i : case-insensitive
				* - s : allows newline characters for the . match (needed for multiline elements)
				* - U means non-greedy matching
				*/
				'isU';

		preg_match_all( $pattern, $html, $elements );

		return $elements;
	}

	/**
	 * Gets the metadata from a target meta element.
	 *
	 * @since 5.9.0
	 *
	 * @param array  $meta_elements {
	 *     A multi-dimensional indexed array on success, else empty array.
	 *
	 *     @type string[] $0 Meta elements with a content attribute.
	 *     @type string[] $1 Content attribute's opening quotation mark.
	 *     @type string[] $2 Content attribute's value for each meta element.
	 * }
	 * @param string $attr       Attribute that identifies the element with the target metadata.
	 * @param string $attr_value The attribute's value that identifies the element with the target metadata.
	 * @return string The metadata on success. Empty string if not found.
	 */
	private function get_metadata_from_meta_element( $meta_elements, $attr, $attr_value ) {
		// Bail out if there are no meta elements.
		if ( empty( $meta_elements[0] ) ) {
			return '';
		}

		$metadata = '';
		$pattern  = '#' .
				/*
				 * Target this attribute and value to find the metadata element.
				 *
				 * Allows for (a) no, single, double quotes and (b) whitespace in the value.
				 *
				 * Why capture the opening quotation mark, i.e. (["\']), and then backreference,
				 * i.e \1, for the closing quotation mark?
				 * To ensure the closing quotation mark matches the opening one. Why? Attribute values
				 * can contain quotation marks, such as an apostrophe in the content.
				 */
				$attr . '=([\"\']??)\s*' . $attr_value . '\s*\1' .

				/*
				 * These are the options:
				 * - i : case-insensitive
				 * - s : allows newline characters for the . match (needed for multiline elements)
				 * - U means non-greedy matching
				 */
				'#isU';

		// Find the metadata element.
		foreach ( $meta_elements[0] as $index => $element ) {
			preg_match( $pattern, $element, $match );

			// This is not the metadata element. Skip it.
			if ( empty( $match ) ) {
				continue;
			}

			/*
			 * Found the metadata element.
			 * Get the metadata from its matching content array.
			 */
			if ( isset( $meta_elements[2][ $index ] ) && is_string( $meta_elements[2][ $index ] ) ) {
				$metadata = trim( $meta_elements[2][ $index ] );
			}

			break;
		}

		return $metadata;
	}
}
endpoints/class-wp-rest-post-types-controller.php000064400000033713152222510010016267 0ustar00<?php
/**
 * REST API: WP_REST_Post_Types_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class to access post types via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Post_Types_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'types';
	}

	/**
	 * Registers the routes for post types.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<type>[\w-]+)',
			array(
				'args'   => array(
					'type' => array(
						'description' => __( 'An alphanumeric identifier for the post type.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => '__return_true',
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read types.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( 'edit' === $request['context'] ) {
			$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );

			foreach ( $types as $type ) {
				if ( current_user_can( $type->cap->edit_posts ) ) {
					return true;
				}
			}

			return new WP_Error(
				'rest_cannot_view',
				__( 'Sorry, you are not allowed to edit posts in this post type.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves all public post types.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$data  = array();
		$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );

		foreach ( $types as $type ) {
			if ( 'edit' === $request['context'] && ! current_user_can( $type->cap->edit_posts ) ) {
				continue;
			}

			$post_type           = $this->prepare_item_for_response( $type, $request );
			$data[ $type->name ] = $this->prepare_response_for_collection( $post_type );
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Retrieves a specific post type.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$obj = get_post_type_object( $request['type'] );

		if ( empty( $obj ) ) {
			return new WP_Error(
				'rest_type_invalid',
				__( 'Invalid post type.' ),
				array( 'status' => 404 )
			);
		}

		if ( empty( $obj->show_in_rest ) ) {
			return new WP_Error(
				'rest_cannot_read_type',
				__( 'Cannot view post type.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		if ( 'edit' === $request['context'] && ! current_user_can( $obj->cap->edit_posts ) ) {
			return new WP_Error(
				'rest_forbidden_context',
				__( 'Sorry, you are not allowed to edit posts in this post type.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		$data = $this->prepare_item_for_response( $obj, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Prepares a post type object for serialization.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$post_type` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_Post_Type    $item    Post type object.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$post_type = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php */
			return apply_filters( 'rest_prepare_post_type', new WP_REST_Response( array() ), $post_type, $request );
		}

		$taxonomies = wp_list_filter( get_object_taxonomies( $post_type->name, 'objects' ), array( 'show_in_rest' => true ) );
		$taxonomies = wp_list_pluck( $taxonomies, 'name' );
		$base       = ! empty( $post_type->rest_base ) ? $post_type->rest_base : $post_type->name;
		$namespace  = ! empty( $post_type->rest_namespace ) ? $post_type->rest_namespace : 'wp/v2';
		$supports   = get_all_post_type_supports( $post_type->name );

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( rest_is_field_included( 'capabilities', $fields ) ) {
			$data['capabilities'] = $post_type->cap;
		}

		if ( rest_is_field_included( 'description', $fields ) ) {
			$data['description'] = $post_type->description;
		}

		if ( rest_is_field_included( 'hierarchical', $fields ) ) {
			$data['hierarchical'] = $post_type->hierarchical;
		}

		if ( rest_is_field_included( 'has_archive', $fields ) ) {
			$data['has_archive'] = $post_type->has_archive;
		}

		if ( rest_is_field_included( 'visibility', $fields ) ) {
			$data['visibility'] = array(
				'show_in_nav_menus' => (bool) $post_type->show_in_nav_menus,
				'show_ui'           => (bool) $post_type->show_ui,
			);
		}

		if ( rest_is_field_included( 'viewable', $fields ) ) {
			$data['viewable'] = is_post_type_viewable( $post_type );
		}

		if ( rest_is_field_included( 'labels', $fields ) ) {
			$data['labels'] = $post_type->labels;
		}

		if ( rest_is_field_included( 'name', $fields ) ) {
			$data['name'] = $post_type->label;
		}

		if ( rest_is_field_included( 'slug', $fields ) ) {
			$data['slug'] = $post_type->name;
		}

		if ( rest_is_field_included( 'icon', $fields ) ) {
			$data['icon'] = $post_type->menu_icon;
		}

		if ( rest_is_field_included( 'supports', $fields ) ) {
			$data['supports'] = $supports;
		}

		if ( rest_is_field_included( 'taxonomies', $fields ) ) {
			$data['taxonomies'] = array_values( $taxonomies );
		}

		if ( rest_is_field_included( 'rest_base', $fields ) ) {
			$data['rest_base'] = $base;
		}

		if ( rest_is_field_included( 'rest_namespace', $fields ) ) {
			$data['rest_namespace'] = $namespace;
		}

		if ( rest_is_field_included( 'template', $fields ) ) {
			$data['template'] = $post_type->template ?? array();
		}

		if ( rest_is_field_included( 'template_lock', $fields ) ) {
			$data['template_lock'] = ! empty( $post_type->template_lock ) ? $post_type->template_lock : false;
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $post_type ) );
		}

		/**
		 * Filters a post type returned from the REST API.
		 *
		 * Allows modification of the post type data right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response  The response object.
		 * @param WP_Post_Type     $post_type The original post type object.
		 * @param WP_REST_Request  $request   Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_post_type', $response, $post_type, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.1.0
	 *
	 * @param WP_Post_Type $post_type The post type.
	 * @return array Links for the given post type.
	 */
	protected function prepare_links( $post_type ) {
		return array(
			'collection'              => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'https://api.w.org/items' => array(
				'href' => rest_url( rest_get_route_for_post_type_items( $post_type->name ) ),
			),
		);
	}

	/**
	 * Retrieves the post type's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 * @since 4.8.0 The `supports` property was added.
	 * @since 5.9.0 The `visibility` and `rest_namespace` properties were added.
	 * @since 6.1.0 The `icon` property was added.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'type',
			'type'       => 'object',
			'properties' => array(
				'capabilities'   => array(
					'description' => __( 'All capabilities used by the post type.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'description'    => array(
					'description' => __( 'A human-readable description of the post type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'hierarchical'   => array(
					'description' => __( 'Whether or not the post type should have children.' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'viewable'       => array(
					'description' => __( 'Whether or not the post type can be viewed.' ),
					'type'        => 'boolean',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'labels'         => array(
					'description' => __( 'Human-readable labels for the post type for various contexts.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'name'           => array(
					'description' => __( 'The title for the post type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'slug'           => array(
					'description' => __( 'An alphanumeric identifier for the post type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'supports'       => array(
					'description' => __( 'All features, supported by the post type.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'has_archive'    => array(
					'description' => __( 'If the value is a string, the value will be used as the archive slug. If the value is false the post type has no archive.' ),
					'type'        => array( 'string', 'boolean' ),
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'taxonomies'     => array(
					'description' => __( 'Taxonomies associated with post type.' ),
					'type'        => 'array',
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'rest_base'      => array(
					'description' => __( 'REST base route for the post type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'rest_namespace' => array(
					'description' => __( 'REST route\'s namespace for the post type.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'visibility'     => array(
					'description' => __( 'The visibility settings for the post type.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
					'properties'  => array(
						'show_ui'           => array(
							'description' => __( 'Whether to generate a default UI for managing this post type.' ),
							'type'        => 'boolean',
						),
						'show_in_nav_menus' => array(
							'description' => __( 'Whether to make the post type available for selection in navigation menus.' ),
							'type'        => 'boolean',
						),
					),
				),
				'icon'           => array(
					'description' => __( 'The icon for the post type.' ),
					'type'        => array( 'string', 'null' ),
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'template'       => array(
					'type'        => array( 'array' ),
					'description' => __( 'The block template associated with the post type.' ),
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'template_lock'  => array(
					'type'        => array( 'string', 'boolean' ),
					'enum'        => array( 'all', 'insert', 'contentOnly', false ),
					'description' => __( 'The template_lock associated with the post type, or false if none.' ),
					'readonly'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
		);
	}
}
endpoints/class-wp-rest-abilities-v1-list-controller.php000064400000024371152222510010017402 0ustar00<?php
/**
 * REST API list controller for Abilities API.
 *
 * @package WordPress
 * @subpackage Abilities_API
 * @since 6.9.0
 */

declare( strict_types = 1 );

/**
 * Core controller used to access abilities via the REST API.
 *
 * @since 6.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Abilities_V1_List_Controller extends WP_REST_Controller {

	/**
	 * REST API namespace.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $namespace = 'wp-abilities/v1';

	/**
	 * REST API base route.
	 *
	 * @since 6.9.0
	 * @var string
	 */
	protected $rest_base = 'abilities';

	/**
	 * Registers the routes for abilities.
	 *
	 * @since 6.9.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes(): void {
		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<name>[a-zA-Z0-9\-\/]+)',
			array(
				'args'   => array(
					'name' => array(
						'description' => __( 'Unique identifier for the ability.' ),
						'type'        => 'string',
						'pattern'     => '^[a-zA-Z0-9\-\/]+$',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Retrieves all abilities.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object on success.
	 */
	public function get_items( $request ) {
		$abilities = array_filter(
			wp_get_abilities(),
			static function ( $ability ) {
				return $ability->get_meta_item( 'show_in_rest' );
			}
		);

		// Filter by ability category if specified.
		$category = $request['category'];
		if ( ! empty( $category ) ) {
			$abilities = array_filter(
				$abilities,
				static function ( $ability ) use ( $category ) {
					return $ability->get_category() === $category;
				}
			);
			// Reset array keys after filtering.
			$abilities = array_values( $abilities );
		}

		$page     = $request['page'];
		$per_page = $request['per_page'];
		$offset   = ( $page - 1 ) * $per_page;

		$total_abilities = count( $abilities );
		$max_pages       = (int) ceil( $total_abilities / $per_page );

		if ( $request->get_method() === 'HEAD' ) {
			$response = new WP_REST_Response( array() );
		} else {
			$abilities = array_slice( $abilities, $offset, $per_page );

			$data = array();
			foreach ( $abilities as $ability ) {
				$item   = $this->prepare_item_for_response( $ability, $request );
				$data[] = $this->prepare_response_for_collection( $item );
			}

			$response = rest_ensure_response( $data );
		}

		$response->header( 'X-WP-Total', (string) $total_abilities );
		$response->header( 'X-WP-TotalPages', (string) $max_pages );

		$query_params = $request->get_query_params();
		$base         = add_query_arg( urlencode_deep( $query_params ), rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ) );

		if ( $page > 1 ) {
			$prev_page = $page - 1;
			$prev_link = add_query_arg( 'page', $prev_page, $base );
			$response->link_header( 'prev', $prev_link );
		}

		if ( $page < $max_pages ) {
			$next_page = $page + 1;
			$next_link = add_query_arg( 'page', $next_page, $base );
			$response->link_header( 'next', $next_link );
		}

		return $response;
	}

	/**
	 * Retrieves a specific ability.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$ability = wp_get_ability( $request['name'] );
		if ( ! $ability || ! $ability->get_meta_item( 'show_in_rest' ) ) {
			return new WP_Error(
				'rest_ability_not_found',
				__( 'Ability not found.' ),
				array( 'status' => 404 )
			);
		}

		$data = $this->prepare_item_for_response( $ability, $request );
		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to read ability items.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the request has read access.
	 */
	public function get_items_permissions_check( $request ) {
		return current_user_can( 'read' );
	}

	/**
	 * Checks if a given request has access to read an ability item.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the request has read access.
	 */
	public function get_item_permissions_check( $request ) {
		return current_user_can( 'read' );
	}

	/**
	 * Normalizes schema empty object defaults.
	 *
	 * Converts empty array defaults to objects when the schema type is 'object'
	 * to ensure proper JSON serialization as {} instead of [].
	 *
	 * @since 6.9.0
	 *
	 * @param array<string, mixed> $schema The schema array.
	 * @return array<string, mixed> The normalized schema.
	 */
	private function normalize_schema_empty_object_defaults( array $schema ): array {
		if ( isset( $schema['type'] ) && 'object' === $schema['type'] && isset( $schema['default'] ) ) {
			$default = $schema['default'];
			if ( is_array( $default ) && empty( $default ) ) {
				$schema['default'] = (object) $default;
			}
		}
		return $schema;
	}

	/**
	 * Prepares an ability for response.
	 *
	 * @since 6.9.0
	 *
	 * @param WP_Ability      $ability The ability object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $ability, $request ) {
		$data = array(
			'name'          => $ability->get_name(),
			'label'         => $ability->get_label(),
			'description'   => $ability->get_description(),
			'category'      => $ability->get_category(),
			'input_schema'  => $this->normalize_schema_empty_object_defaults( $ability->get_input_schema() ),
			'output_schema' => $this->normalize_schema_empty_object_defaults( $ability->get_output_schema() ),
			'meta'          => $ability->get_meta(),
		);

		$context = $request['context'] ?? 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		$fields = $this->get_fields_for_response( $request );
		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$links = array(
				'self'       => array(
					'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $ability->get_name() ) ),
				),
				'collection' => array(
					'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
				),
			);

			$links['wp:action-run'] = array(
				'href' => rest_url( sprintf( '%s/%s/%s/run', $this->namespace, $this->rest_base, $ability->get_name() ) ),
			);

			$response->add_links( $links );
		}

		return $response;
	}

	/**
	 * Retrieves the ability's schema, conforming to JSON Schema.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Item schema data.
	 */
	public function get_item_schema(): array {
		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'ability',
			'type'       => 'object',
			'properties' => array(
				'name'          => array(
					'description' => __( 'Unique identifier for the ability.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'label'         => array(
					'description' => __( 'Display label for the ability.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'description'   => array(
					'description' => __( 'Description of the ability.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'category'      => array(
					'description' => __( 'Ability category this ability belongs to.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'input_schema'  => array(
					'description' => __( 'JSON Schema for the ability input.' ),
					'type'        => 'object',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'output_schema' => array(
					'description' => __( 'JSON Schema for the ability output.' ),
					'type'        => 'object',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'meta'          => array(
					'description' => __( 'Meta information about the ability.' ),
					'type'        => 'object',
					'properties'  => array(
						'annotations' => array(
							'description' => __( 'Annotations for the ability.' ),
							'type'        => array( 'boolean', 'null' ),
							'default'     => null,
						),
					),
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
			),
		);

		return $this->add_additional_fields_schema( $schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 6.9.0
	 *
	 * @return array<string, mixed> Collection parameters.
	 */
	public function get_collection_params(): array {
		return array(
			'context'  => $this->get_context_param( array( 'default' => 'view' ) ),
			'page'     => array(
				'description' => __( 'Current page of the collection.' ),
				'type'        => 'integer',
				'default'     => 1,
				'minimum'     => 1,
			),
			'per_page' => array(
				'description' => __( 'Maximum number of items to be returned in result set.' ),
				'type'        => 'integer',
				'default'     => 50,
				'minimum'     => 1,
				'maximum'     => 100,
			),
			'category' => array(
				'description'       => __( 'Limit results to abilities in specific ability category.' ),
				'type'              => 'string',
				'sanitize_callback' => 'sanitize_key',
				'validate_callback' => 'rest_validate_request_arg',
			),
		);
	}
}
endpoints/class-wp-rest-menus-controller.php000064400000041265152222510010015270 0ustar00<?php
/**
 * REST API: WP_REST_Menus_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.9.0
 */

/**
 * Core class used to managed menu terms associated via the REST API.
 *
 * @since 5.9.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Menus_Controller extends WP_REST_Terms_Controller {

	/**
	 * Checks if a request has access to read menus.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has read access, otherwise false or WP_Error object.
	 */
	public function get_items_permissions_check( $request ) {
		$has_permission = parent::get_items_permissions_check( $request );

		if ( true !== $has_permission ) {
			return $has_permission;
		}

		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Checks if a request has access to read or edit the specified menu.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access for the item, otherwise WP_Error object.
	 */
	public function get_item_permissions_check( $request ) {
		$has_permission = parent::get_item_permissions_check( $request );

		if ( true !== $has_permission ) {
			return $has_permission;
		}

		return $this->check_has_read_only_access( $request );
	}

	/**
	 * Gets the term, if the ID is valid.
	 *
	 * @since 5.9.0
	 *
	 * @param int $id Supplied ID.
	 * @return WP_Term|WP_Error Term object if ID is valid, WP_Error otherwise.
	 */
	protected function get_term( $id ) {
		$term = parent::get_term( $id );

		if ( is_wp_error( $term ) ) {
			return $term;
		}

		$nav_term           = wp_get_nav_menu_object( $term );
		$nav_term->auto_add = $this->get_menu_auto_add( $nav_term->term_id );

		return $nav_term;
	}

	/**
	 * Checks whether the current user has read permission for the endpoint.
	 *
	 * This allows for any user that can `edit_theme_options` or edit any REST API available post type.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the current user has permission, WP_Error object otherwise.
	 */
	protected function check_has_read_only_access( $request ) {
		/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php */
		$read_only_access = apply_filters( 'rest_menu_read_access', false, $request, $this );
		if ( $read_only_access ) {
			return true;
		}

		if ( current_user_can( 'edit_theme_options' ) ) {
			return true;
		}

		if ( current_user_can( 'edit_posts' ) ) {
			return true;
		}

		foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
			if ( current_user_can( $post_type->cap->edit_posts ) ) {
				return true;
			}
		}

		return new WP_Error(
			'rest_cannot_view',
			__( 'Sorry, you are not allowed to view menus.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	/**
	 * Prepares a single term output for response.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Term         $term    Term object.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $term, $request ) {
		$nav_menu = wp_get_nav_menu_object( $term );
		$response = parent::prepare_item_for_response( $nav_menu, $request );

		$fields = $this->get_fields_for_response( $request );
		$data   = $response->get_data();

		if ( rest_is_field_included( 'locations', $fields ) ) {
			$data['locations'] = $this->get_menu_locations( $nav_menu->term_id );
		}

		if ( rest_is_field_included( 'auto_add', $fields ) ) {
			$data['auto_add'] = $this->get_menu_auto_add( $nav_menu->term_id );
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $term ) );
		}

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		return apply_filters( "rest_prepare_{$this->taxonomy}", $response, $term, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Term $term Term object.
	 * @return array Links for the given term.
	 */
	protected function prepare_links( $term ) {
		$links = parent::prepare_links( $term );

		$locations = $this->get_menu_locations( $term->term_id );
		foreach ( $locations as $location ) {
			$url = rest_url( sprintf( 'wp/v2/menu-locations/%s', $location ) );

			$links['https://api.w.org/menu-location'][] = array(
				'href'       => $url,
				'embeddable' => true,
			);
		}

		return $links;
	}

	/**
	 * Prepares a single term for create or update.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return object Prepared term data.
	 */
	public function prepare_item_for_database( $request ) {
		$prepared_term = parent::prepare_item_for_database( $request );

		$schema = $this->get_item_schema();

		if ( isset( $request['name'] ) && ! empty( $schema['properties']['name'] ) ) {
			$prepared_term->{'menu-name'} = $request['name'];
		}

		return $prepared_term;
	}

	/**
	 * Creates a single term in a taxonomy.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		if ( isset( $request['parent'] ) ) {
			if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) {
				return new WP_Error( 'rest_taxonomy_not_hierarchical', __( 'Cannot set parent term, taxonomy is not hierarchical.' ), array( 'status' => 400 ) );
			}

			$parent = wp_get_nav_menu_object( (int) $request['parent'] );

			if ( ! $parent ) {
				return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) );
			}
		}

		$prepared_term = $this->prepare_item_for_database( $request );

		$term = wp_update_nav_menu_object( 0, wp_slash( (array) $prepared_term ) );

		if ( is_wp_error( $term ) ) {
			/*
			 * If we're going to inform the client that the term already exists,
			 * give them the identifier for future use.
			 */

			if ( in_array( 'menu_exists', $term->get_error_codes(), true ) ) {
				$existing_term = get_term_by( 'name', $prepared_term->{'menu-name'}, $this->taxonomy );
				$term->add_data( $existing_term->term_id, 'menu_exists' );
				$term->add_data(
					array(
						'status'  => 400,
						'term_id' => $existing_term->term_id,
					)
				);
			} else {
				$term->add_data( array( 'status' => 400 ) );
			}

			return $term;
		}

		$term = $this->get_term( $term );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_insert_{$this->taxonomy}", $term, $request, true );

		$schema = $this->get_item_schema();
		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $term->term_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$locations_update = $this->handle_locations( $term->term_id, $request );

		if ( is_wp_error( $locations_update ) ) {
			return $locations_update;
		}

		$this->handle_auto_add( $term->term_id, $request );

		$fields_update = $this->update_additional_fields_for_object( $term, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'view' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );

		$response = $this->prepare_item_for_response( $term, $request );
		$response = rest_ensure_response( $response );

		$response->set_status( 201 );
		$response->header( 'Location', rest_url( $this->namespace . '/' . $this->rest_base . '/' . $term->term_id ) );

		return $response;
	}

	/**
	 * Updates a single term from a taxonomy.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		$term = $this->get_term( $request['id'] );
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		if ( isset( $request['parent'] ) ) {
			if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) {
				return new WP_Error( 'rest_taxonomy_not_hierarchical', __( 'Cannot set parent term, taxonomy is not hierarchical.' ), array( 'status' => 400 ) );
			}

			$parent = get_term( (int) $request['parent'], $this->taxonomy );

			if ( ! $parent ) {
				return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) );
			}
		}

		$prepared_term = $this->prepare_item_for_database( $request );

		// Only update the term if we have something to update.
		if ( ! empty( $prepared_term ) ) {
			if ( ! isset( $prepared_term->{'menu-name'} ) ) {
				// wp_update_nav_menu_object() requires that the menu-name is always passed.
				$prepared_term->{'menu-name'} = $term->name;
			}

			$update = wp_update_nav_menu_object( $term->term_id, wp_slash( (array) $prepared_term ) );

			if ( is_wp_error( $update ) ) {
				return $update;
			}
		}

		$term = get_term( $term->term_id, $this->taxonomy );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_insert_{$this->taxonomy}", $term, $request, false );

		$schema = $this->get_item_schema();
		if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
			$meta_update = $this->meta->update_value( $request['meta'], $term->term_id );

			if ( is_wp_error( $meta_update ) ) {
				return $meta_update;
			}
		}

		$locations_update = $this->handle_locations( $term->term_id, $request );

		if ( is_wp_error( $locations_update ) ) {
			return $locations_update;
		}

		$this->handle_auto_add( $term->term_id, $request );

		$fields_update = $this->update_additional_fields_for_object( $term, $request );

		if ( is_wp_error( $fields_update ) ) {
			return $fields_update;
		}

		$request->set_param( 'context', 'view' );

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );

		$response = $this->prepare_item_for_response( $term, $request );

		return rest_ensure_response( $response );
	}

	/**
	 * Deletes a single term from a taxonomy.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		$term = $this->get_term( $request['id'] );
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		// We don't support trashing for terms.
		if ( ! $request['force'] ) {
			/* translators: %s: force=true */
			return new WP_Error( 'rest_trash_not_supported', sprintf( __( "Menus do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) );
		}

		$request->set_param( 'context', 'view' );

		$previous = $this->prepare_item_for_response( $term, $request );

		$result = wp_delete_nav_menu( $term );

		if ( ! $result || is_wp_error( $result ) ) {
			return new WP_Error( 'rest_cannot_delete', __( 'The menu cannot be deleted.' ), array( 'status' => 500 ) );
		}

		$response = new WP_REST_Response();
		$response->set_data(
			array(
				'deleted'  => true,
				'previous' => $previous->get_data(),
			)
		);

		/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
		do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request );

		return $response;
	}

	/**
	 * Returns the value of a menu's auto_add setting.
	 *
	 * @since 5.9.0
	 *
	 * @param int $menu_id The menu id to query.
	 * @return bool The value of auto_add.
	 */
	protected function get_menu_auto_add( $menu_id ) {
		$nav_menu_option = (array) get_option( 'nav_menu_options', array( 'auto_add' => array() ) );

		return in_array( $menu_id, $nav_menu_option['auto_add'], true );
	}

	/**
	 * Updates the menu's auto add from a REST request.
	 *
	 * @since 5.9.0
	 *
	 * @param int             $menu_id The menu id to update.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool True if the auto add setting was successfully updated.
	 */
	protected function handle_auto_add( $menu_id, $request ) {
		if ( ! isset( $request['auto_add'] ) ) {
			return true;
		}

		$nav_menu_option = (array) get_option( 'nav_menu_options', array( 'auto_add' => array() ) );

		if ( ! isset( $nav_menu_option['auto_add'] ) ) {
			$nav_menu_option['auto_add'] = array();
		}

		$auto_add = $request['auto_add'];

		$i = array_search( $menu_id, $nav_menu_option['auto_add'], true );

		if ( $auto_add && false === $i ) {
			$nav_menu_option['auto_add'][] = $menu_id;
		} elseif ( ! $auto_add && false !== $i ) {
			array_splice( $nav_menu_option['auto_add'], $i, 1 );
		}

		$update = update_option( 'nav_menu_options', $nav_menu_option );

		/** This action is documented in wp-includes/nav-menu.php */
		do_action( 'wp_update_nav_menu', $menu_id );

		return $update;
	}

	/**
	 * Returns the names of the locations assigned to the menu.
	 *
	 * @since 5.9.0
	 *
	 * @param int $menu_id The menu id.
	 * @return string[] The locations assigned to the menu.
	 */
	protected function get_menu_locations( $menu_id ) {
		$locations      = get_nav_menu_locations();
		$menu_locations = array();

		foreach ( $locations as $location => $assigned_menu_id ) {
			if ( $menu_id === $assigned_menu_id ) {
				$menu_locations[] = $location;
			}
		}

		return $menu_locations;
	}

	/**
	 * Updates the menu's locations from a REST request.
	 *
	 * @since 5.9.0
	 *
	 * @param int             $menu_id The menu id to update.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True on success, a WP_Error on an error updating any of the locations.
	 */
	protected function handle_locations( $menu_id, $request ) {
		if ( ! isset( $request['locations'] ) ) {
			return true;
		}

		$menu_locations = get_registered_nav_menus();
		$menu_locations = array_keys( $menu_locations );
		$new_locations  = array();
		foreach ( $request['locations'] as $location ) {
			if ( ! in_array( $location, $menu_locations, true ) ) {
				return new WP_Error(
					'rest_invalid_menu_location',
					__( 'Invalid menu location.' ),
					array(
						'status'   => 400,
						'location' => $location,
					)
				);
			}
			$new_locations[ $location ] = $menu_id;
		}
		$assigned_menu = get_nav_menu_locations();
		foreach ( $assigned_menu as $location => $term_id ) {
			if ( $term_id === $menu_id ) {
				unset( $assigned_menu[ $location ] );
			}
		}
		$new_assignments = array_merge( $assigned_menu, $new_locations );
		set_theme_mod( 'nav_menu_locations', $new_assignments );

		return true;
	}

	/**
	 * Retrieves the term's schema, conforming to JSON Schema.
	 *
	 * @since 5.9.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = parent::get_item_schema();
		unset( $schema['properties']['count'], $schema['properties']['link'], $schema['properties']['taxonomy'] );

		$schema['properties']['locations'] = array(
			'description' => __( 'The locations assigned to the menu.' ),
			'type'        => 'array',
			'items'       => array(
				'type' => 'string',
			),
			'context'     => array( 'view', 'edit' ),
			'arg_options' => array(
				'validate_callback' => static function ( $locations, $request, $param ) {
					$valid = rest_validate_request_arg( $locations, $request, $param );

					if ( true !== $valid ) {
						return $valid;
					}

					$locations = rest_sanitize_request_arg( $locations, $request, $param );

					foreach ( $locations as $location ) {
						if ( ! array_key_exists( $location, get_registered_nav_menus() ) ) {
							return new WP_Error(
								'rest_invalid_menu_location',
								__( 'Invalid menu location.' ),
								array(
									'location' => $location,
								)
							);
						}
					}

					return true;
				},
			),
		);

		$schema['properties']['auto_add'] = array(
			'description' => __( 'Whether to automatically add top level pages to this menu.' ),
			'context'     => array( 'view', 'edit' ),
			'type'        => 'boolean',
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}
}
endpoints/class-wp-rest-taxonomies-controller.php000064400000033277152222510010016333 0ustar00<?php
/**
 * REST API: WP_REST_Taxonomies_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage taxonomies via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Taxonomies_Controller extends WP_REST_Controller {

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'taxonomies';
	}

	/**
	 * Registers the routes for taxonomies.
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_route()
	 */
	public function register_routes() {

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			'/' . $this->rest_base . '/(?P<taxonomy>[\w-]+)',
			array(
				'args'   => array(
					'taxonomy' => array(
						'description' => __( 'An alphanumeric identifier for the taxonomy.' ),
						'type'        => 'string',
					),
				),
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				'schema' => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks whether a given request has permission to read taxonomies.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		if ( 'edit' === $request['context'] ) {
			if ( ! empty( $request['type'] ) ) {
				$taxonomies = get_object_taxonomies( $request['type'], 'objects' );
			} else {
				$taxonomies = get_taxonomies( '', 'objects' );
			}

			foreach ( $taxonomies as $taxonomy ) {
				if ( ! empty( $taxonomy->show_in_rest ) && current_user_can( $taxonomy->cap->assign_terms ) ) {
					return true;
				}
			}

			return new WP_Error(
				'rest_cannot_view',
				__( 'Sorry, you are not allowed to manage terms in this taxonomy.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Retrieves all public taxonomies.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object on success, or WP_Error object on failure.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		// Retrieve the list of registered collection query parameters.
		$registered = $this->get_collection_params();

		if ( isset( $registered['type'] ) && ! empty( $request['type'] ) ) {
			$taxonomies = get_object_taxonomies( $request['type'], 'objects' );
		} else {
			$taxonomies = get_taxonomies( '', 'objects' );
		}

		$data = array();

		foreach ( $taxonomies as $tax_type => $value ) {
			if ( empty( $value->show_in_rest ) || ( 'edit' === $request['context'] && ! current_user_can( $value->cap->assign_terms ) ) ) {
				continue;
			}

			$tax               = $this->prepare_item_for_response( $value, $request );
			$tax               = $this->prepare_response_for_collection( $tax );
			$data[ $tax_type ] = $tax;
		}

		if ( empty( $data ) ) {
			// Response should still be returned as a JSON object when it is empty.
			$data = (object) $data;
		}

		return rest_ensure_response( $data );
	}

	/**
	 * Checks if a given request has access to a taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return bool|WP_Error True if the request has read access for the item, otherwise false or WP_Error object.
	 */
	public function get_item_permissions_check( $request ) {

		$tax_obj = get_taxonomy( $request['taxonomy'] );

		if ( $tax_obj ) {
			if ( empty( $tax_obj->show_in_rest ) ) {
				return false;
			}

			if ( 'edit' === $request['context'] && ! current_user_can( $tax_obj->cap->assign_terms ) ) {
				return new WP_Error(
					'rest_forbidden_context',
					__( 'Sorry, you are not allowed to manage terms in this taxonomy.' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}
		}

		return true;
	}

	/**
	 * Retrieves a specific taxonomy.
	 *
	 * @since 4.7.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$tax_obj = get_taxonomy( $request['taxonomy'] );

		if ( empty( $tax_obj ) ) {
			return new WP_Error(
				'rest_taxonomy_invalid',
				__( 'Invalid taxonomy.' ),
				array( 'status' => 404 )
			);
		}

		$data = $this->prepare_item_for_response( $tax_obj, $request );

		return rest_ensure_response( $data );
	}

	/**
	 * Prepares a taxonomy object for serialization.
	 *
	 * @since 4.7.0
	 * @since 5.9.0 Renamed `$taxonomy` to `$item` to match parent class for PHP 8 named parameter support.
	 *
	 * @param WP_Taxonomy     $item    Taxonomy data.
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object.
	 */
	public function prepare_item_for_response( $item, $request ) {
		// Restores the more descriptive, specific name for use within this method.
		$taxonomy = $item;

		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php */
			return apply_filters( 'rest_prepare_taxonomy', new WP_REST_Response( array() ), $taxonomy, $request );
		}

		$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;

		$fields = $this->get_fields_for_response( $request );
		$data   = array();

		if ( in_array( 'name', $fields, true ) ) {
			$data['name'] = $taxonomy->label;
		}

		if ( in_array( 'slug', $fields, true ) ) {
			$data['slug'] = $taxonomy->name;
		}

		if ( in_array( 'capabilities', $fields, true ) ) {
			$data['capabilities'] = $taxonomy->cap;
		}

		if ( in_array( 'description', $fields, true ) ) {
			$data['description'] = $taxonomy->description;
		}

		if ( in_array( 'labels', $fields, true ) ) {
			$data['labels'] = $taxonomy->labels;
		}

		if ( in_array( 'types', $fields, true ) ) {
			$data['types'] = array_values( $taxonomy->object_type );
		}

		if ( in_array( 'show_cloud', $fields, true ) ) {
			$data['show_cloud'] = $taxonomy->show_tagcloud;
		}

		if ( in_array( 'hierarchical', $fields, true ) ) {
			$data['hierarchical'] = $taxonomy->hierarchical;
		}

		if ( in_array( 'rest_base', $fields, true ) ) {
			$data['rest_base'] = $base;
		}

		if ( in_array( 'rest_namespace', $fields, true ) ) {
			$data['rest_namespace'] = $taxonomy->rest_namespace;
		}

		if ( in_array( 'visibility', $fields, true ) ) {
			$data['visibility'] = array(
				'public'             => (bool) $taxonomy->public,
				'publicly_queryable' => (bool) $taxonomy->publicly_queryable,
				'show_admin_column'  => (bool) $taxonomy->show_admin_column,
				'show_in_nav_menus'  => (bool) $taxonomy->show_in_nav_menus,
				'show_in_quick_edit' => (bool) $taxonomy->show_in_quick_edit,
				'show_ui'            => (bool) $taxonomy->show_ui,
			);
		}

		$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$data    = $this->add_additional_fields_to_object( $data, $request );
		$data    = $this->filter_response_by_context( $data, $context );

		// Wrap the data in a response object.
		$response = rest_ensure_response( $data );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $taxonomy ) );
		}

		/**
		 * Filters a taxonomy returned from the REST API.
		 *
		 * Allows modification of the taxonomy data right before it is returned.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response $response The response object.
		 * @param WP_Taxonomy      $item     The original taxonomy object.
		 * @param WP_REST_Request  $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_taxonomy', $response, $taxonomy, $request );
	}

	/**
	 * Prepares links for the request.
	 *
	 * @since 6.1.0
	 *
	 * @param WP_Taxonomy $taxonomy The taxonomy.
	 * @return array Links for the given taxonomy.
	 */
	protected function prepare_links( $taxonomy ) {
		return array(
			'collection'              => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'https://api.w.org/items' => array(
				'href' => rest_url( rest_get_route_for_taxonomy_items( $taxonomy->name ) ),
			),
		);
	}

	/**
	 * Retrieves the taxonomy's schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 * @since 5.0.0 The `visibility` property was added.
	 * @since 5.9.0 The `rest_namespace` property was added.
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'taxonomy',
			'type'       => 'object',
			'properties' => array(
				'capabilities'   => array(
					'description' => __( 'All capabilities used by the taxonomy.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'description'    => array(
					'description' => __( 'A human-readable description of the taxonomy.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'hierarchical'   => array(
					'description' => __( 'Whether or not the taxonomy should have children.' ),
					'type'        => 'boolean',
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'labels'         => array(
					'description' => __( 'Human-readable labels for the taxonomy for various contexts.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'name'           => array(
					'description' => __( 'The title for the taxonomy.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'slug'           => array(
					'description' => __( 'An alphanumeric identifier for the taxonomy.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'show_cloud'     => array(
					'description' => __( 'Whether or not the term cloud should be displayed.' ),
					'type'        => 'boolean',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'types'          => array(
					'description' => __( 'Types associated with the taxonomy.' ),
					'type'        => 'array',
					'items'       => array(
						'type' => 'string',
					),
					'context'     => array( 'view', 'edit' ),
					'readonly'    => true,
				),
				'rest_base'      => array(
					'description' => __( 'REST base route for the taxonomy.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'rest_namespace' => array(
					'description' => __( 'REST namespace route for the taxonomy.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'visibility'     => array(
					'description' => __( 'The visibility settings for the taxonomy.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'readonly'    => true,
					'properties'  => array(
						'public'             => array(
							'description' => __( 'Whether a taxonomy is intended for use publicly either via the admin interface or by front-end users.' ),
							'type'        => 'boolean',
						),
						'publicly_queryable' => array(
							'description' => __( 'Whether the taxonomy is publicly queryable.' ),
							'type'        => 'boolean',
						),
						'show_ui'            => array(
							'description' => __( 'Whether to generate a default UI for managing this taxonomy.' ),
							'type'        => 'boolean',
						),
						'show_admin_column'  => array(
							'description' => __( 'Whether to allow automatic creation of taxonomy columns on associated post-types table.' ),
							'type'        => 'boolean',
						),
						'show_in_nav_menus'  => array(
							'description' => __( 'Whether to make the taxonomy available for selection in navigation menus.' ),
							'type'        => 'boolean',
						),
						'show_in_quick_edit' => array(
							'description' => __( 'Whether to show the taxonomy in the quick/bulk edit panel.' ),
							'type'        => 'boolean',
						),

					),
				),
			),
		);

		$this->schema = $schema;

		return $this->add_additional_fields_schema( $this->schema );
	}

	/**
	 * Retrieves the query params for collections.
	 *
	 * @since 4.7.0
	 *
	 * @return array Collection parameters.
	 */
	public function get_collection_params() {
		$new_params            = array();
		$new_params['context'] = $this->get_context_param( array( 'default' => 'view' ) );
		$new_params['type']    = array(
			'description' => __( 'Limit results to taxonomies associated with a specific post type.' ),
			'type'        => 'string',
		);
		return $new_params;
	}
}
endpoints/class-wp-rest-widgets-controller.php000064400000064415152222510010015611 0ustar00<?php
/**
 * REST API: WP_REST_Widgets_Controller class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 5.8.0
 */

/**
 * Core class to access widgets via the REST API.
 *
 * @since 5.8.0
 *
 * @see WP_REST_Controller
 */
class WP_REST_Widgets_Controller extends WP_REST_Controller {

	/**
	 * Tracks whether {@see retrieve_widgets()} has been called in the current request.
	 *
	 * @since 5.9.0
	 * @var bool
	 */
	protected $widgets_retrieved = false;

	/**
	 * Whether the controller supports batching.
	 *
	 * @since 5.9.0
	 * @var array
	 */
	protected $allow_batch = array( 'v1' => true );

	/**
	 * Widgets controller constructor.
	 *
	 * @since 5.8.0
	 */
	public function __construct() {
		$this->namespace = 'wp/v2';
		$this->rest_base = 'widgets';
	}

	/**
	 * Registers the widget routes for the controller.
	 *
	 * @since 5.8.0
	 */
	public function register_routes() {
		register_rest_route(
			$this->namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_items' ),
					'permission_callback' => array( $this, 'get_items_permissions_check' ),
					'args'                => $this->get_collection_params(),
				),
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'create_item' ),
					'permission_callback' => array( $this, 'create_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema(),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);

		register_rest_route(
			$this->namespace,
			$this->rest_base . '/(?P<id>[\w\-]+)',
			array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_item' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'context' => $this->get_context_param( array( 'default' => 'view' ) ),
					),
				),
				array(
					'methods'             => WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'update_item' ),
					'permission_callback' => array( $this, 'update_item_permissions_check' ),
					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
				),
				array(
					'methods'             => WP_REST_Server::DELETABLE,
					'callback'            => array( $this, 'delete_item' ),
					'permission_callback' => array( $this, 'delete_item_permissions_check' ),
					'args'                => array(
						'force' => array(
							'description' => __( 'Whether to force removal of the widget, or move it to the inactive sidebar.' ),
							'type'        => 'boolean',
						),
					),
				),
				'allow_batch' => $this->allow_batch,
				'schema'      => array( $this, 'get_public_item_schema' ),
			)
		);
	}

	/**
	 * Checks if a given request has access to get widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_items_permissions_check( $request ) {
		$this->retrieve_widgets();
		if ( isset( $request['sidebar'] ) && $this->check_read_sidebar_permission( $request['sidebar'] ) ) {
			return true;
		}

		foreach ( wp_get_sidebars_widgets() as $sidebar_id => $widget_ids ) {
			if ( $this->check_read_sidebar_permission( $sidebar_id ) ) {
				return true;
			}
		}

		return $this->permissions_check( $request );
	}

	/**
	 * Retrieves a collection of widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response Response object.
	 */
	public function get_items( $request ) {
		if ( $request->is_method( 'HEAD' ) ) {
			// Return early as this handler doesn't add any response headers.
			return new WP_REST_Response( array() );
		}

		$this->retrieve_widgets();

		$prepared          = array();
		$permissions_check = $this->permissions_check( $request );

		foreach ( wp_get_sidebars_widgets() as $sidebar_id => $widget_ids ) {
			if ( isset( $request['sidebar'] ) && $sidebar_id !== $request['sidebar'] ) {
				continue;
			}

			if ( is_wp_error( $permissions_check ) && ! $this->check_read_sidebar_permission( $sidebar_id ) ) {
				continue;
			}

			foreach ( $widget_ids as $widget_id ) {
				$response = $this->prepare_item_for_response( compact( 'sidebar_id', 'widget_id' ), $request );

				if ( ! is_wp_error( $response ) ) {
					$prepared[] = $this->prepare_response_for_collection( $response );
				}
			}
		}

		return new WP_REST_Response( $prepared );
	}

	/**
	 * Checks if a given request has access to get a widget.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function get_item_permissions_check( $request ) {
		$this->retrieve_widgets();

		$widget_id  = $request['id'];
		$sidebar_id = wp_find_widgets_sidebar( $widget_id );

		if ( $sidebar_id && $this->check_read_sidebar_permission( $sidebar_id ) ) {
			return true;
		}

		return $this->permissions_check( $request );
	}

	/**
	 * Checks if a sidebar can be read publicly.
	 *
	 * @since 5.9.0
	 *
	 * @param string $sidebar_id The sidebar ID.
	 * @return bool Whether the sidebar can be read.
	 */
	protected function check_read_sidebar_permission( $sidebar_id ) {
		$sidebar = wp_get_sidebar( $sidebar_id );

		return ! empty( $sidebar['show_in_rest'] );
	}

	/**
	 * Gets an individual widget.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function get_item( $request ) {
		$this->retrieve_widgets();

		$widget_id  = $request['id'];
		$sidebar_id = wp_find_widgets_sidebar( $widget_id );

		if ( is_null( $sidebar_id ) ) {
			return new WP_Error(
				'rest_widget_not_found',
				__( 'No widget was found with that id.' ),
				array( 'status' => 404 )
			);
		}

		return $this->prepare_item_for_response( compact( 'widget_id', 'sidebar_id' ), $request );
	}

	/**
	 * Checks if a given request has access to create widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function create_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Creates a widget.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function create_item( $request ) {
		$sidebar_id = $request['sidebar'];

		$widget_id = $this->save_widget( $request, $sidebar_id );

		if ( is_wp_error( $widget_id ) ) {
			return $widget_id;
		}

		wp_assign_widget_to_sidebar( $widget_id, $sidebar_id );

		$request['context'] = 'edit';

		$response = $this->prepare_item_for_response( compact( 'sidebar_id', 'widget_id' ), $request );

		if ( is_wp_error( $response ) ) {
			return $response;
		}

		$response->set_status( 201 );

		return $response;
	}

	/**
	 * Checks if a given request has access to update widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function update_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Updates an existing widget.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function update_item( $request ) {
		global $wp_widget_factory;

		/*
		 * retrieve_widgets() contains logic to move "hidden" or "lost" widgets to the
		 * wp_inactive_widgets sidebar based on the contents of the $sidebars_widgets global.
		 *
		 * When batch requests are processed, this global is not properly updated by previous
		 * calls, resulting in widgets incorrectly being moved to the wp_inactive_widgets
		 * sidebar.
		 *
		 * See https://core.trac.wordpress.org/ticket/53657.
		 */
		wp_get_sidebars_widgets();
		$this->retrieve_widgets();

		$widget_id  = $request['id'];
		$sidebar_id = wp_find_widgets_sidebar( $widget_id );

		// Allow sidebar to be unset or missing when widget is not a WP_Widget.
		$parsed_id     = wp_parse_widget_id( $widget_id );
		$widget_object = $wp_widget_factory->get_widget_object( $parsed_id['id_base'] );
		if ( is_null( $sidebar_id ) && $widget_object ) {
			return new WP_Error(
				'rest_widget_not_found',
				__( 'No widget was found with that id.' ),
				array( 'status' => 404 )
			);
		}

		if (
			$request->has_param( 'instance' ) ||
			$request->has_param( 'form_data' )
		) {
			$maybe_error = $this->save_widget( $request, $sidebar_id );
			if ( is_wp_error( $maybe_error ) ) {
				return $maybe_error;
			}
		}

		if ( $request->has_param( 'sidebar' ) ) {
			if ( $sidebar_id !== $request['sidebar'] ) {
				$sidebar_id = $request['sidebar'];
				wp_assign_widget_to_sidebar( $widget_id, $sidebar_id );
			}
		}

		$request['context'] = 'edit';

		return $this->prepare_item_for_response( compact( 'widget_id', 'sidebar_id' ), $request );
	}

	/**
	 * Checks if a given request has access to delete widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error True if the request has read access, WP_Error object otherwise.
	 */
	public function delete_item_permissions_check( $request ) {
		return $this->permissions_check( $request );
	}

	/**
	 * Deletes a widget.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 * @global array             $wp_registered_widget_updates The registered widget update functions.
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function delete_item( $request ) {
		global $wp_widget_factory, $wp_registered_widget_updates;

		/*
		 * retrieve_widgets() contains logic to move "hidden" or "lost" widgets to the
		 * wp_inactive_widgets sidebar based on the contents of the $sidebars_widgets global.
		 *
		 * When batch requests are processed, this global is not properly updated by previous
		 * calls, resulting in widgets incorrectly being moved to the wp_inactive_widgets
		 * sidebar.
		 *
		 * See https://core.trac.wordpress.org/ticket/53657.
		 */
		wp_get_sidebars_widgets();
		$this->retrieve_widgets();

		$widget_id  = $request['id'];
		$sidebar_id = wp_find_widgets_sidebar( $widget_id );

		if ( is_null( $sidebar_id ) ) {
			return new WP_Error(
				'rest_widget_not_found',
				__( 'No widget was found with that id.' ),
				array( 'status' => 404 )
			);
		}

		$request['context'] = 'edit';

		if ( $request['force'] ) {
			$response = $this->prepare_item_for_response( compact( 'widget_id', 'sidebar_id' ), $request );

			$parsed_id = wp_parse_widget_id( $widget_id );
			$id_base   = $parsed_id['id_base'];

			$original_post    = $_POST;
			$original_request = $_REQUEST;

			$_POST    = array(
				'sidebar'         => $sidebar_id,
				"widget-$id_base" => array(),
				'the-widget-id'   => $widget_id,
				'delete_widget'   => '1',
			);
			$_REQUEST = $_POST;

			/** This action is documented in wp-admin/widgets-form.php */
			do_action( 'delete_widget', $widget_id, $sidebar_id, $id_base );

			$callback = $wp_registered_widget_updates[ $id_base ]['callback'];
			$params   = $wp_registered_widget_updates[ $id_base ]['params'];

			if ( is_callable( $callback ) ) {
				ob_start();
				call_user_func_array( $callback, $params );
				ob_end_clean();
			}

			$_POST    = $original_post;
			$_REQUEST = $original_request;

			$widget_object = $wp_widget_factory->get_widget_object( $id_base );

			if ( $widget_object ) {
				/*
				 * WP_Widget sets `updated = true` after an update to prevent more than one widget
				 * from being saved per request. This isn't what we want in the REST API, though,
				 * as we support batch requests.
				 */
				$widget_object->updated = false;
			}

			wp_assign_widget_to_sidebar( $widget_id, '' );

			$response->set_data(
				array(
					'deleted'  => true,
					'previous' => $response->get_data(),
				)
			);
		} else {
			wp_assign_widget_to_sidebar( $widget_id, 'wp_inactive_widgets' );

			$response = $this->prepare_item_for_response(
				array(
					'sidebar_id' => 'wp_inactive_widgets',
					'widget_id'  => $widget_id,
				),
				$request
			);
		}

		/**
		 * Fires after a widget is deleted via the REST API.
		 *
		 * @since 5.8.0
		 *
		 * @param string                    $widget_id  ID of the widget marked for deletion.
		 * @param string                    $sidebar_id ID of the sidebar the widget was deleted from.
		 * @param WP_REST_Response|WP_Error $response   The response data, or WP_Error object on failure.
		 * @param WP_REST_Request           $request    The request sent to the API.
		 */
		do_action( 'rest_delete_widget', $widget_id, $sidebar_id, $response, $request );

		return $response;
	}

	/**
	 * Performs a permissions check for managing widgets.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Request $request Full details about the request.
	 * @return true|WP_Error
	 */
	protected function permissions_check( $request ) {
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error(
				'rest_cannot_manage_widgets',
				__( 'Sorry, you are not allowed to manage widgets on this site.' ),
				array(
					'status' => rest_authorization_required_code(),
				)
			);
		}

		return true;
	}

	/**
	 * Looks for "lost" widgets once per request.
	 *
	 * @since 5.9.0
	 *
	 * @see retrieve_widgets()
	 */
	protected function retrieve_widgets() {
		if ( ! $this->widgets_retrieved ) {
			retrieve_widgets();
			$this->widgets_retrieved = true;
		}
	}

	/**
	 * Saves the widget in the request object.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 * @global array             $wp_registered_widget_updates The registered widget update functions.
	 *
	 * @param WP_REST_Request $request    Full details about the request.
	 * @param string          $sidebar_id ID of the sidebar the widget belongs to.
	 * @return string|WP_Error The saved widget ID.
	 */
	protected function save_widget( $request, $sidebar_id ) {
		global $wp_widget_factory, $wp_registered_widget_updates;

		require_once ABSPATH . 'wp-admin/includes/widgets.php'; // For next_widget_id_number().

		if ( isset( $request['id'] ) ) {
			// Saving an existing widget.
			$id            = $request['id'];
			$parsed_id     = wp_parse_widget_id( $id );
			$id_base       = $parsed_id['id_base'];
			$number        = isset( $parsed_id['number'] ) ? $parsed_id['number'] : null;
			$widget_object = $wp_widget_factory->get_widget_object( $id_base );
			$creating      = false;
		} elseif ( $request['id_base'] ) {
			// Saving a new widget.
			$id_base       = $request['id_base'];
			$widget_object = $wp_widget_factory->get_widget_object( $id_base );
			$number        = $widget_object ? next_widget_id_number( $id_base ) : null;
			$id            = $widget_object ? $id_base . '-' . $number : $id_base;
			$creating      = true;
		} else {
			return new WP_Error(
				'rest_invalid_widget',
				__( 'Widget type (id_base) is required.' ),
				array( 'status' => 400 )
			);
		}

		if ( ! isset( $wp_registered_widget_updates[ $id_base ] ) ) {
			return new WP_Error(
				'rest_invalid_widget',
				__( 'The provided widget type (id_base) cannot be updated.' ),
				array( 'status' => 400 )
			);
		}

		if ( isset( $request['instance'] ) ) {
			if ( ! $widget_object ) {
				return new WP_Error(
					'rest_invalid_widget',
					__( 'Cannot set instance on a widget that does not extend WP_Widget.' ),
					array( 'status' => 400 )
				);
			}

			if ( isset( $request['instance']['raw'] ) ) {
				if ( empty( $widget_object->widget_options['show_instance_in_rest'] ) ) {
					return new WP_Error(
						'rest_invalid_widget',
						__( 'Widget type does not support raw instances.' ),
						array( 'status' => 400 )
					);
				}
				$instance = $request['instance']['raw'];
			} elseif ( isset( $request['instance']['encoded'], $request['instance']['hash'] ) ) {
				$serialized_instance = base64_decode( $request['instance']['encoded'] );
				if ( ! hash_equals( wp_hash( $serialized_instance ), $request['instance']['hash'] ) ) {
					return new WP_Error(
						'rest_invalid_widget',
						__( 'The provided instance is malformed.' ),
						array( 'status' => 400 )
					);
				}
				$instance = unserialize( $serialized_instance );
			} else {
				return new WP_Error(
					'rest_invalid_widget',
					__( 'The provided instance is invalid. Must contain raw OR encoded and hash.' ),
					array( 'status' => 400 )
				);
			}

			$form_data = array(
				"widget-$id_base" => array(
					$number => $instance,
				),
				'sidebar'         => $sidebar_id,
			);
		} elseif ( isset( $request['form_data'] ) ) {
			$form_data = $request['form_data'];
		} else {
			$form_data = array();
		}

		$original_post    = $_POST;
		$original_request = $_REQUEST;

		foreach ( $form_data as $key => $value ) {
			$slashed_value    = wp_slash( $value );
			$_POST[ $key ]    = $slashed_value;
			$_REQUEST[ $key ] = $slashed_value;
		}

		$callback = $wp_registered_widget_updates[ $id_base ]['callback'];
		$params   = $wp_registered_widget_updates[ $id_base ]['params'];

		if ( is_callable( $callback ) ) {
			ob_start();
			call_user_func_array( $callback, $params );
			ob_end_clean();
		}

		$_POST    = $original_post;
		$_REQUEST = $original_request;

		if ( $widget_object ) {
			// Register any multi-widget that the update callback just created.
			$widget_object->_set( $number );
			$widget_object->_register_one( $number );

			/*
			 * WP_Widget sets `updated = true` after an update to prevent more than one widget
			 * from being saved per request. This isn't what we want in the REST API, though,
			 * as we support batch requests.
			 */
			$widget_object->updated = false;
		}

		/**
		 * Fires after a widget is created or updated via the REST API.
		 *
		 * @since 5.8.0
		 *
		 * @param string          $id         ID of the widget being saved.
		 * @param string          $sidebar_id ID of the sidebar containing the widget being saved.
		 * @param WP_REST_Request $request    Request object.
		 * @param bool            $creating   True when creating a widget, false when updating.
		 */
		do_action( 'rest_after_save_widget', $id, $sidebar_id, $request, $creating );

		return $id;
	}

	/**
	 * Prepares the widget for the REST response.
	 *
	 * @since 5.8.0
	 *
	 * @global WP_Widget_Factory $wp_widget_factory
	 * @global array             $wp_registered_widgets The registered widgets.
	 *
	 * @param array           $item    An array containing a widget_id and sidebar_id.
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
	 */
	public function prepare_item_for_response( $item, $request ) {
		global $wp_widget_factory, $wp_registered_widgets;

		$widget_id  = $item['widget_id'];
		$sidebar_id = $item['sidebar_id'];

		if ( ! isset( $wp_registered_widgets[ $widget_id ] ) ) {
			return new WP_Error(
				'rest_invalid_widget',
				__( 'The requested widget is invalid.' ),
				array( 'status' => 500 )
			);
		}

		$widget = $wp_registered_widgets[ $widget_id ];
		// Don't prepare the response body for HEAD requests.
		if ( $request->is_method( 'HEAD' ) ) {
			/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php */
			return apply_filters( 'rest_prepare_widget', new WP_REST_Response( array() ), $widget, $request );
		}

		$parsed_id = wp_parse_widget_id( $widget_id );
		$fields    = $this->get_fields_for_response( $request );

		$prepared = array(
			'id'            => $widget_id,
			'id_base'       => $parsed_id['id_base'],
			'sidebar'       => $sidebar_id,
			'rendered'      => '',
			'rendered_form' => null,
			'instance'      => null,
		);

		if (
			rest_is_field_included( 'rendered', $fields ) &&
			'wp_inactive_widgets' !== $sidebar_id
		) {
			$prepared['rendered'] = trim( wp_render_widget( $widget_id, $sidebar_id ) );
		}

		if ( rest_is_field_included( 'rendered_form', $fields ) ) {
			$rendered_form = wp_render_widget_control( $widget_id );
			if ( ! is_null( $rendered_form ) ) {
				$prepared['rendered_form'] = trim( $rendered_form );
			}
		}

		if ( rest_is_field_included( 'instance', $fields ) ) {
			$widget_object = $wp_widget_factory->get_widget_object( $parsed_id['id_base'] );
			if ( $widget_object && isset( $parsed_id['number'] ) ) {
				$all_instances                   = $widget_object->get_settings();
				$instance                        = $all_instances[ $parsed_id['number'] ];
				$serialized_instance             = serialize( $instance );
				$prepared['instance']['encoded'] = base64_encode( $serialized_instance );
				$prepared['instance']['hash']    = wp_hash( $serialized_instance );

				if ( ! empty( $widget_object->widget_options['show_instance_in_rest'] ) ) {
					// Use new stdClass so that JSON result is {} and not [].
					$prepared['instance']['raw'] = empty( $instance ) ? new stdClass() : $instance;
				}
			}
		}

		$context  = ! empty( $request['context'] ) ? $request['context'] : 'view';
		$prepared = $this->add_additional_fields_to_object( $prepared, $request );
		$prepared = $this->filter_response_by_context( $prepared, $context );

		$response = rest_ensure_response( $prepared );

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_links( $this->prepare_links( $prepared ) );
		}

		/**
		 * Filters the REST API response for a widget.
		 *
		 * @since 5.8.0
		 *
		 * @param WP_REST_Response|WP_Error $response The response object, or WP_Error object on failure.
		 * @param array                     $widget   The registered widget data.
		 * @param WP_REST_Request           $request  Request used to generate the response.
		 */
		return apply_filters( 'rest_prepare_widget', $response, $widget, $request );
	}

	/**
	 * Prepares links for the widget.
	 *
	 * @since 5.8.0
	 *
	 * @param array $prepared Widget.
	 * @return array Links for the given widget.
	 */
	protected function prepare_links( $prepared ) {
		$id_base = ! empty( $prepared['id_base'] ) ? $prepared['id_base'] : $prepared['id'];

		return array(
			'self'                      => array(
				'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $prepared['id'] ) ),
			),
			'collection'                => array(
				'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ),
			),
			'about'                     => array(
				'href'       => rest_url( sprintf( 'wp/v2/widget-types/%s', $id_base ) ),
				'embeddable' => true,
			),
			'https://api.w.org/sidebar' => array(
				'href' => rest_url( sprintf( 'wp/v2/sidebars/%s/', $prepared['sidebar'] ) ),
			),
		);
	}

	/**
	 * Gets the list of collection params.
	 *
	 * @since 5.8.0
	 *
	 * @return array[]
	 */
	public function get_collection_params() {
		return array(
			'context' => $this->get_context_param( array( 'default' => 'view' ) ),
			'sidebar' => array(
				'description' => __( 'The sidebar to return widgets for.' ),
				'type'        => 'string',
			),
		);
	}

	/**
	 * Retrieves the widget's schema, conforming to JSON Schema.
	 *
	 * @since 5.8.0
	 *
	 * @return array Item schema data.
	 */
	public function get_item_schema() {
		if ( $this->schema ) {
			return $this->add_additional_fields_schema( $this->schema );
		}

		$this->schema = array(
			'$schema'    => 'http://json-schema.org/draft-04/schema#',
			'title'      => 'widget',
			'type'       => 'object',
			'properties' => array(
				'id'            => array(
					'description' => __( 'Unique identifier for the widget.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'id_base'       => array(
					'description' => __( 'The type of the widget. Corresponds to ID in widget-types endpoint.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'sidebar'       => array(
					'description' => __( 'The sidebar the widget belongs to.' ),
					'type'        => 'string',
					'default'     => 'wp_inactive_widgets',
					'required'    => true,
					'context'     => array( 'view', 'edit', 'embed' ),
				),
				'rendered'      => array(
					'description' => __( 'HTML representation of the widget.' ),
					'type'        => 'string',
					'context'     => array( 'view', 'edit', 'embed' ),
					'readonly'    => true,
				),
				'rendered_form' => array(
					'description' => __( 'HTML representation of the widget admin form.' ),
					'type'        => 'string',
					'context'     => array( 'edit' ),
					'readonly'    => true,
				),
				'instance'      => array(
					'description' => __( 'Instance settings of the widget, if supported.' ),
					'type'        => 'object',
					'context'     => array( 'edit' ),
					'default'     => null,
					'properties'  => array(
						'encoded' => array(
							'description' => __( 'Base64 encoded representation of the instance settings.' ),
							'type'        => 'string',
							'context'     => array( 'edit' ),
						),
						'hash'    => array(
							'description' => __( 'Cryptographic hash of the instance settings.' ),
							'type'        => 'string',
							'context'     => array( 'edit' ),
						),
						'raw'     => array(
							'description' => __( 'Unencoded instance settings, if supported.' ),
							'type'        => 'object',
							'context'     => array( 'edit' ),
						),
					),
				),
				'form_data'     => array(
					'description' => __( 'URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only.' ),
					'type'        => 'string',
					'context'     => array(),
					'arg_options' => array(
						'sanitize_callback' => static function ( $form_data ) {
							$array = array();
							wp_parse_str( $form_data, $array );
							return $array;
						},
					),
				),
			),
		);

		return $this->add_additional_fields_schema( $this->schema );
	}
}
error_log000064400000052070152222510010006453 0ustar00[17-Feb-2024 04:53:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[17-Feb-2024 06:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[31-Mar-2024 19:53:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[01-Apr-2024 16:12:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[29-Apr-2024 11:23:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[02-May-2024 20:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[06-May-2024 05:58:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[10-May-2024 18:21:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[11-May-2024 09:26:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[11-May-2024 16:43:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[12-Jul-2024 17:38:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[18-Jul-2024 16:50:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[07-Aug-2024 05:25:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[09-Aug-2024 07:00:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[09-Aug-2024 20:01:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[10-Aug-2024 21:21:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[19-Sep-2024 20:19:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[19-Sep-2024 20:29:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[10-Nov-2024 10:15:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[10-Nov-2024 11:34:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[16-Nov-2024 04:31:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[17-Nov-2024 02:02:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[19-Nov-2024 00:36:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[08-Dec-2024 16:28:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-Dec-2024 08:35:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[16-Jan-2025 07:46:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[02-Feb-2025 02:10:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[02-Feb-2025 02:35:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[22-Feb-2025 06:15:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[11-Mar-2025 11:44:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[29-Mar-2025 10:04:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-May-2025 09:49:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-May-2025 09:49:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-May-2025 09:49:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-May-2025 09:49:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 11:52:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 11:52:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 11:52:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 11:52:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 14:20:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 14:20:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 14:20:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-May-2025 14:20:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[01-Jul-2025 14:22:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[19-Jul-2025 09:19:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[03-Aug-2025 16:41:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[20-Aug-2025 23:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[21-Aug-2025 20:51:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[26-Aug-2025 06:25:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[27-Aug-2025 12:56:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[04-Sep-2025 00:41:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[06-Sep-2025 01:55:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[09-Sep-2025 17:43:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[14-Sep-2025 15:08:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[18-Sep-2025 17:02:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[19-Sep-2025 06:33:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[22-Sep-2025 12:41:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[25-Sep-2025 21:59:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[02-Oct-2025 10:41:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[02-Nov-2025 08:30:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[06-Dec-2025 18:47:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[23-Dec-2025 11:43:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[24-Dec-2025 14:57:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[04-Jan-2026 10:10:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[05-Jan-2026 18:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[06-Jan-2026 01:21:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[07-Jan-2026 04:24:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-Jan-2026 06:29:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[13-Jan-2026 23:57:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
[21-Feb-2026 02:57:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_HTTP_Response' not found in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/class-wp-rest-response.php on line 17
fields/class-wp-rest-term-meta-fields.php000064400000002331152222510010014351 0ustar00<?php
/**
 * REST API: WP_REST_Term_Meta_Fields class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage meta values for terms via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Meta_Fields
 */
class WP_REST_Term_Meta_Fields extends WP_REST_Meta_Fields {

	/**
	 * Taxonomy to register fields for.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $taxonomy;

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 *
	 * @param string $taxonomy Taxonomy to register fields for.
	 */
	public function __construct( $taxonomy ) {
		$this->taxonomy = $taxonomy;
	}

	/**
	 * Retrieves the term meta type.
	 *
	 * @since 4.7.0
	 *
	 * @return string The meta type.
	 */
	protected function get_meta_type() {
		return 'term';
	}

	/**
	 * Retrieves the term meta subtype.
	 *
	 * @since 4.9.8
	 *
	 * @return string Subtype for the meta type, or empty string if no specific subtype.
	 */
	protected function get_meta_subtype() {
		return $this->taxonomy;
	}

	/**
	 * Retrieves the type for register_rest_field().
	 *
	 * @since 4.7.0
	 *
	 * @return string The REST field type.
	 */
	public function get_rest_field_type() {
		return 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy;
	}
}
fields/class-wp-rest-user-meta-fields.php000064400000001530152222510010014360 0ustar00<?php
/**
 * REST API: WP_REST_User_Meta_Fields class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage meta values for users via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Meta_Fields
 */
class WP_REST_User_Meta_Fields extends WP_REST_Meta_Fields {

	/**
	 * Retrieves the user meta type.
	 *
	 * @since 4.7.0
	 *
	 * @return string The user meta type.
	 */
	protected function get_meta_type() {
		return 'user';
	}

	/**
	 * Retrieves the user meta subtype.
	 *
	 * @since 4.9.8
	 *
	 * @return string 'user' There are no subtypes.
	 */
	protected function get_meta_subtype() {
		return 'user';
	}

	/**
	 * Retrieves the type for register_rest_field().
	 *
	 * @since 4.7.0
	 *
	 * @return string The user REST field type.
	 */
	public function get_rest_field_type() {
		return 'user';
	}
}
fields/error_log000064400000430217152222510010007724 0ustar00[17-Feb-2024 04:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[17-Feb-2024 04:57:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[17-Feb-2024 04:57:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[17-Feb-2024 04:57:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[17-Feb-2024 06:34:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[17-Feb-2024 06:34:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[17-Feb-2024 06:34:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[17-Feb-2024 06:34:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Mar-2024 11:47:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Mar-2024 11:48:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Mar-2024 11:48:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Mar-2024 11:48:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Mar-2024 11:48:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Mar-2024 11:48:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Mar-2024 11:48:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Mar-2024 11:48:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Mar-2024 11:56:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Mar-2024 11:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Mar-2024 11:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Mar-2024 11:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Mar-2024 11:56:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Mar-2024 11:56:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Mar-2024 11:56:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Mar-2024 11:56:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[31-Mar-2024 19:58:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[31-Mar-2024 19:58:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[31-Mar-2024 19:58:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[31-Mar-2024 19:58:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[01-Apr-2024 16:17:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[01-Apr-2024 16:17:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[01-Apr-2024 16:17:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[01-Apr-2024 16:17:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[29-Apr-2024 11:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[29-Apr-2024 11:36:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[29-Apr-2024 11:36:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[29-Apr-2024 11:36:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-May-2024 20:59:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-May-2024 20:59:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-May-2024 20:59:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-May-2024 20:59:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-May-2024 06:02:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-May-2024 06:02:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-May-2024 06:02:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-May-2024 06:02:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[10-May-2024 18:30:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[10-May-2024 18:30:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[10-May-2024 18:30:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[10-May-2024 18:30:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[11-May-2024 09:41:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[11-May-2024 09:41:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[11-May-2024 09:41:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[11-May-2024 09:41:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[11-May-2024 16:49:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[11-May-2024 16:50:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[11-May-2024 16:50:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[11-May-2024 16:50:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[12-Jul-2024 17:47:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[12-Jul-2024 17:47:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[12-Jul-2024 17:47:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[12-Jul-2024 17:47:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[18-Jul-2024 16:57:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[18-Jul-2024 16:57:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[18-Jul-2024 16:57:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[18-Jul-2024 16:57:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[07-Aug-2024 05:29:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[07-Aug-2024 05:29:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[07-Aug-2024 05:29:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[07-Aug-2024 05:29:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[10-Aug-2024 21:28:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[10-Aug-2024 21:28:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[10-Aug-2024 21:28:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[10-Aug-2024 21:29:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Sep-2024 22:06:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Sep-2024 22:06:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Sep-2024 22:06:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Sep-2024 22:06:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Sep-2024 22:06:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Sep-2024 22:06:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Sep-2024 22:06:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Sep-2024 22:06:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Sep-2024 22:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Sep-2024 22:10:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Sep-2024 22:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Sep-2024 22:10:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Sep-2024 22:10:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Sep-2024 22:10:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Sep-2024 22:10:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Sep-2024 22:10:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Sep-2024 20:20:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Sep-2024 20:20:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[19-Sep-2024 20:20:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Sep-2024 20:20:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Sep-2024 20:29:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Sep-2024 20:29:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[19-Sep-2024 20:29:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Sep-2024 20:29:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[10-Nov-2024 10:22:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[10-Nov-2024 10:22:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[10-Nov-2024 10:22:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[10-Nov-2024 10:23:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[16-Nov-2024 04:31:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[16-Nov-2024 04:31:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[16-Nov-2024 04:31:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[17-Nov-2024 02:03:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[17-Nov-2024 02:03:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[17-Nov-2024 02:03:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[17-Nov-2024 02:03:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Nov-2024 00:36:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Nov-2024 00:36:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Nov-2024 00:36:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Nov-2024 00:36:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Dec-2024 16:33:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[08-Dec-2024 16:34:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Dec-2024 16:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[08-Dec-2024 16:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Dec-2024 08:36:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Dec-2024 08:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Dec-2024 08:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Dec-2024 08:36:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[16-Jan-2025 07:47:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[16-Jan-2025 07:47:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[16-Jan-2025 07:47:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[16-Jan-2025 07:47:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Feb-2025 02:12:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Feb-2025 02:12:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Feb-2025 02:12:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Feb-2025 02:12:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Feb-2025 02:36:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Feb-2025 02:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Feb-2025 02:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Feb-2025 02:36:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Feb-2025 06:15:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Feb-2025 06:15:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Feb-2025 06:15:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Feb-2025 06:15:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[11-Mar-2025 11:55:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[11-Mar-2025 11:56:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[11-Mar-2025 11:56:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[11-Mar-2025 11:56:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[29-Mar-2025 10:04:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[29-Mar-2025 10:04:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[29-Mar-2025 10:04:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[29-Mar-2025 10:04:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-May-2025 09:51:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-May-2025 09:51:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-May-2025 09:51:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-May-2025 09:51:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-May-2025 09:51:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-May-2025 09:51:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-May-2025 09:51:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-May-2025 09:52:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-May-2025 09:52:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-May-2025 09:52:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-May-2025 09:52:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-May-2025 09:52:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-May-2025 09:52:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[13-May-2025 09:52:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[13-May-2025 09:52:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[13-May-2025 09:52:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 11:52:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 11:52:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 11:52:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 11:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 11:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 11:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 11:52:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 11:52:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 11:52:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 11:52:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 11:52:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 11:52:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 11:52:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 11:52:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 11:52:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 11:52:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 14:20:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 14:20:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 14:20:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 14:20:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-May-2025 14:20:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 14:20:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 14:20:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 14:20:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-May-2025 14:20:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 14:20:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 14:20:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 14:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-May-2025 14:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 14:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 14:21:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-May-2025 14:21:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[18-Jun-2025 16:54:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[18-Jun-2025 16:54:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[18-Jun-2025 16:54:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[18-Jun-2025 16:54:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[01-Jul-2025 14:23:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[01-Jul-2025 14:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[01-Jul-2025 14:23:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[01-Jul-2025 14:23:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Jul-2025 09:19:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Jul-2025 09:19:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Jul-2025 09:19:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Jul-2025 09:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Aug-2025 11:07:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[08-Aug-2025 11:08:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[08-Aug-2025 11:08:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Aug-2025 11:08:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Aug-2025 11:08:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[08-Aug-2025 11:08:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[08-Aug-2025 11:08:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[08-Aug-2025 11:08:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[08-Aug-2025 12:05:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[08-Aug-2025 12:06:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[08-Aug-2025 12:06:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Aug-2025 12:06:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[08-Aug-2025 12:06:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[08-Aug-2025 12:06:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[08-Aug-2025 12:06:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[08-Aug-2025 12:06:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Aug-2025 05:17:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Aug-2025 05:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Aug-2025 05:17:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Aug-2025 05:17:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Aug-2025 05:17:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Aug-2025 05:17:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Aug-2025 05:17:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Aug-2025 05:17:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Aug-2025 05:53:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Aug-2025 05:53:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Aug-2025 05:53:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Aug-2025 05:53:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Aug-2025 05:53:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Aug-2025 05:53:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Aug-2025 05:54:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Aug-2025 05:54:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[20-Aug-2025 23:23:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[20-Aug-2025 23:23:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[20-Aug-2025 23:23:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[20-Aug-2025 23:23:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[21-Aug-2025 21:00:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[21-Aug-2025 21:00:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[21-Aug-2025 21:00:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[21-Aug-2025 21:01:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Aug-2025 20:46:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Aug-2025 20:47:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Aug-2025 20:47:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Aug-2025 20:47:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Aug-2025 20:47:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Aug-2025 20:47:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Aug-2025 20:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Aug-2025 20:47:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Aug-2025 21:05:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Aug-2025 21:05:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Aug-2025 21:05:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Aug-2025 21:06:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Aug-2025 21:06:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Aug-2025 21:06:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Aug-2025 21:06:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Aug-2025 21:06:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[26-Aug-2025 06:26:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[26-Aug-2025 06:26:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[26-Aug-2025 06:26:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[26-Aug-2025 06:26:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[26-Aug-2025 06:35:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[26-Aug-2025 06:35:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[26-Aug-2025 06:35:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[26-Aug-2025 06:35:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[27-Aug-2025 13:09:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[27-Aug-2025 13:10:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[27-Aug-2025 13:11:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[27-Aug-2025 13:11:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[27-Aug-2025 15:18:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[27-Aug-2025 15:18:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[27-Aug-2025 15:19:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[27-Aug-2025 15:19:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[04-Sep-2025 00:42:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[04-Sep-2025 00:42:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[04-Sep-2025 00:42:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[04-Sep-2025 00:42:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[04-Sep-2025 01:00:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[04-Sep-2025 01:00:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[04-Sep-2025 01:00:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[04-Sep-2025 01:00:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Sep-2025 01:55:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Sep-2025 01:55:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Sep-2025 01:55:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Sep-2025 01:55:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Sep-2025 02:03:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Sep-2025 02:03:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Sep-2025 02:03:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Sep-2025 02:03:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[09-Sep-2025 17:44:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[09-Sep-2025 17:44:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[09-Sep-2025 17:44:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[09-Sep-2025 17:44:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[09-Sep-2025 17:56:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[09-Sep-2025 17:56:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[09-Sep-2025 17:56:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[09-Sep-2025 17:56:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Sep-2025 15:08:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Sep-2025 15:08:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Sep-2025 15:08:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Sep-2025 15:08:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Sep-2025 15:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Sep-2025 15:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Sep-2025 15:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Sep-2025 15:17:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[18-Sep-2025 17:03:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[18-Sep-2025 17:03:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[18-Sep-2025 17:03:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[18-Sep-2025 17:03:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[18-Sep-2025 17:15:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[18-Sep-2025 17:15:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[18-Sep-2025 17:15:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[18-Sep-2025 17:15:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Sep-2025 06:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Sep-2025 06:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[19-Sep-2025 06:34:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Sep-2025 06:34:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[19-Sep-2025 06:47:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[19-Sep-2025 06:47:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[19-Sep-2025 06:47:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[19-Sep-2025 06:47:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Sep-2025 12:42:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Sep-2025 12:42:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Sep-2025 12:42:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Sep-2025 12:43:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[22-Sep-2025 12:57:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[22-Sep-2025 12:57:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[22-Sep-2025 12:57:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[22-Sep-2025 12:57:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[25-Sep-2025 21:59:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[25-Sep-2025 21:59:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[25-Sep-2025 21:59:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[25-Sep-2025 22:00:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[25-Sep-2025 22:12:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[25-Sep-2025 22:12:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[25-Sep-2025 22:12:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[25-Sep-2025 22:12:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Oct-2025 10:41:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Oct-2025 10:41:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Oct-2025 10:41:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Oct-2025 10:41:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Oct-2025 10:49:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Oct-2025 10:49:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Oct-2025 10:49:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Oct-2025 10:49:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Nov-2025 08:30:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Nov-2025 08:30:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Nov-2025 08:30:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Nov-2025 08:30:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[02-Nov-2025 08:40:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[02-Nov-2025 08:40:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[02-Nov-2025 08:40:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[02-Nov-2025 08:40:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Dec-2025 18:47:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Dec-2025 18:47:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Dec-2025 18:47:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Dec-2025 18:47:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Dec-2025 18:58:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Dec-2025 18:58:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Dec-2025 18:58:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Dec-2025 18:58:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[23-Dec-2025 11:44:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[23-Dec-2025 11:44:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[23-Dec-2025 11:44:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[23-Dec-2025 11:44:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[23-Dec-2025 12:01:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[23-Dec-2025 12:01:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[23-Dec-2025 12:01:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[23-Dec-2025 12:01:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Dec-2025 14:59:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Dec-2025 14:59:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Dec-2025 14:59:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Dec-2025 14:59:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[24-Dec-2025 15:21:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[24-Dec-2025 15:21:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[24-Dec-2025 15:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[24-Dec-2025 15:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[04-Jan-2026 10:10:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[04-Jan-2026 10:10:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[04-Jan-2026 10:10:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[04-Jan-2026 10:10:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[04-Jan-2026 10:19:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[04-Jan-2026 10:19:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[04-Jan-2026 10:19:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[04-Jan-2026 10:19:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[05-Jan-2026 18:33:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[05-Jan-2026 18:33:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[05-Jan-2026 18:33:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[05-Jan-2026 18:33:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Jan-2026 01:22:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Jan-2026 01:22:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Jan-2026 01:22:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Jan-2026 01:22:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[06-Jan-2026 01:34:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[06-Jan-2026 01:34:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[06-Jan-2026 01:34:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[06-Jan-2026 01:34:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[07-Jan-2026 04:24:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[07-Jan-2026 04:24:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[07-Jan-2026 04:24:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[07-Jan-2026 04:24:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-Jan-2026 06:29:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-Jan-2026 06:29:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-Jan-2026 06:29:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-Jan-2026 06:29:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[13-Jan-2026 23:59:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[13-Jan-2026 23:59:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[13-Jan-2026 23:59:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[13-Jan-2026 23:59:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[14-Jan-2026 00:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[14-Jan-2026 00:16:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[14-Jan-2026 00:16:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[14-Jan-2026 00:16:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
[21-Feb-2026 02:57:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php on line 17
[21-Feb-2026 02:57:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php on line 17
[21-Feb-2026 02:57:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php on line 17
[21-Feb-2026 02:57:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_REST_Meta_Fields' not found in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php:17
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php on line 17
fields/.htaccess000064400000000000152222510010007564 0ustar00fields/class-wp-rest-comment-meta-fields.php000064400000001577152222510010015057 0ustar00<?php
/**
 * REST API: WP_REST_Comment_Meta_Fields class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class to manage comment meta via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Meta_Fields
 */
class WP_REST_Comment_Meta_Fields extends WP_REST_Meta_Fields {

	/**
	 * Retrieves the comment type for comment meta.
	 *
	 * @since 4.7.0
	 *
	 * @return string The meta type.
	 */
	protected function get_meta_type() {
		return 'comment';
	}

	/**
	 * Retrieves the comment meta subtype.
	 *
	 * @since 4.9.8
	 *
	 * @return string 'comment' There are no subtypes.
	 */
	protected function get_meta_subtype() {
		return 'comment';
	}

	/**
	 * Retrieves the type for register_rest_field() in the context of comments.
	 *
	 * @since 4.7.0
	 *
	 * @return string The REST field type.
	 */
	public function get_rest_field_type() {
		return 'comment';
	}
}
fields/class-wp-rest-post-meta-fields.php000064400000002334152222510010014372 0ustar00<?php
/**
 * REST API: WP_REST_Post_Meta_Fields class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class used to manage meta values for posts via the REST API.
 *
 * @since 4.7.0
 *
 * @see WP_REST_Meta_Fields
 */
class WP_REST_Post_Meta_Fields extends WP_REST_Meta_Fields {

	/**
	 * Post type to register fields for.
	 *
	 * @since 4.7.0
	 * @var string
	 */
	protected $post_type;

	/**
	 * Constructor.
	 *
	 * @since 4.7.0
	 *
	 * @param string $post_type Post type to register fields for.
	 */
	public function __construct( $post_type ) {
		$this->post_type = $post_type;
	}

	/**
	 * Retrieves the post meta type.
	 *
	 * @since 4.7.0
	 *
	 * @return string The meta type.
	 */
	protected function get_meta_type() {
		return 'post';
	}

	/**
	 * Retrieves the post meta subtype.
	 *
	 * @since 4.9.8
	 *
	 * @return string Subtype for the meta type, or empty string if no specific subtype.
	 */
	protected function get_meta_subtype() {
		return $this->post_type;
	}

	/**
	 * Retrieves the type for register_rest_field().
	 *
	 * @since 4.7.0
	 *
	 * @see register_rest_field()
	 *
	 * @return string The REST field type.
	 */
	public function get_rest_field_type() {
		return $this->post_type;
	}
}
fields/class-wp-rest-meta-fields.php000064400000044122152222510010013410 0ustar00<?php
/**
 * REST API: WP_REST_Meta_Fields class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.7.0
 */

/**
 * Core class to manage meta values for an object via the REST API.
 *
 * @since 4.7.0
 */
#[AllowDynamicProperties]
abstract class WP_REST_Meta_Fields {

	/**
	 * Retrieves the object meta type.
	 *
	 * @since 4.7.0
	 *
	 * @return string One of 'post', 'comment', 'term', 'user', or anything
	 *                else supported by `_get_meta_table()`.
	 */
	abstract protected function get_meta_type();

	/**
	 * Retrieves the object meta subtype.
	 *
	 * @since 4.9.8
	 *
	 * @return string Subtype for the meta type, or empty string if no specific subtype.
	 */
	protected function get_meta_subtype() {
		return '';
	}

	/**
	 * Retrieves the object type for register_rest_field().
	 *
	 * @since 4.7.0
	 *
	 * @return string The REST field type, such as post type name, taxonomy name, 'comment', or `user`.
	 */
	abstract protected function get_rest_field_type();

	/**
	 * Registers the meta field.
	 *
	 * @since 4.7.0
	 * @deprecated 5.6.0
	 *
	 * @see register_rest_field()
	 */
	public function register_field() {
		_deprecated_function( __METHOD__, '5.6.0' );

		register_rest_field(
			$this->get_rest_field_type(),
			'meta',
			array(
				'get_callback'    => array( $this, 'get_value' ),
				'update_callback' => array( $this, 'update_value' ),
				'schema'          => $this->get_field_schema(),
			)
		);
	}

	/**
	 * Retrieves the meta field value.
	 *
	 * @since 4.7.0
	 *
	 * @param int             $object_id Object ID to fetch meta for.
	 * @param WP_REST_Request $request   Full details about the request.
	 * @return array Array containing the meta values keyed by name.
	 */
	public function get_value( $object_id, $request ) {
		$fields   = $this->get_registered_fields();
		$response = array();

		foreach ( $fields as $meta_key => $args ) {
			$name       = $args['name'];
			$all_values = get_metadata( $this->get_meta_type(), $object_id, $meta_key, false );

			if ( $args['single'] ) {
				if ( empty( $all_values ) ) {
					$value = $args['schema']['default'];
				} else {
					$value = $all_values[0];
				}

				$value = $this->prepare_value_for_response( $value, $request, $args );
			} else {
				$value = array();

				if ( is_array( $all_values ) ) {
					foreach ( $all_values as $row ) {
						$value[] = $this->prepare_value_for_response( $row, $request, $args );
					}
				}
			}

			$response[ $name ] = $value;
		}

		return $response;
	}

	/**
	 * Prepares a meta value for a response.
	 *
	 * This is required because some native types cannot be stored correctly
	 * in the database, such as booleans. We need to cast back to the relevant
	 * type before passing back to JSON.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed           $value   Meta value to prepare.
	 * @param WP_REST_Request $request Current request object.
	 * @param array           $args    Options for the field.
	 * @return mixed Prepared value.
	 */
	protected function prepare_value_for_response( $value, $request, $args ) {
		if ( ! empty( $args['prepare_callback'] ) ) {
			$value = call_user_func( $args['prepare_callback'], $value, $request, $args );
		}

		return $value;
	}

	/**
	 * Updates meta values.
	 *
	 * @since 4.7.0
	 *
	 * @param array $meta      Array of meta parsed from the request.
	 * @param int   $object_id Object ID to fetch meta for.
	 * @return null|WP_Error Null on success, WP_Error object on failure.
	 */
	public function update_value( $meta, $object_id ) {
		$fields = $this->get_registered_fields();
		$error  = new WP_Error();

		foreach ( $fields as $meta_key => $args ) {
			$name = $args['name'];
			if ( ! array_key_exists( $name, $meta ) ) {
				continue;
			}

			$value = $meta[ $name ];

			/*
			 * A null value means reset the field, which is essentially deleting it
			 * from the database and then relying on the default value.
			 *
			 * Non-single meta can also be removed by passing an empty array.
			 */
			if ( is_null( $value ) || ( array() === $value && ! $args['single'] ) ) {
				$args = $this->get_registered_fields()[ $meta_key ];

				if ( $args['single'] ) {
					$current = get_metadata( $this->get_meta_type(), $object_id, $meta_key, true );

					if ( is_wp_error( rest_validate_value_from_schema( $current, $args['schema'] ) ) ) {
						$error->add(
							'rest_invalid_stored_value',
							/* translators: %s: Custom field key. */
							sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ),
							array( 'status' => 500 )
						);
						continue;
					}
				}

				$result = $this->delete_meta_value( $object_id, $meta_key, $name );
				if ( is_wp_error( $result ) ) {
					$error->merge_from( $result );
				}
				continue;
			}

			if ( ! $args['single'] && is_array( $value ) && count( array_filter( $value, 'is_null' ) ) ) {
				$error->add(
					'rest_invalid_stored_value',
					/* translators: %s: Custom field key. */
					sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ),
					array( 'status' => 500 )
				);
				continue;
			}

			$is_valid = rest_validate_value_from_schema( $value, $args['schema'], 'meta.' . $name );
			if ( is_wp_error( $is_valid ) ) {
				$is_valid->add_data( array( 'status' => 400 ) );
				$error->merge_from( $is_valid );
				continue;
			}

			$value = rest_sanitize_value_from_schema( $value, $args['schema'] );

			if ( $args['single'] ) {
				$result = $this->update_meta_value( $object_id, $meta_key, $name, $value );
			} else {
				$result = $this->update_multi_meta_value( $object_id, $meta_key, $name, $value );
			}

			if ( is_wp_error( $result ) ) {
				$error->merge_from( $result );
				continue;
			}
		}

		if ( $error->has_errors() ) {
			return $error;
		}

		return null;
	}

	/**
	 * Deletes a meta value for an object.
	 *
	 * @since 4.7.0
	 *
	 * @param int    $object_id Object ID the field belongs to.
	 * @param string $meta_key  Key for the field.
	 * @param string $name      Name for the field that is exposed in the REST API.
	 * @return true|WP_Error True if meta field is deleted, WP_Error otherwise.
	 */
	protected function delete_meta_value( $object_id, $meta_key, $name ) {
		$meta_type = $this->get_meta_type();

		if ( ! current_user_can( "delete_{$meta_type}_meta", $object_id, $meta_key ) ) {
			return new WP_Error(
				'rest_cannot_delete',
				/* translators: %s: Custom field key. */
				sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
				array(
					'key'    => $name,
					'status' => rest_authorization_required_code(),
				)
			);
		}

		if ( null === get_metadata_raw( $meta_type, $object_id, wp_slash( $meta_key ) ) ) {
			return true;
		}

		if ( ! delete_metadata( $meta_type, $object_id, wp_slash( $meta_key ) ) ) {
			return new WP_Error(
				'rest_meta_database_error',
				__( 'Could not delete meta value from database.' ),
				array(
					'key'    => $name,
					'status' => WP_Http::INTERNAL_SERVER_ERROR,
				)
			);
		}

		return true;
	}

	/**
	 * Updates multiple meta values for an object.
	 *
	 * Alters the list of values in the database to match the list of provided values.
	 *
	 * @since 4.7.0
	 * @since 6.7.0 Stores values into DB even if provided registered default value.
	 *
	 * @param int    $object_id Object ID to update.
	 * @param string $meta_key  Key for the custom field.
	 * @param string $name      Name for the field that is exposed in the REST API.
	 * @param array  $values    List of values to update to.
	 * @return true|WP_Error True if meta fields are updated, WP_Error otherwise.
	 */
	protected function update_multi_meta_value( $object_id, $meta_key, $name, $values ) {
		$meta_type = $this->get_meta_type();

		if ( ! current_user_can( "edit_{$meta_type}_meta", $object_id, $meta_key ) ) {
			return new WP_Error(
				'rest_cannot_update',
				/* translators: %s: Custom field key. */
				sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
				array(
					'key'    => $name,
					'status' => rest_authorization_required_code(),
				)
			);
		}

		$current_values = get_metadata_raw( $meta_type, $object_id, $meta_key, false );
		$subtype        = get_object_subtype( $meta_type, $object_id );

		if ( ! is_array( $current_values ) ) {
			$current_values = array();
		}

		$to_remove = $current_values;
		$to_add    = $values;

		foreach ( $to_add as $add_key => $value ) {
			$remove_keys = array_keys(
				array_filter(
					$current_values,
					function ( $stored_value ) use ( $meta_key, $subtype, $value ) {
						return $this->is_meta_value_same_as_stored_value( $meta_key, $subtype, $stored_value, $value );
					}
				)
			);

			if ( empty( $remove_keys ) ) {
				continue;
			}

			if ( count( $remove_keys ) > 1 ) {
				// To remove, we need to remove first, then add, so don't touch.
				continue;
			}

			$remove_key = $remove_keys[0];

			unset( $to_remove[ $remove_key ] );
			unset( $to_add[ $add_key ] );
		}

		/*
		 * `delete_metadata` removes _all_ instances of the value, so only call once. Otherwise,
		 * `delete_metadata` will return false for subsequent calls of the same value.
		 * Use serialization to produce a predictable string that can be used by array_unique.
		 */
		$to_remove = array_map( 'maybe_unserialize', array_unique( array_map( 'maybe_serialize', $to_remove ) ) );

		foreach ( $to_remove as $value ) {
			if ( ! delete_metadata( $meta_type, $object_id, wp_slash( $meta_key ), wp_slash( $value ) ) ) {
				return new WP_Error(
					'rest_meta_database_error',
					/* translators: %s: Custom field key. */
					sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
					array(
						'key'    => $name,
						'status' => WP_Http::INTERNAL_SERVER_ERROR,
					)
				);
			}
		}

		foreach ( $to_add as $value ) {
			if ( ! add_metadata( $meta_type, $object_id, wp_slash( $meta_key ), wp_slash( $value ) ) ) {
				return new WP_Error(
					'rest_meta_database_error',
					/* translators: %s: Custom field key. */
					sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
					array(
						'key'    => $name,
						'status' => WP_Http::INTERNAL_SERVER_ERROR,
					)
				);
			}
		}

		return true;
	}

	/**
	 * Updates a meta value for an object.
	 *
	 * @since 4.7.0
	 * @since 6.7.0 Stores values into DB even if provided registered default value.
	 *
	 * @param int    $object_id Object ID to update.
	 * @param string $meta_key  Key for the custom field.
	 * @param string $name      Name for the field that is exposed in the REST API.
	 * @param mixed  $value     Updated value.
	 * @return true|WP_Error True if the meta field was updated, WP_Error otherwise.
	 */
	protected function update_meta_value( $object_id, $meta_key, $name, $value ) {
		$meta_type = $this->get_meta_type();

		// Do the exact same check for a duplicate value as in update_metadata() to avoid update_metadata() returning false.
		$old_value = get_metadata_raw( $meta_type, $object_id, $meta_key );
		$subtype   = get_object_subtype( $meta_type, $object_id );

		if ( is_array( $old_value ) && 1 === count( $old_value )
			&& $this->is_meta_value_same_as_stored_value( $meta_key, $subtype, $old_value[0], $value )
		) {
			return true;
		}

		if ( ! current_user_can( "edit_{$meta_type}_meta", $object_id, $meta_key ) ) {
			return new WP_Error(
				'rest_cannot_update',
				/* translators: %s: Custom field key. */
				sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
				array(
					'key'    => $name,
					'status' => rest_authorization_required_code(),
				)
			);
		}

		if ( ! update_metadata( $meta_type, $object_id, wp_slash( $meta_key ), wp_slash( $value ) ) ) {
			return new WP_Error(
				'rest_meta_database_error',
				/* translators: %s: Custom field key. */
				sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
				array(
					'key'    => $name,
					'status' => WP_Http::INTERNAL_SERVER_ERROR,
				)
			);
		}

		return true;
	}

	/**
	 * Checks if the user provided value is equivalent to a stored value for the given meta key.
	 *
	 * @since 5.5.0
	 *
	 * @param string $meta_key     The meta key being checked.
	 * @param string $subtype      The object subtype.
	 * @param mixed  $stored_value The currently stored value retrieved from get_metadata().
	 * @param mixed  $user_value   The value provided by the user.
	 * @return bool
	 */
	protected function is_meta_value_same_as_stored_value( $meta_key, $subtype, $stored_value, $user_value ) {
		$args      = $this->get_registered_fields()[ $meta_key ];
		$sanitized = sanitize_meta( $meta_key, $user_value, $this->get_meta_type(), $subtype );

		if ( in_array( $args['type'], array( 'string', 'number', 'integer', 'boolean' ), true ) ) {
			// The return value of get_metadata will always be a string for scalar types.
			$sanitized = (string) $sanitized;
		}

		return $sanitized === $stored_value;
	}

	/**
	 * Retrieves all the registered meta fields.
	 *
	 * @since 4.7.0
	 *
	 * @return array Registered fields.
	 */
	protected function get_registered_fields() {
		$registered = array();

		$meta_type    = $this->get_meta_type();
		$meta_subtype = $this->get_meta_subtype();

		$meta_keys = get_registered_meta_keys( $meta_type );
		if ( ! empty( $meta_subtype ) ) {
			$meta_keys = array_merge( $meta_keys, get_registered_meta_keys( $meta_type, $meta_subtype ) );
		}

		foreach ( $meta_keys as $name => $args ) {
			if ( empty( $args['show_in_rest'] ) ) {
				continue;
			}

			$rest_args = array();

			if ( is_array( $args['show_in_rest'] ) ) {
				$rest_args = $args['show_in_rest'];
			}

			$default_args = array(
				'name'             => $name,
				'single'           => $args['single'],
				'type'             => ! empty( $args['type'] ) ? $args['type'] : null,
				'schema'           => array(),
				'prepare_callback' => array( $this, 'prepare_value' ),
			);

			$default_schema = array(
				'type'        => $default_args['type'],
				'title'       => empty( $args['label'] ) ? '' : $args['label'],
				'description' => empty( $args['description'] ) ? '' : $args['description'],
				'default'     => isset( $args['default'] ) ? $args['default'] : null,
			);

			$rest_args           = array_merge( $default_args, $rest_args );
			$rest_args['schema'] = array_merge( $default_schema, $rest_args['schema'] );

			$type = ! empty( $rest_args['type'] ) ? $rest_args['type'] : null;
			$type = ! empty( $rest_args['schema']['type'] ) ? $rest_args['schema']['type'] : $type;

			if ( null === $rest_args['schema']['default'] ) {
				$rest_args['schema']['default'] = static::get_empty_value_for_type( $type );
			}

			$rest_args['schema'] = rest_default_additional_properties_to_false( $rest_args['schema'] );

			if ( ! in_array( $type, array( 'string', 'boolean', 'integer', 'number', 'array', 'object' ), true ) ) {
				continue;
			}

			if ( empty( $rest_args['single'] ) ) {
				$rest_args['schema'] = array(
					'type'  => 'array',
					'items' => $rest_args['schema'],
				);
			}

			$registered[ $name ] = $rest_args;
		}

		return $registered;
	}

	/**
	 * Retrieves the object's meta schema, conforming to JSON Schema.
	 *
	 * @since 4.7.0
	 *
	 * @return array Field schema data.
	 */
	public function get_field_schema() {
		$fields = $this->get_registered_fields();

		$schema = array(
			'description' => __( 'Meta fields.' ),
			'type'        => 'object',
			'context'     => array( 'view', 'edit' ),
			'properties'  => array(),
			'arg_options' => array(
				'sanitize_callback' => null,
				'validate_callback' => array( $this, 'check_meta_is_array' ),
			),
		);

		foreach ( $fields as $args ) {
			$schema['properties'][ $args['name'] ] = $args['schema'];
		}

		return $schema;
	}

	/**
	 * Prepares a meta value for output.
	 *
	 * Default preparation for meta fields. Override by passing the
	 * `prepare_callback` in your `show_in_rest` options.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed           $value   Meta value from the database.
	 * @param WP_REST_Request $request Request object.
	 * @param array           $args    REST-specific options for the meta key.
	 * @return mixed Value prepared for output. If a non-JsonSerializable object, null.
	 */
	public static function prepare_value( $value, $request, $args ) {
		if ( $args['single'] ) {
			$schema = $args['schema'];
		} else {
			$schema = $args['schema']['items'];
		}

		if ( '' === $value && in_array( $schema['type'], array( 'boolean', 'integer', 'number' ), true ) ) {
			$value = static::get_empty_value_for_type( $schema['type'] );
		}

		if ( is_wp_error( rest_validate_value_from_schema( $value, $schema ) ) ) {
			return null;
		}

		return rest_sanitize_value_from_schema( $value, $schema );
	}

	/**
	 * Check the 'meta' value of a request is an associative array.
	 *
	 * @since 4.7.0
	 *
	 * @param mixed           $value   The meta value submitted in the request.
	 * @param WP_REST_Request $request Full details about the request.
	 * @param string          $param   The parameter name.
	 * @return array|false The meta array, if valid, false otherwise.
	 */
	public function check_meta_is_array( $value, $request, $param ) {
		if ( ! is_array( $value ) ) {
			return false;
		}

		return $value;
	}

	/**
	 * Recursively add additionalProperties = false to all objects in a schema if no additionalProperties setting
	 * is specified.
	 *
	 * This is needed to restrict properties of objects in meta values to only
	 * registered items, as the REST API will allow additional properties by
	 * default.
	 *
	 * @since 5.3.0
	 * @deprecated 5.6.0 Use rest_default_additional_properties_to_false() instead.
	 *
	 * @param array $schema The schema array.
	 * @return array
	 */
	protected function default_additional_properties_to_false( $schema ) {
		_deprecated_function( __METHOD__, '5.6.0', 'rest_default_additional_properties_to_false()' );

		return rest_default_additional_properties_to_false( $schema );
	}

	/**
	 * Gets the empty value for a schema type.
	 *
	 * @since 5.3.0
	 *
	 * @param string $type The schema type.
	 * @return mixed
	 */
	protected static function get_empty_value_for_type( $type ) {
		switch ( $type ) {
			case 'string':
				return '';
			case 'boolean':
				return false;
			case 'integer':
				return 0;
			case 'number':
				return 0.0;
			case 'array':
			case 'object':
				return array();
			default:
				return null;
		}
	}
}
class-wp-rest-server.php000064400000161255152222510010011265 0ustar00<?php
/**
 * REST API: WP_REST_Server class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.4.0
 */

/**
 * Core class used to implement the WordPress REST API server.
 *
 * @since 4.4.0
 */
#[AllowDynamicProperties]
class WP_REST_Server {

	/**
	 * Alias for GET transport method.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	const READABLE = 'GET';

	/**
	 * Alias for POST transport method.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	const CREATABLE = 'POST';

	/**
	 * Alias for POST, PUT, PATCH transport methods together.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	const EDITABLE = 'POST, PUT, PATCH';

	/**
	 * Alias for DELETE transport method.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	const DELETABLE = 'DELETE';

	/**
	 * Alias for GET, POST, PUT, PATCH & DELETE transport methods together.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	const ALLMETHODS = 'GET, POST, PUT, PATCH, DELETE';

	/**
	 * Namespaces registered to the server.
	 *
	 * @since 4.4.0
	 * @var array
	 */
	protected $namespaces = array();

	/**
	 * Endpoints registered to the server.
	 *
	 * @since 4.4.0
	 * @var array
	 */
	protected $endpoints = array();

	/**
	 * Options defined for the routes.
	 *
	 * @since 4.4.0
	 * @var array
	 */
	protected $route_options = array();

	/**
	 * Caches embedded requests.
	 *
	 * @since 5.4.0
	 * @var array
	 */
	protected $embed_cache = array();

	/**
	 * Stores request objects that are currently being handled.
	 *
	 * @since 6.5.0
	 * @var array
	 */
	protected $dispatching_requests = array();

	/**
	 * Instantiates the REST server.
	 *
	 * @since 4.4.0
	 */
	public function __construct() {
		$this->endpoints = array(
			// Meta endpoints.
			'/'         => array(
				'callback' => array( $this, 'get_index' ),
				'methods'  => 'GET',
				'args'     => array(
					'context' => array(
						'default' => 'view',
					),
				),
			),
			'/batch/v1' => array(
				'callback' => array( $this, 'serve_batch_request_v1' ),
				'methods'  => 'POST',
				'args'     => array(
					'validation' => array(
						'type'    => 'string',
						'enum'    => array( 'require-all-validate', 'normal' ),
						'default' => 'normal',
					),
					'requests'   => array(
						'required' => true,
						'type'     => 'array',
						'maxItems' => $this->get_max_batch_size(),
						'items'    => array(
							'type'       => 'object',
							'properties' => array(
								'method'  => array(
									'type'    => 'string',
									'enum'    => array( 'POST', 'PUT', 'PATCH', 'DELETE' ),
									'default' => 'POST',
								),
								'path'    => array(
									'type'     => 'string',
									'required' => true,
								),
								'body'    => array(
									'type'                 => 'object',
									'properties'           => array(),
									'additionalProperties' => true,
								),
								'headers' => array(
									'type'                 => 'object',
									'properties'           => array(),
									'additionalProperties' => array(
										'type'  => array( 'string', 'array' ),
										'items' => array(
											'type' => 'string',
										),
									),
								),
							),
						),
					),
				),
			),
		);
	}


	/**
	 * Checks the authentication headers if supplied.
	 *
	 * @since 4.4.0
	 *
	 * @return WP_Error|null|true WP_Error if authentication error occurred, null if authentication
	 *                            method wasn't used, true if authentication succeeded.
	 */
	public function check_authentication() {
		/**
		 * Filters REST API authentication errors.
		 *
		 * This is used to pass a WP_Error from an authentication method back to
		 * the API.
		 *
		 * Authentication methods should check first if they're being used, as
		 * multiple authentication methods can be enabled on a site (cookies,
		 * HTTP basic auth, OAuth). If the authentication method hooked in is
		 * not actually being attempted, null should be returned to indicate
		 * another authentication method should check instead. Similarly,
		 * callbacks should ensure the value is `null` before checking for
		 * errors.
		 *
		 * A WP_Error instance can be returned if an error occurs, and this should
		 * match the format used by API methods internally (that is, the `status`
		 * data should be used). A callback can return `true` to indicate that
		 * the authentication method was used, and it succeeded.
		 *
		 * @since 4.4.0
		 *
		 * @param WP_Error|null|true $errors WP_Error if authentication error occurred, null if authentication
		 *                                   method wasn't used, true if authentication succeeded.
		 */
		return apply_filters( 'rest_authentication_errors', null );
	}

	/**
	 * Converts an error to a response object.
	 *
	 * This iterates over all error codes and messages to change it into a flat
	 * array. This enables simpler client behavior, as it is represented as a
	 * list in JSON rather than an object/map.
	 *
	 * @since 4.4.0
	 * @since 5.7.0 Converted to a wrapper of {@see rest_convert_error_to_response()}.
	 *
	 * @param WP_Error $error WP_Error instance.
	 * @return WP_REST_Response List of associative arrays with code and message keys.
	 */
	protected function error_to_response( $error ) {
		return rest_convert_error_to_response( $error );
	}

	/**
	 * Retrieves an appropriate error representation in JSON.
	 *
	 * Note: This should only be used in WP_REST_Server::serve_request(), as it
	 * cannot handle WP_Error internally. All callbacks and other internal methods
	 * should instead return a WP_Error with the data set to an array that includes
	 * a 'status' key, with the value being the HTTP status to send.
	 *
	 * @since 4.4.0
	 *
	 * @param string   $code    WP_Error-style code.
	 * @param string   $message Human-readable message.
	 * @param int|null $status  Optional. HTTP status code to send. Default null.
	 * @return string JSON representation of the error.
	 */
	protected function json_error( $code, $message, $status = null ) {
		if ( $status ) {
			$this->set_status( $status );
		}

		$error = compact( 'code', 'message' );

		return wp_json_encode( $error );
	}

	/**
	 * Gets the encoding options passed to {@see wp_json_encode}.
	 *
	 * @since 6.1.0
	 *
	 * @param \WP_REST_Request $request The current request object.
	 *
	 * @return int The JSON encode options.
	 */
	protected function get_json_encode_options( WP_REST_Request $request ) {
		$options = 0;

		if ( $request->has_param( '_pretty' ) ) {
			$options |= JSON_PRETTY_PRINT;
		}

		/**
		 * Filters the JSON encoding options used to send the REST API response.
		 *
		 * @since 6.1.0
		 *
		 * @param int $options             JSON encoding options {@see json_encode()}.
		 * @param WP_REST_Request $request Current request object.
		 */
		return apply_filters( 'rest_json_encode_options', $options, $request );
	}

	/**
	 * Handles serving a REST API request.
	 *
	 * Matches the current server URI to a route and runs the first matching
	 * callback then outputs a JSON representation of the returned value.
	 *
	 * @since 4.4.0
	 *
	 * @see WP_REST_Server::dispatch()
	 *
	 * @global WP_User $current_user The currently authenticated user.
	 *
	 * @param string|null $path Optional. The request route. If not set, `$_SERVER['PATH_INFO']` will be used.
	 *                          Default null.
	 * @return null|false Null if not served and a HEAD request, false otherwise.
	 */
	public function serve_request( $path = null ) {
		/* @var WP_User|null $current_user */
		global $current_user;

		if ( $current_user instanceof WP_User && ! $current_user->exists() ) {
			/*
			 * If there is no current user authenticated via other means, clear
			 * the cached lack of user, so that an authenticate check can set it
			 * properly.
			 *
			 * This is done because for authentications such as Application
			 * Passwords, we don't want it to be accepted unless the current HTTP
			 * request is a REST API request, which can't always be identified early
			 * enough in evaluation.
			 */
			$current_user = null;
		}

		/**
		 * Filters whether JSONP is enabled for the REST API.
		 *
		 * @since 4.4.0
		 *
		 * @param bool $jsonp_enabled Whether JSONP is enabled. Default true.
		 */
		$jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true );

		$jsonp_callback = false;
		if ( isset( $_GET['_jsonp'] ) ) {
			$jsonp_callback = $_GET['_jsonp'];
		}

		$content_type = ( $jsonp_callback && $jsonp_enabled ) ? 'application/javascript' : 'application/json';
		$this->send_header( 'Content-Type', $content_type . '; charset=' . get_option( 'blog_charset' ) );
		$this->send_header( 'X-Robots-Tag', 'noindex' );

		$api_root = get_rest_url();
		if ( ! empty( $api_root ) ) {
			$this->send_header( 'Link', '<' . sanitize_url( $api_root ) . '>; rel="https://api.w.org/"' );
		}

		/*
		 * Mitigate possible JSONP Flash attacks.
		 *
		 * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
		 */
		$this->send_header( 'X-Content-Type-Options', 'nosniff' );

		/**
		 * Filters whether the REST API is enabled.
		 *
		 * @since 4.4.0
		 * @deprecated 4.7.0 Use the {@see 'rest_authentication_errors'} filter to
		 *                   restrict access to the REST API.
		 *
		 * @param bool $rest_enabled Whether the REST API is enabled. Default true.
		 */
		apply_filters_deprecated(
			'rest_enabled',
			array( true ),
			'4.7.0',
			'rest_authentication_errors',
			sprintf(
				/* translators: %s: rest_authentication_errors */
				__( 'The REST API can no longer be completely disabled, the %s filter can be used to restrict access to the API, instead.' ),
				'rest_authentication_errors'
			)
		);

		if ( $jsonp_callback ) {
			if ( ! $jsonp_enabled ) {
				echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 );
				return false;
			}

			if ( ! wp_check_jsonp_callback( $jsonp_callback ) ) {
				echo $this->json_error( 'rest_callback_invalid', __( 'Invalid JSONP callback function.' ), 400 );
				return false;
			}
		}

		if ( empty( $path ) ) {
			if ( isset( $_SERVER['PATH_INFO'] ) ) {
				$path = $_SERVER['PATH_INFO'];
			} else {
				$path = '/';
			}
		}

		$request = new WP_REST_Request( $_SERVER['REQUEST_METHOD'], $path );

		$request->set_query_params( wp_unslash( $_GET ) );
		$request->set_body_params( wp_unslash( $_POST ) );
		$request->set_file_params( $_FILES );
		$request->set_headers( $this->get_headers( wp_unslash( $_SERVER ) ) );
		$request->set_body( self::get_raw_data() );

		/*
		 * HTTP method override for clients that can't use PUT/PATCH/DELETE. First, we check
		 * $_GET['_method']. If that is not set, we check for the HTTP_X_HTTP_METHOD_OVERRIDE
		 * header.
		 */
		$method_overridden = false;
		if ( isset( $_GET['_method'] ) ) {
			$request->set_method( $_GET['_method'] );
		} elseif ( isset( $_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] ) ) {
			$request->set_method( $_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] );
			$method_overridden = true;
		}

		$expose_headers = array( 'X-WP-Total', 'X-WP-TotalPages', 'Link' );

		/**
		 * Filters the list of response headers that are exposed to REST API CORS requests.
		 *
		 * @since 5.5.0
		 * @since 6.3.0 The `$request` parameter was added.
		 *
		 * @param string[]        $expose_headers The list of response headers to expose.
		 * @param WP_REST_Request $request        The request in context.
		 */
		$expose_headers = apply_filters( 'rest_exposed_cors_headers', $expose_headers, $request );

		$this->send_header( 'Access-Control-Expose-Headers', implode( ', ', $expose_headers ) );

		$allow_headers = array(
			'Authorization',
			'X-WP-Nonce',
			'Content-Disposition',
			'Content-MD5',
			'Content-Type',
		);

		/**
		 * Filters the list of request headers that are allowed for REST API CORS requests.
		 *
		 * The allowed headers are passed to the browser to specify which
		 * headers can be passed to the REST API. By default, we allow the
		 * Content-* headers needed to upload files to the media endpoints.
		 * As well as the Authorization and Nonce headers for allowing authentication.
		 *
		 * @since 5.5.0
		 * @since 6.3.0 The `$request` parameter was added.
		 *
		 * @param string[]        $allow_headers The list of request headers to allow.
		 * @param WP_REST_Request $request       The request in context.
		 */
		$allow_headers = apply_filters( 'rest_allowed_cors_headers', $allow_headers, $request );

		$this->send_header( 'Access-Control-Allow-Headers', implode( ', ', $allow_headers ) );

		$result = $this->check_authentication();

		if ( ! is_wp_error( $result ) ) {
			$result = $this->dispatch( $request );
		}

		// Normalize to either WP_Error or WP_REST_Response...
		$result = rest_ensure_response( $result );

		// ...then convert WP_Error across.
		if ( is_wp_error( $result ) ) {
			$result = $this->error_to_response( $result );
		}

		/**
		 * Filters the REST API response.
		 *
		 * Allows modification of the response before returning.
		 *
		 * @since 4.4.0
		 * @since 4.5.0 Applied to embedded responses.
		 *
		 * @param WP_HTTP_Response $result  Result to send to the client. Usually a `WP_REST_Response`.
		 * @param WP_REST_Server   $server  Server instance.
		 * @param WP_REST_Request  $request Request used to generate the response.
		 */
		$result = apply_filters( 'rest_post_dispatch', rest_ensure_response( $result ), $this, $request );

		// Wrap the response in an envelope if asked for.
		if ( isset( $_GET['_envelope'] ) ) {
			$embed  = isset( $_GET['_embed'] ) ? rest_parse_embed_param( $_GET['_embed'] ) : false;
			$result = $this->envelope_response( $result, $embed );
		}

		// Send extra data from response objects.
		$headers = $result->get_headers();
		$this->send_headers( $headers );

		$code = $result->get_status();
		$this->set_status( $code );

		/**
		 * Filters whether to send no-cache headers on a REST API request.
		 *
		 * @since 4.4.0
		 * @since 6.3.2 Moved the block to catch the filter added on rest_cookie_check_errors() from wp-includes/rest-api.php.
		 *
		 * @param bool $rest_send_nocache_headers Whether to send no-cache headers.
		 */
		$send_no_cache_headers = apply_filters( 'rest_send_nocache_headers', is_user_logged_in() );

		/*
		 * Send no-cache headers if $send_no_cache_headers is true,
		 * OR if the HTTP_X_HTTP_METHOD_OVERRIDE is used but resulted a 4xx response code.
		 */
		if ( $send_no_cache_headers || ( true === $method_overridden && str_starts_with( $code, '4' ) ) ) {
			foreach ( wp_get_nocache_headers() as $header => $header_value ) {
				if ( empty( $header_value ) ) {
					$this->remove_header( $header );
				} else {
					$this->send_header( $header, $header_value );
				}
			}
		}

		/**
		 * Filters whether the REST API request has already been served.
		 *
		 * Allow sending the request manually - by returning true, the API result
		 * will not be sent to the client.
		 *
		 * @since 4.4.0
		 *
		 * @param bool             $served  Whether the request has already been served.
		 *                                           Default false.
		 * @param WP_HTTP_Response $result  Result to send to the client. Usually a `WP_REST_Response`.
		 * @param WP_REST_Request  $request Request used to generate the response.
		 * @param WP_REST_Server   $server  Server instance.
		 */
		$served = apply_filters( 'rest_pre_serve_request', false, $result, $request, $this );

		if ( ! $served ) {
			if ( 'HEAD' === $request->get_method() ) {
				return null;
			}

			// Embed links inside the request.
			$embed  = isset( $_GET['_embed'] ) ? rest_parse_embed_param( $_GET['_embed'] ) : false;
			$result = $this->response_to_data( $result, $embed );

			/**
			 * Filters the REST API response.
			 *
			 * Allows modification of the response data after inserting
			 * embedded data (if any) and before echoing the response data.
			 *
			 * @since 4.8.1
			 *
			 * @param array            $result  Response data to send to the client.
			 * @param WP_REST_Server   $server  Server instance.
			 * @param WP_REST_Request  $request Request used to generate the response.
			 */
			$result = apply_filters( 'rest_pre_echo_response', $result, $this, $request );

			// The 204 response shouldn't have a body.
			if ( 204 === $code || null === $result ) {
				return null;
			}

			$result = wp_json_encode( $result, $this->get_json_encode_options( $request ) );

			$json_error_message = $this->get_json_last_error();

			if ( $json_error_message ) {
				$this->set_status( 500 );
				$json_error_obj = new WP_Error(
					'rest_encode_error',
					$json_error_message,
					array( 'status' => 500 )
				);

				$result = $this->error_to_response( $json_error_obj );
				$result = wp_json_encode( $result->data, $this->get_json_encode_options( $request ) );
			}

			if ( $jsonp_callback ) {
				// Prepend '/**/' to mitigate possible JSONP Flash attacks.
				// https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
				echo '/**/' . $jsonp_callback . '(' . $result . ')';
			} else {
				echo $result;
			}
		}

		return null;
	}

	/**
	 * Converts a response to data to send.
	 *
	 * @since 4.4.0
	 * @since 5.4.0 The `$embed` parameter can now contain a list of link relations to include.
	 *
	 * @param WP_REST_Response $response Response object.
	 * @param bool|string[]    $embed    Whether to embed all links, a filtered list of link relations, or no links.
	 * @return array {
	 *     Data with sub-requests embedded.
	 *
	 *     @type array $_links    Links.
	 *     @type array $_embedded Embedded objects.
	 * }
	 */
	public function response_to_data( $response, $embed ) {
		$data  = $response->get_data();
		$links = self::get_compact_response_links( $response );

		if ( ! empty( $links ) ) {
			// Convert links to part of the data.
			$data['_links'] = $links;
		}

		if ( $embed ) {
			$this->embed_cache = array();
			// Determine if this is a numeric array.
			if ( wp_is_numeric_array( $data ) ) {
				foreach ( $data as $key => $item ) {
					$data[ $key ] = $this->embed_links( $item, $embed );
				}
			} else {
				$data = $this->embed_links( $data, $embed );
			}
			$this->embed_cache = array();
		}

		return $data;
	}

	/**
	 * Retrieves links from a response.
	 *
	 * Extracts the links from a response into a structured hash, suitable for
	 * direct output.
	 *
	 * @since 4.4.0
	 *
	 * @param WP_REST_Response $response Response to extract links from.
	 * @return array Map of link relation to list of link hashes.
	 */
	public static function get_response_links( $response ) {
		$links = $response->get_links();

		if ( empty( $links ) ) {
			return array();
		}

		// Convert links to part of the data.
		$data = array();
		foreach ( $links as $rel => $items ) {
			$data[ $rel ] = array();

			foreach ( $items as $item ) {
				$attributes         = $item['attributes'];
				$attributes['href'] = $item['href'];

				if ( 'self' !== $rel ) {
					$data[ $rel ][] = $attributes;
					continue;
				}

				$target_hints = self::get_target_hints_for_link( $attributes );
				if ( $target_hints ) {
					$attributes['targetHints'] = $target_hints;
				}

				$data[ $rel ][] = $attributes;
			}
		}

		return $data;
	}

	/**
	 * Gets the target hints for a REST API Link.
	 *
	 * @since 6.7.0
	 *
	 * @param array $link The link to get target hints for.
	 * @return array|null
	 */
	protected static function get_target_hints_for_link( $link ) {
		// Prefer targetHints that were specifically designated by the developer.
		if ( isset( $link['targetHints']['allow'] ) ) {
			return null;
		}

		$request = WP_REST_Request::from_url( $link['href'] );
		if ( ! $request ) {
			return null;
		}

		$server = rest_get_server();
		$match  = $server->match_request_to_handler( $request );

		if ( is_wp_error( $match ) ) {
			return null;
		}

		if ( is_wp_error( $request->has_valid_params() ) ) {
			return null;
		}

		if ( is_wp_error( $request->sanitize_params() ) ) {
			return null;
		}

		$target_hints = array();

		$response = new WP_REST_Response();
		$response->set_matched_route( $match[0] );
		$response->set_matched_handler( $match[1] );
		$headers = rest_send_allow_header( $response, $server, $request )->get_headers();

		foreach ( $headers as $name => $value ) {
			$name = WP_REST_Request::canonicalize_header_name( $name );

			$target_hints[ $name ] = array_map( 'trim', explode( ',', $value ) );
		}

		return $target_hints;
	}

	/**
	 * Retrieves the CURIEs (compact URIs) used for relations.
	 *
	 * Extracts the links from a response into a structured hash, suitable for
	 * direct output.
	 *
	 * @since 4.5.0
	 *
	 * @param WP_REST_Response $response Response to extract links from.
	 * @return array Map of link relation to list of link hashes.
	 */
	public static function get_compact_response_links( $response ) {
		$links = self::get_response_links( $response );

		if ( empty( $links ) ) {
			return array();
		}

		$curies      = $response->get_curies();
		$used_curies = array();

		foreach ( $links as $rel => $items ) {

			// Convert $rel URIs to their compact versions if they exist.
			foreach ( $curies as $curie ) {
				$href_prefix = substr( $curie['href'], 0, strpos( $curie['href'], '{rel}' ) );
				if ( ! str_starts_with( $rel, $href_prefix ) ) {
					continue;
				}

				// Relation now changes from '$uri' to '$curie:$relation'.
				$rel_regex = str_replace( '\{rel\}', '(.+)', preg_quote( $curie['href'], '!' ) );
				preg_match( '!' . $rel_regex . '!', $rel, $matches );
				if ( $matches ) {
					$new_rel                       = $curie['name'] . ':' . $matches[1];
					$used_curies[ $curie['name'] ] = $curie;
					$links[ $new_rel ]             = $items;
					unset( $links[ $rel ] );
					break;
				}
			}
		}

		// Push the curies onto the start of the links array.
		if ( $used_curies ) {
			$links['curies'] = array_values( $used_curies );
		}

		return $links;
	}

	/**
	 * Embeds the links from the data into the request.
	 *
	 * @since 4.4.0
	 * @since 5.4.0 The `$embed` parameter can now contain a list of link relations to include.
	 *
	 * @param array         $data  Data from the request.
	 * @param bool|string[] $embed Whether to embed all links or a filtered list of link relations.
	 *                             Default true.
	 * @return array {
	 *     Data with sub-requests embedded.
	 *
	 *     @type array $_links    Links.
	 *     @type array $_embedded Embedded objects.
	 * }
	 */
	protected function embed_links( $data, $embed = true ) {
		if ( empty( $data['_links'] ) ) {
			return $data;
		}

		$embedded = array();

		foreach ( $data['_links'] as $rel => $links ) {
			/*
			 * If a list of relations was specified, and the link relation
			 * is not in the list of allowed relations, don't process the link.
			 */
			if ( is_array( $embed ) && ! in_array( $rel, $embed, true ) ) {
				continue;
			}

			$embeds = array();

			foreach ( $links as $item ) {
				// Determine if the link is embeddable.
				if ( empty( $item['embeddable'] ) ) {
					// Ensure we keep the same order.
					$embeds[] = array();
					continue;
				}

				if ( ! array_key_exists( $item['href'], $this->embed_cache ) ) {
					// Run through our internal routing and serve.
					$request = WP_REST_Request::from_url( $item['href'] );
					if ( ! $request ) {
						$embeds[] = array();
						continue;
					}

					// Embedded resources get passed context=embed.
					if ( empty( $request['context'] ) ) {
						$request['context'] = 'embed';
					}

					if ( empty( $request['per_page'] ) ) {
						$matched = $this->match_request_to_handler( $request );
						if ( ! is_wp_error( $matched ) && isset( $matched[1]['args']['per_page']['maximum'] ) ) {
							$request['per_page'] = (int) $matched[1]['args']['per_page']['maximum'];
						}
					}

					$response = $this->dispatch( $request );

					/** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */
					$response = apply_filters( 'rest_post_dispatch', rest_ensure_response( $response ), $this, $request );

					$this->embed_cache[ $item['href'] ] = $this->response_to_data( $response, false );
				}

				$embeds[] = $this->embed_cache[ $item['href'] ];
			}

			// Determine if any real links were found.
			$has_links = count( array_filter( $embeds ) );

			if ( $has_links ) {
				$embedded[ $rel ] = $embeds;
			}
		}

		if ( ! empty( $embedded ) ) {
			$data['_embedded'] = $embedded;
		}

		return $data;
	}

	/**
	 * Wraps the response in an envelope.
	 *
	 * The enveloping technique is used to work around browser/client
	 * compatibility issues. Essentially, it converts the full HTTP response to
	 * data instead.
	 *
	 * @since 4.4.0
	 * @since 6.0.0 The `$embed` parameter can now contain a list of link relations to include.
	 *
	 * @param WP_REST_Response $response Response object.
	 * @param bool|string[]    $embed    Whether to embed all links, a filtered list of link relations, or no links.
	 * @return WP_REST_Response New response with wrapped data
	 */
	public function envelope_response( $response, $embed ) {
		$envelope = array(
			'body'    => $this->response_to_data( $response, $embed ),
			'status'  => $response->get_status(),
			'headers' => $response->get_headers(),
		);

		/**
		 * Filters the enveloped form of a REST API response.
		 *
		 * @since 4.4.0
		 *
		 * @param array            $envelope {
		 *     Envelope data.
		 *
		 *     @type array $body    Response data.
		 *     @type int   $status  The 3-digit HTTP status code.
		 *     @type array $headers Map of header name to header value.
		 * }
		 * @param WP_REST_Response $response Original response data.
		 */
		$envelope = apply_filters( 'rest_envelope_response', $envelope, $response );

		// Ensure it's still a response and return.
		return rest_ensure_response( $envelope );
	}

	/**
	 * Registers a route to the server.
	 *
	 * @since 4.4.0
	 *
	 * @param string $route_namespace Namespace.
	 * @param string $route           The REST route.
	 * @param array  $route_args      Route arguments.
	 * @param bool   $override        Optional. Whether the route should be overridden if it already exists.
	 *                                Default false.
	 */
	public function register_route( $route_namespace, $route, $route_args, $override = false ) {
		if ( ! isset( $this->namespaces[ $route_namespace ] ) ) {
			$this->namespaces[ $route_namespace ] = array();

			$this->register_route(
				$route_namespace,
				'/' . $route_namespace,
				array(
					array(
						'methods'  => self::READABLE,
						'callback' => array( $this, 'get_namespace_index' ),
						'args'     => array(
							'namespace' => array(
								'default' => $route_namespace,
							),
							'context'   => array(
								'default' => 'view',
							),
						),
					),
				)
			);
		}

		// Associative to avoid double-registration.
		$this->namespaces[ $route_namespace ][ $route ] = true;

		$route_args['namespace'] = $route_namespace;

		if ( $override || empty( $this->endpoints[ $route ] ) ) {
			$this->endpoints[ $route ] = $route_args;
		} else {
			$this->endpoints[ $route ] = array_merge( $this->endpoints[ $route ], $route_args );
		}
	}

	/**
	 * Retrieves the route map.
	 *
	 * The route map is an associative array with path regexes as the keys. The
	 * value is an indexed array with the callback function/method as the first
	 * item, and a bitmask of HTTP methods as the second item (see the class
	 * constants).
	 *
	 * Each route can be mapped to more than one callback by using an array of
	 * the indexed arrays. This allows mapping e.g. GET requests to one callback
	 * and POST requests to another.
	 *
	 * Note that the path regexes (array keys) must have @ escaped, as this is
	 * used as the delimiter with preg_match()
	 *
	 * @since 4.4.0
	 * @since 5.4.0 Added `$route_namespace` parameter.
	 *
	 * @param string $route_namespace Optionally, only return routes in the given namespace.
	 * @return array `'/path/regex' => array( $callback, $bitmask )` or
	 *               `'/path/regex' => array( array( $callback, $bitmask ), ...)`.
	 */
	public function get_routes( $route_namespace = '' ) {
		$endpoints = $this->endpoints;

		if ( $route_namespace ) {
			$endpoints = wp_list_filter( $endpoints, array( 'namespace' => $route_namespace ) );
		}

		/**
		 * Filters the array of available REST API endpoints.
		 *
		 * @since 4.4.0
		 *
		 * @param array $endpoints The available endpoints. An array of matching regex patterns, each mapped
		 *                         to an array of callbacks for the endpoint. These take the format
		 *                         `'/path/regex' => array( $callback, $bitmask )` or
		 *                         `'/path/regex' => array( array( $callback, $bitmask ).
		 */
		$endpoints = apply_filters( 'rest_endpoints', $endpoints );

		// Normalize the endpoints.
		$defaults = array(
			'methods'       => '',
			'accept_json'   => false,
			'accept_raw'    => false,
			'show_in_index' => true,
			'args'          => array(),
		);

		foreach ( $endpoints as $route => &$handlers ) {

			if ( isset( $handlers['callback'] ) ) {
				// Single endpoint, add one deeper.
				$handlers = array( $handlers );
			}

			if ( ! isset( $this->route_options[ $route ] ) ) {
				$this->route_options[ $route ] = array();
			}

			foreach ( $handlers as $key => &$handler ) {

				if ( ! is_numeric( $key ) ) {
					// Route option, move it to the options.
					$this->route_options[ $route ][ $key ] = $handler;
					unset( $handlers[ $key ] );
					continue;
				}

				$handler = wp_parse_args( $handler, $defaults );

				// Allow comma-separated HTTP methods.
				if ( is_string( $handler['methods'] ) ) {
					$methods = explode( ',', $handler['methods'] );
				} elseif ( is_array( $handler['methods'] ) ) {
					$methods = $handler['methods'];
				} else {
					$methods = array();
				}

				$handler['methods'] = array();

				foreach ( $methods as $method ) {
					$method                        = strtoupper( trim( $method ) );
					$handler['methods'][ $method ] = true;
				}
			}
		}

		return $endpoints;
	}

	/**
	 * Retrieves namespaces registered on the server.
	 *
	 * @since 4.4.0
	 *
	 * @return string[] List of registered namespaces.
	 */
	public function get_namespaces() {
		return array_keys( $this->namespaces );
	}

	/**
	 * Retrieves specified options for a route.
	 *
	 * @since 4.4.0
	 *
	 * @param string $route Route pattern to fetch options for.
	 * @return array|null Data as an associative array if found, or null if not found.
	 */
	public function get_route_options( $route ) {
		if ( ! isset( $this->route_options[ $route ] ) ) {
			return null;
		}

		return $this->route_options[ $route ];
	}

	/**
	 * Matches the request to a callback and call it.
	 *
	 * @since 4.4.0
	 *
	 * @param WP_REST_Request $request Request to attempt dispatching.
	 * @return WP_REST_Response Response returned by the callback.
	 */
	public function dispatch( $request ) {
		$this->dispatching_requests[] = $request;

		/**
		 * Filters the pre-calculated result of a REST API dispatch request.
		 *
		 * Allow hijacking the request before dispatching by returning a non-empty. The returned value
		 * will be used to serve the request instead.
		 *
		 * @since 4.4.0
		 *
		 * @param mixed           $result  Response to replace the requested version with. Can be anything
		 *                                 a normal endpoint can return, or null to not hijack the request.
		 * @param WP_REST_Server  $server  Server instance.
		 * @param WP_REST_Request $request Request used to generate the response.
		 */
		$result = apply_filters( 'rest_pre_dispatch', null, $this, $request );

		if ( ! empty( $result ) ) {

			// Normalize to either WP_Error or WP_REST_Response...
			$result = rest_ensure_response( $result );

			// ...then convert WP_Error across.
			if ( is_wp_error( $result ) ) {
				$result = $this->error_to_response( $result );
			}

			array_pop( $this->dispatching_requests );
			return $result;
		}

		$error   = null;
		$matched = $this->match_request_to_handler( $request );

		if ( is_wp_error( $matched ) ) {
			$response = $this->error_to_response( $matched );
			array_pop( $this->dispatching_requests );
			return $response;
		}

		list( $route, $handler ) = $matched;

		if ( ! is_callable( $handler['callback'] ) ) {
			$error = new WP_Error(
				'rest_invalid_handler',
				__( 'The handler for the route is invalid.' ),
				array( 'status' => 500 )
			);
		}

		if ( ! is_wp_error( $error ) ) {
			$check_required = $request->has_valid_params();
			if ( is_wp_error( $check_required ) ) {
				$error = $check_required;
			} else {
				$check_sanitized = $request->sanitize_params();
				if ( is_wp_error( $check_sanitized ) ) {
					$error = $check_sanitized;
				}
			}
		}

		$response = $this->respond_to_request( $request, $route, $handler, $error );
		array_pop( $this->dispatching_requests );
		return $response;
	}

	/**
	 * Returns whether the REST server is currently dispatching / responding to a request.
	 *
	 * This may be a standalone REST API request, or an internal request dispatched from within a regular page load.
	 *
	 * @since 6.5.0
	 *
	 * @return bool Whether the REST server is currently handling a request.
	 */
	public function is_dispatching() {
		return (bool) $this->dispatching_requests;
	}

	/**
	 * Matches a request object to its handler.
	 *
	 * @access private
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request The request object.
	 * @return array|WP_Error The route and request handler on success or a WP_Error instance if no handler was found.
	 */
	protected function match_request_to_handler( $request ) {
		$method = $request->get_method();
		$path   = $request->get_route();

		$with_namespace = array();

		foreach ( $this->get_namespaces() as $namespace ) {
			if ( str_starts_with( trailingslashit( ltrim( $path, '/' ) ), $namespace ) ) {
				$with_namespace[] = $this->get_routes( $namespace );
			}
		}

		if ( $with_namespace ) {
			$routes = array_merge( ...$with_namespace );
		} else {
			$routes = $this->get_routes();
		}

		foreach ( $routes as $route => $handlers ) {
			$match = preg_match( '@^' . $route . '$@i', $path, $matches );

			if ( ! $match ) {
				continue;
			}

			$args = array();

			foreach ( $matches as $param => $value ) {
				if ( ! is_int( $param ) ) {
					$args[ $param ] = $value;
				}
			}

			foreach ( $handlers as $handler ) {
				$callback = $handler['callback'];

				// Fallback to GET method if no HEAD method is registered.
				$checked_method = $method;
				if ( 'HEAD' === $method && empty( $handler['methods']['HEAD'] ) ) {
					$checked_method = 'GET';
				}
				if ( empty( $handler['methods'][ $checked_method ] ) ) {
					continue;
				}

				if ( ! is_callable( $callback ) ) {
					return array( $route, $handler );
				}

				$request->set_url_params( $args );
				$request->set_attributes( $handler );

				$defaults = array();

				foreach ( $handler['args'] as $arg => $options ) {
					if ( isset( $options['default'] ) ) {
						$defaults[ $arg ] = $options['default'];
					}
				}

				$request->set_default_params( $defaults );

				return array( $route, $handler );
			}
		}

		return new WP_Error(
			'rest_no_route',
			__( 'No route was found matching the URL and request method.' ),
			array( 'status' => 404 )
		);
	}

	/**
	 * Dispatches the request to the callback handler.
	 *
	 * @access private
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $request  The request object.
	 * @param string          $route    The matched route regex.
	 * @param array           $handler  The matched route handler.
	 * @param WP_Error|null   $response The current error object if any.
	 * @return WP_REST_Response
	 */
	protected function respond_to_request( $request, $route, $handler, $response ) {
		/**
		 * Filters the response before executing any REST API callbacks.
		 *
		 * Allows plugins to perform additional validation after a
		 * request is initialized and matched to a registered route,
		 * but before it is executed.
		 *
		 * Note that this filter will not be called for requests that
		 * fail to authenticate or match to a registered route.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response Result to send to the client.
		 *                                                                   Usually a WP_REST_Response or WP_Error.
		 * @param array                                            $handler  Route handler used for the request.
		 * @param WP_REST_Request                                  $request  Request used to generate the response.
		 */
		$response = apply_filters( 'rest_request_before_callbacks', $response, $handler, $request );

		// Check permission specified on the route.
		if ( ! is_wp_error( $response ) && ! empty( $handler['permission_callback'] ) ) {
			$permission = call_user_func( $handler['permission_callback'], $request );

			if ( is_wp_error( $permission ) ) {
				$response = $permission;
			} elseif ( false === $permission || null === $permission ) {
				$response = new WP_Error(
					'rest_forbidden',
					__( 'Sorry, you are not allowed to do that.' ),
					array( 'status' => rest_authorization_required_code() )
				);
			}
		}

		if ( ! is_wp_error( $response ) ) {
			/**
			 * Filters the REST API dispatch request result.
			 *
			 * Allow plugins to override dispatching the request.
			 *
			 * @since 4.4.0
			 * @since 4.5.0 Added `$route` and `$handler` parameters.
			 *
			 * @param mixed           $dispatch_result Dispatch result, will be used if not empty.
			 * @param WP_REST_Request $request         Request used to generate the response.
			 * @param string          $route           Route matched for the request.
			 * @param array           $handler         Route handler used for the request.
			 */
			$dispatch_result = apply_filters( 'rest_dispatch_request', null, $request, $route, $handler );

			// Allow plugins to halt the request via this filter.
			if ( null !== $dispatch_result ) {
				$response = $dispatch_result;
			} else {
				$response = call_user_func( $handler['callback'], $request );
			}
		}

		/**
		 * Filters the response immediately after executing any REST API
		 * callbacks.
		 *
		 * Allows plugins to perform any needed cleanup, for example,
		 * to undo changes made during the {@see 'rest_request_before_callbacks'}
		 * filter.
		 *
		 * Note that this filter will not be called for requests that
		 * fail to authenticate or match to a registered route.
		 *
		 * Note that an endpoint's `permission_callback` can still be
		 * called after this filter - see `rest_send_allow_header()`.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response Result to send to the client.
		 *                                                                   Usually a WP_REST_Response or WP_Error.
		 * @param array                                            $handler  Route handler used for the request.
		 * @param WP_REST_Request                                  $request  Request used to generate the response.
		 */
		$response = apply_filters( 'rest_request_after_callbacks', $response, $handler, $request );

		if ( is_wp_error( $response ) ) {
			$response = $this->error_to_response( $response );
		} else {
			$response = rest_ensure_response( $response );
		}

		$response->set_matched_route( $route );
		$response->set_matched_handler( $handler );

		return $response;
	}

	/**
	 * Returns if an error occurred during most recent JSON encode/decode.
	 *
	 * Strings to be translated will be in format like
	 * "Encoding error: Maximum stack depth exceeded".
	 *
	 * @since 4.4.0
	 *
	 * @return false|string Boolean false or string error message.
	 */
	protected function get_json_last_error() {
		if ( JSON_ERROR_NONE === json_last_error() ) {
			return false;
		}

		return json_last_error_msg();
	}

	/**
	 * Retrieves the site index.
	 *
	 * This endpoint describes the capabilities of the site.
	 *
	 * @since 4.4.0
	 *
	 * @param WP_REST_Request $request Request data.
	 * @return WP_REST_Response The API root index data.
	 */
	public function get_index( $request ) {
		// General site data.
		$available = array(
			'name'            => get_option( 'blogname' ),
			'description'     => get_option( 'blogdescription' ),
			'url'             => get_option( 'siteurl' ),
			'home'            => home_url(),
			'gmt_offset'      => get_option( 'gmt_offset' ),
			'timezone_string' => get_option( 'timezone_string' ),
			'page_for_posts'  => (int) get_option( 'page_for_posts' ),
			'page_on_front'   => (int) get_option( 'page_on_front' ),
			'show_on_front'   => get_option( 'show_on_front' ),
			'namespaces'      => array_keys( $this->namespaces ),
			'authentication'  => array(),
			'routes'          => $this->get_data_for_routes( $this->get_routes(), $request['context'] ),
		);

		$response = new WP_REST_Response( $available );

		$fields = isset( $request['_fields'] ) ? $request['_fields'] : '';
		$fields = wp_parse_list( $fields );
		if ( empty( $fields ) ) {
			$fields[] = '_links';
		}

		if ( $request->has_param( '_embed' ) ) {
			$fields[] = '_embedded';
		}

		if ( rest_is_field_included( '_links', $fields ) || rest_is_field_included( '_embedded', $fields ) ) {
			$response->add_link( 'help', 'https://developer.wordpress.org/rest-api/' );
			$this->add_active_theme_link_to_index( $response );
			$this->add_site_logo_to_index( $response );
			$this->add_site_icon_to_index( $response );
		} else {
			if ( rest_is_field_included( 'site_logo', $fields ) ) {
				$this->add_site_logo_to_index( $response );
			}
			if ( rest_is_field_included( 'site_icon', $fields ) || rest_is_field_included( 'site_icon_url', $fields ) ) {
				$this->add_site_icon_to_index( $response );
			}
		}

		/**
		 * Filters the REST API root index data.
		 *
		 * This contains the data describing the API. This includes information
		 * about supported authentication schemes, supported namespaces, routes
		 * available on the API, and a small amount of data about the site.
		 *
		 * @since 4.4.0
		 * @since 6.0.0 Added `$request` parameter.
		 *
		 * @param WP_REST_Response $response Response data.
		 * @param WP_REST_Request  $request  Request data.
		 */
		return apply_filters( 'rest_index', $response, $request );
	}

	/**
	 * Adds a link to the active theme for users who have proper permissions.
	 *
	 * @since 5.7.0
	 *
	 * @param WP_REST_Response $response REST API response.
	 */
	protected function add_active_theme_link_to_index( WP_REST_Response $response ) {
		$should_add = current_user_can( 'switch_themes' ) || current_user_can( 'manage_network_themes' );

		if ( ! $should_add && current_user_can( 'edit_posts' ) ) {
			$should_add = true;
		}

		if ( ! $should_add ) {
			foreach ( get_post_types( array( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
				if ( current_user_can( $post_type->cap->edit_posts ) ) {
					$should_add = true;
					break;
				}
			}
		}

		if ( $should_add ) {
			$theme = wp_get_theme();
			$response->add_link( 'https://api.w.org/active-theme', rest_url( 'wp/v2/themes/' . $theme->get_stylesheet() ) );
		}
	}

	/**
	 * Exposes the site logo through the WordPress REST API.
	 *
	 * This is used for fetching this information when user has no rights
	 * to update settings.
	 *
	 * @since 5.8.0
	 *
	 * @param WP_REST_Response $response REST API response.
	 */
	protected function add_site_logo_to_index( WP_REST_Response $response ) {
		$site_logo_id = get_theme_mod( 'custom_logo', 0 );

		$this->add_image_to_index( $response, $site_logo_id, 'site_logo' );
	}

	/**
	 * Exposes the site icon through the WordPress REST API.
	 *
	 * This is used for fetching this information when user has no rights
	 * to update settings.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Response $response REST API response.
	 */
	protected function add_site_icon_to_index( WP_REST_Response $response ) {
		$site_icon_id = get_option( 'site_icon', 0 );

		$this->add_image_to_index( $response, $site_icon_id, 'site_icon' );

		$response->data['site_icon_url'] = get_site_icon_url();
	}

	/**
	 * Exposes an image through the WordPress REST API.
	 * This is used for fetching this information when user has no rights
	 * to update settings.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_REST_Response $response REST API response.
	 * @param int              $image_id Image attachment ID.
	 * @param string           $type     Type of Image.
	 */
	protected function add_image_to_index( WP_REST_Response $response, $image_id, $type ) {
		$response->data[ $type ] = (int) $image_id;
		if ( $image_id ) {
			$response->add_link(
				'https://api.w.org/featuredmedia',
				rest_url( rest_get_route_for_post( $image_id ) ),
				array(
					'embeddable' => true,
					'type'       => $type,
				)
			);
		}
	}

	/**
	 * Retrieves the index for a namespace.
	 *
	 * @since 4.4.0
	 *
	 * @param WP_REST_Request $request REST request instance.
	 * @return WP_REST_Response|WP_Error WP_REST_Response instance if the index was found,
	 *                                   WP_Error if the namespace isn't set.
	 */
	public function get_namespace_index( $request ) {
		$namespace = $request['namespace'];

		if ( ! isset( $this->namespaces[ $namespace ] ) ) {
			return new WP_Error(
				'rest_invalid_namespace',
				__( 'The specified namespace could not be found.' ),
				array( 'status' => 404 )
			);
		}

		$routes    = $this->namespaces[ $namespace ];
		$endpoints = array_intersect_key( $this->get_routes(), $routes );

		$data     = array(
			'namespace' => $namespace,
			'routes'    => $this->get_data_for_routes( $endpoints, $request['context'] ),
		);
		$response = rest_ensure_response( $data );

		// Link to the root index.
		$response->add_link( 'up', rest_url( '/' ) );

		/**
		 * Filters the REST API namespace index data.
		 *
		 * This typically is just the route data for the namespace, but you can
		 * add any data you'd like here.
		 *
		 * @since 4.4.0
		 *
		 * @param WP_REST_Response $response Response data.
		 * @param WP_REST_Request  $request  Request data. The namespace is passed as the 'namespace' parameter.
		 */
		return apply_filters( 'rest_namespace_index', $response, $request );
	}

	/**
	 * Retrieves the publicly-visible data for routes.
	 *
	 * @since 4.4.0
	 *
	 * @param array  $routes  Routes to get data for.
	 * @param string $context Optional. Context for data. Accepts 'view' or 'help'. Default 'view'.
	 * @return array[] Route data to expose in indexes, keyed by route.
	 */
	public function get_data_for_routes( $routes, $context = 'view' ) {
		$available = array();

		// Find the available routes.
		foreach ( $routes as $route => $callbacks ) {
			$data = $this->get_data_for_route( $route, $callbacks, $context );
			if ( empty( $data ) ) {
				continue;
			}

			/**
			 * Filters the publicly-visible data for a single REST API route.
			 *
			 * @since 4.4.0
			 *
			 * @param array $data Publicly-visible data for the route.
			 */
			$available[ $route ] = apply_filters( 'rest_endpoints_description', $data );
		}

		/**
		 * Filters the publicly-visible data for REST API routes.
		 *
		 * This data is exposed on indexes and can be used by clients or
		 * developers to investigate the site and find out how to use it. It
		 * acts as a form of self-documentation.
		 *
		 * @since 4.4.0
		 *
		 * @param array[] $available Route data to expose in indexes, keyed by route.
		 * @param array   $routes    Internal route data as an associative array.
		 */
		return apply_filters( 'rest_route_data', $available, $routes );
	}

	/**
	 * Retrieves publicly-visible data for the route.
	 *
	 * @since 4.4.0
	 *
	 * @param string $route     Route to get data for.
	 * @param array  $callbacks Callbacks to convert to data.
	 * @param string $context   Optional. Context for the data. Accepts 'view' or 'help'. Default 'view'.
	 * @return array|null Data for the route, or null if no publicly-visible data.
	 */
	public function get_data_for_route( $route, $callbacks, $context = 'view' ) {
		$data = array(
			'namespace' => '',
			'methods'   => array(),
			'endpoints' => array(),
		);

		$allow_batch = false;

		if ( isset( $this->route_options[ $route ] ) ) {
			$options = $this->route_options[ $route ];

			if ( isset( $options['namespace'] ) ) {
				$data['namespace'] = $options['namespace'];
			}

			$allow_batch = isset( $options['allow_batch'] ) ? $options['allow_batch'] : false;

			if ( isset( $options['schema'] ) && 'help' === $context ) {
				$data['schema'] = call_user_func( $options['schema'] );
			}
		}

		$allowed_schema_keywords = array_flip( rest_get_allowed_schema_keywords() );

		$route = preg_replace( '#\(\?P<(\w+?)>.*?\)#', '{$1}', $route );

		foreach ( $callbacks as $callback ) {
			// Skip to the next route if any callback is hidden.
			if ( empty( $callback['show_in_index'] ) ) {
				continue;
			}

			$data['methods'] = array_merge( $data['methods'], array_keys( $callback['methods'] ) );
			$endpoint_data   = array(
				'methods' => array_keys( $callback['methods'] ),
			);

			$callback_batch = isset( $callback['allow_batch'] ) ? $callback['allow_batch'] : $allow_batch;

			if ( $callback_batch ) {
				$endpoint_data['allow_batch'] = $callback_batch;
			}

			if ( isset( $callback['args'] ) ) {
				$endpoint_data['args'] = array();

				foreach ( $callback['args'] as $key => $opts ) {
					if ( is_string( $opts ) ) {
						$opts = array( $opts => 0 );
					} elseif ( ! is_array( $opts ) ) {
						$opts = array();
					}
					$arg_data             = array_intersect_key( $opts, $allowed_schema_keywords );
					$arg_data['required'] = ! empty( $opts['required'] );

					$endpoint_data['args'][ $key ] = $arg_data;
				}
			}

			$data['endpoints'][] = $endpoint_data;

			// For non-variable routes, generate links.
			if ( ! str_contains( $route, '{' ) ) {
				$data['_links'] = array(
					'self' => array(
						array(
							'href' => rest_url( $route ),
						),
					),
				);
			}
		}

		if ( empty( $data['methods'] ) ) {
			// No methods supported, hide the route.
			return null;
		}

		return $data;
	}

	/**
	 * Gets the maximum number of requests that can be included in a batch.
	 *
	 * @since 5.6.0
	 *
	 * @return int The maximum requests.
	 */
	protected function get_max_batch_size() {
		/**
		 * Filters the maximum number of REST API requests that can be included in a batch.
		 *
		 * @since 5.6.0
		 *
		 * @param int $max_size The maximum size.
		 */
		return apply_filters( 'rest_get_max_batch_size', 25 );
	}

	/**
	 * Serves the batch/v1 request.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_REST_Request $batch_request The batch request object.
	 * @return WP_REST_Response The generated response object.
	 */
	public function serve_batch_request_v1( WP_REST_Request $batch_request ) {
		$requests = array();

		foreach ( $batch_request['requests'] as $args ) {
			$parsed_url = wp_parse_url( $args['path'] );

			if ( false === $parsed_url ) {
				$requests[] = new WP_Error( 'parse_path_failed', __( 'Could not parse the path.' ), array( 'status' => 400 ) );

				continue;
			}

			$single_request = new WP_REST_Request( isset( $args['method'] ) ? $args['method'] : 'POST', $parsed_url['path'] );

			if ( ! empty( $parsed_url['query'] ) ) {
				$query_args = array();
				wp_parse_str( $parsed_url['query'], $query_args );
				$single_request->set_query_params( $query_args );
			}

			if ( ! empty( $args['body'] ) ) {
				$single_request->set_body_params( $args['body'] );
			}

			if ( ! empty( $args['headers'] ) ) {
				$single_request->set_headers( $args['headers'] );
			}

			$requests[] = $single_request;
		}

		$matches    = array();
		$validation = array();
		$has_error  = false;

		foreach ( $requests as $single_request ) {
			if ( is_wp_error( $single_request ) ) {
				$has_error    = true;
				$validation[] = $single_request;
				continue;
			}

			$match     = $this->match_request_to_handler( $single_request );
			$matches[] = $match;
			$error     = null;

			if ( is_wp_error( $match ) ) {
				$error = $match;
			}

			if ( ! $error ) {
				list( $route, $handler ) = $match;

				if ( isset( $handler['allow_batch'] ) ) {
					$allow_batch = $handler['allow_batch'];
				} else {
					$route_options = $this->get_route_options( $route );
					$allow_batch   = isset( $route_options['allow_batch'] ) ? $route_options['allow_batch'] : false;
				}

				if ( ! is_array( $allow_batch ) || empty( $allow_batch['v1'] ) ) {
					$error = new WP_Error(
						'rest_batch_not_allowed',
						__( 'The requested route does not support batch requests.' ),
						array( 'status' => 400 )
					);
				}
			}

			if ( ! $error ) {
				$check_required = $single_request->has_valid_params();
				if ( is_wp_error( $check_required ) ) {
					$error = $check_required;
				}
			}

			if ( ! $error ) {
				$check_sanitized = $single_request->sanitize_params();
				if ( is_wp_error( $check_sanitized ) ) {
					$error = $check_sanitized;
				}
			}

			if ( $error ) {
				$has_error    = true;
				$validation[] = $error;
			} else {
				$validation[] = true;
			}
		}

		$responses = array();

		if ( $has_error && 'require-all-validate' === $batch_request['validation'] ) {
			foreach ( $validation as $valid ) {
				if ( is_wp_error( $valid ) ) {
					$responses[] = $this->envelope_response( $this->error_to_response( $valid ), false )->get_data();
				} else {
					$responses[] = null;
				}
			}

			return new WP_REST_Response(
				array(
					'failed'    => 'validation',
					'responses' => $responses,
				),
				WP_Http::MULTI_STATUS
			);
		}

		foreach ( $requests as $i => $single_request ) {
			if ( is_wp_error( $single_request ) ) {
				$result      = $this->error_to_response( $single_request );
				$responses[] = $this->envelope_response( $result, false )->get_data();
				continue;
			}

			$clean_request = clone $single_request;
			$clean_request->set_url_params( array() );
			$clean_request->set_attributes( array() );
			$clean_request->set_default_params( array() );

			/** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */
			$result = apply_filters( 'rest_pre_dispatch', null, $this, $clean_request );

			if ( empty( $result ) ) {
				$match = $matches[ $i ];
				$error = null;

				if ( is_wp_error( $validation[ $i ] ) ) {
					$error = $validation[ $i ];
				}

				if ( is_wp_error( $match ) ) {
					$result = $this->error_to_response( $match );
				} else {
					list( $route, $handler ) = $match;

					if ( ! $error && ! is_callable( $handler['callback'] ) ) {
						$error = new WP_Error(
							'rest_invalid_handler',
							__( 'The handler for the route is invalid' ),
							array( 'status' => 500 )
						);
					}

					$result = $this->respond_to_request( $single_request, $route, $handler, $error );
				}
			}

			/** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */
			$result = apply_filters( 'rest_post_dispatch', rest_ensure_response( $result ), $this, $single_request );

			$responses[] = $this->envelope_response( $result, false )->get_data();
		}

		return new WP_REST_Response( array( 'responses' => $responses ), WP_Http::MULTI_STATUS );
	}

	/**
	 * Sends an HTTP status code.
	 *
	 * @since 4.4.0
	 *
	 * @param int $code HTTP status.
	 */
	protected function set_status( $code ) {
		status_header( $code );
	}

	/**
	 * Sends an HTTP header.
	 *
	 * @since 4.4.0
	 *
	 * @param string $key Header key.
	 * @param string $value Header value.
	 */
	public function send_header( $key, $value ) {
		/*
		 * Sanitize as per RFC2616 (Section 4.2):
		 *
		 * Any LWS that occurs between field-content MAY be replaced with a
		 * single SP before interpreting the field value or forwarding the
		 * message downstream.
		 */
		$value = preg_replace( '/\s+/', ' ', $value );
		header( sprintf( '%s: %s', $key, $value ) );
	}

	/**
	 * Sends multiple HTTP headers.
	 *
	 * @since 4.4.0
	 *
	 * @param array $headers Map of header name to header value.
	 */
	public function send_headers( $headers ) {
		foreach ( $headers as $key => $value ) {
			$this->send_header( $key, $value );
		}
	}

	/**
	 * Removes an HTTP header from the current response.
	 *
	 * @since 4.8.0
	 *
	 * @param string $key Header key.
	 */
	public function remove_header( $key ) {
		header_remove( $key );
	}

	/**
	 * Retrieves the raw request entity (body).
	 *
	 * @since 4.4.0
	 *
	 * @global string $HTTP_RAW_POST_DATA Raw post data.
	 *
	 * @return string Raw request data.
	 */
	public static function get_raw_data() {
		// phpcs:disable PHPCompatibility.Variables.RemovedPredefinedGlobalVariables.http_raw_post_dataDeprecatedRemoved
		global $HTTP_RAW_POST_DATA;

		// $HTTP_RAW_POST_DATA was deprecated in PHP 5.6 and removed in PHP 7.0.
		if ( ! isset( $HTTP_RAW_POST_DATA ) ) {
			$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' );
		}

		return $HTTP_RAW_POST_DATA;
		// phpcs:enable
	}

	/**
	 * Extracts headers from a PHP-style $_SERVER array.
	 *
	 * @since 4.4.0
	 *
	 * @param array $server Associative array similar to `$_SERVER`.
	 * @return array Headers extracted from the input.
	 */
	public function get_headers( $server ) {
		$headers = array();

		// CONTENT_* headers are not prefixed with HTTP_.
		$additional = array(
			'CONTENT_LENGTH' => true,
			'CONTENT_MD5'    => true,
			'CONTENT_TYPE'   => true,
		);

		foreach ( $server as $key => $value ) {
			if ( str_starts_with( $key, 'HTTP_' ) ) {
				$headers[ substr( $key, 5 ) ] = $value;
			} elseif ( 'REDIRECT_HTTP_AUTHORIZATION' === $key && empty( $server['HTTP_AUTHORIZATION'] ) ) {
				/*
				 * In some server configurations, the authorization header is passed in this alternate location.
				 * Since it would not be passed in in both places we do not check for both headers and resolve.
				 */
				$headers['AUTHORIZATION'] = $value;
			} elseif ( isset( $additional[ $key ] ) ) {
				$headers[ $key ] = $value;
			}
		}

		return $headers;
	}
}
.htaccess000064400000000000152222510010006316 0ustar00class-wp-rest-response.php000064400000016321152222510010011606 0ustar00<?php
/**
 * REST API: WP_REST_Response class
 *
 * @package WordPress
 * @subpackage REST_API
 * @since 4.4.0
 */

/**
 * Core class used to implement a REST response object.
 *
 * @since 4.4.0
 *
 * @see WP_HTTP_Response
 */
class WP_REST_Response extends WP_HTTP_Response {

	/**
	 * Links related to the response.
	 *
	 * @since 4.4.0
	 * @var array
	 */
	protected $links = array();

	/**
	 * The route that was to create the response.
	 *
	 * @since 4.4.0
	 * @var string
	 */
	protected $matched_route = '';

	/**
	 * The handler that was used to create the response.
	 *
	 * @since 4.4.0
	 * @var null|array
	 */
	protected $matched_handler = null;

	/**
	 * Adds a link to the response.
	 *
	 * {@internal The $rel parameter is first, as this looks nicer when sending multiple.}
	 *
	 * @since 4.4.0
	 *
	 * @link https://tools.ietf.org/html/rfc5988
	 * @link https://www.iana.org/assignments/link-relations/link-relations.xml
	 *
	 * @param string $rel        Link relation. Either an IANA registered type,
	 *                           or an absolute URL.
	 * @param string $href       Target URI for the link.
	 * @param array  $attributes Optional. Link parameters to send along with the URL. Default empty array.
	 */
	public function add_link( $rel, $href, $attributes = array() ) {
		if ( empty( $this->links[ $rel ] ) ) {
			$this->links[ $rel ] = array();
		}

		if ( isset( $attributes['href'] ) ) {
			// Remove the href attribute, as it's used for the main URL.
			unset( $attributes['href'] );
		}

		$this->links[ $rel ][] = array(
			'href'       => $href,
			'attributes' => $attributes,
		);
	}

	/**
	 * Removes a link from the response.
	 *
	 * @since 4.4.0
	 *
	 * @param string      $rel  Link relation. Either an IANA registered type, or an absolute URL.
	 * @param string|null $href Optional. Only remove links for the relation matching the given href.
	 *                          Default null.
	 */
	public function remove_link( $rel, $href = null ) {
		if ( ! isset( $this->links[ $rel ] ) ) {
			return;
		}

		if ( $href ) {
			$this->links[ $rel ] = wp_list_filter( $this->links[ $rel ], array( 'href' => $href ), 'NOT' );
		} else {
			$this->links[ $rel ] = array();
		}

		if ( ! $this->links[ $rel ] ) {
			unset( $this->links[ $rel ] );
		}
	}

	/**
	 * Adds multiple links to the response.
	 *
	 * Link data should be an associative array with link relation as the key.
	 * The value can either be an associative array of link attributes
	 * (including `href` with the URL for the response), or a list of these
	 * associative arrays.
	 *
	 * @since 4.4.0
	 *
	 * @param array $links Map of link relation to list of links.
	 */
	public function add_links( $links ) {
		foreach ( $links as $rel => $set ) {
			// If it's a single link, wrap with an array for consistent handling.
			if ( isset( $set['href'] ) ) {
				$set = array( $set );
			}

			foreach ( $set as $attributes ) {
				$this->add_link( $rel, $attributes['href'], $attributes );
			}
		}
	}

	/**
	 * Retrieves links for the response.
	 *
	 * @since 4.4.0
	 *
	 * @return array List of links.
	 */
	public function get_links() {
		return $this->links;
	}

	/**
	 * Sets a single link header.
	 *
	 * {@internal The $rel parameter is first, as this looks nicer when sending multiple.}
	 *
	 * @since 4.4.0
	 *
	 * @link https://tools.ietf.org/html/rfc5988
	 * @link https://www.iana.org/assignments/link-relations/link-relations.xml
	 *
	 * @param string $rel   Link relation. Either an IANA registered type, or an absolute URL.
	 * @param string $link  Target IRI for the link.
	 * @param array  $other Optional. Other parameters to send, as an associative array.
	 *                      Default empty array.
	 */
	public function link_header( $rel, $link, $other = array() ) {
		$header = '<' . $link . '>; rel="' . $rel . '"';

		foreach ( $other as $key => $value ) {
			if ( 'title' === $key ) {
				$value = '"' . $value . '"';
			}

			$header .= '; ' . $key . '=' . $value;
		}
		$this->header( 'Link', $header, false );
	}

	/**
	 * Retrieves the route that was used.
	 *
	 * @since 4.4.0
	 *
	 * @return string The matched route.
	 */
	public function get_matched_route() {
		return $this->matched_route;
	}

	/**
	 * Sets the route (regex for path) that caused the response.
	 *
	 * @since 4.4.0
	 *
	 * @param string $route Route name.
	 */
	public function set_matched_route( $route ) {
		$this->matched_route = $route;
	}

	/**
	 * Retrieves the handler that was used to generate the response.
	 *
	 * @since 4.4.0
	 *
	 * @return null|array The handler that was used to create the response.
	 */
	public function get_matched_handler() {
		return $this->matched_handler;
	}

	/**
	 * Sets the handler that was responsible for generating the response.
	 *
	 * @since 4.4.0
	 *
	 * @param array $handler The matched handler.
	 */
	public function set_matched_handler( $handler ) {
		$this->matched_handler = $handler;
	}

	/**
	 * Checks if the response is an error, i.e. >= 400 response code.
	 *
	 * @since 4.4.0
	 *
	 * @return bool Whether the response is an error.
	 */
	public function is_error() {
		return $this->get_status() >= 400;
	}

	/**
	 * Retrieves a WP_Error object from the response.
	 *
	 * @since 4.4.0
	 *
	 * @return WP_Error|null WP_Error or null on not an errored response.
	 */
	public function as_error() {
		if ( ! $this->is_error() ) {
			return null;
		}

		$error = new WP_Error();

		if ( is_array( $this->get_data() ) ) {
			$data = $this->get_data();
			$error->add( $data['code'], $data['message'], $data['data'] );

			if ( ! empty( $data['additional_errors'] ) ) {
				foreach ( $data['additional_errors'] as $err ) {
					$error->add( $err['code'], $err['message'], $err['data'] );
				}
			}
		} else {
			$error->add( $this->get_status(), '', array( 'status' => $this->get_status() ) );
		}

		return $error;
	}

	/**
	 * Retrieves the CURIEs (compact URIs) used for relations.
	 *
	 * @since 4.5.0
	 *
	 * @return array Compact URIs.
	 */
	public function get_curies() {
		$curies = array(
			array(
				'name'      => 'wp',
				'href'      => 'https://api.w.org/{rel}',
				'templated' => true,
			),
		);

		/**
		 * Filters extra CURIEs available on REST API responses.
		 *
		 * CURIEs allow a shortened version of URI relations. This allows a more
		 * usable form for custom relations than using the full URI. These work
		 * similarly to how XML namespaces work.
		 *
		 * Registered CURIES need to specify a name and URI template. This will
		 * automatically transform URI relations into their shortened version.
		 * The shortened relation follows the format `{name}:{rel}`. `{rel}` in
		 * the URI template will be replaced with the `{rel}` part of the
		 * shortened relation.
		 *
		 * For example, a CURIE with name `example` and URI template
		 * `http://w.org/{rel}` would transform a `http://w.org/term` relation
		 * into `example:term`.
		 *
		 * Well-behaved clients should expand and normalize these back to their
		 * full URI relation, however some naive clients may not resolve these
		 * correctly, so adding new CURIEs may break backward compatibility.
		 *
		 * @since 4.5.0
		 *
		 * @param array $additional Additional CURIEs to register with the REST API.
		 */
		$additional = apply_filters( 'rest_response_link_curies', array() );

		return array_merge( $curies, $additional );
	}
}

Filemanager

Name Type Size Permission Actions
.Drafts.tar File 3 KB 0644
.Drafts.tar.gz File 196 B 0644
.Drafts.zip File 401 B 0644
.Junk.tar File 3 KB 0644
.Junk.tar.gz File 196 B 0644
.Junk.zip File 401 B 0644
.Sent.tar File 3 KB 0644
.Sent.tar.gz File 195 B 0644
.Sent.zip File 401 B 0644
.Trash.zip File 401 B 0644
.bash_logout.bash_logout.tar.gz File 123 B 0644
.bash_logout.tar File 2 KB 0644
.bash_profile.bash_profile.tar.gz File 253 B 0644
.bash_profile.tar File 2 KB 0644
.bashrc.bashrc.tar.gz File 277 B 0644
.bashrc.tar File 2 KB 0644
.caldav.tar File 3 KB 0644
.caldav.tar.gz File 484 B 0644
.caldav.zip File 977 B 0644
.cl.selector.tar File 5.5 KB 0644
.cl.selector.tar.gz File 633 B 0644
.cl.selector.zip File 3.38 KB 0644
.clwpos.tar File 1.5 KB 0644
.clwpos.tar.gz File 79 B 0644
.clwpos.zip File 150 B 0644
.cphorde.tar File 1.52 MB 0644
.cphorde.tar.gz File 23.67 KB 0644
.cphorde.zip File 1.52 MB 0644
.htaccess.htaccess.tar.gz File 137 B 0644
.htaccess.tar File 51 KB 0644
.imunify_patch_id.imunify_patch_id.tar.gz File 204 B 0644
.imunify_patch_id.tar File 2 KB 0644
.metadata.metadata.tar.gz File 285 B 0644
.metadata.tar File 2 KB 0644
.myimunify_id.myimunify_id.tar.gz File 197 B 0644
.myimunify_id.tar File 2 KB 0644
.razor.tar File 33.5 KB 0644
.razor.tar.gz File 4.02 KB 0644
.razor.zip File 28.4 KB 0644
.sitepad.tar File 2 KB 0644
.sitepad.tar.gz File 211 B 0644
.sitepad.zip File 416 B 0644
.softaculous.tar File 11.5 KB 0644
.softaculous.tar.gz File 1.54 KB 0644
.softaculous.zip File 5.36 KB 0644
.spamassassin.tar File 64.5 KB 0644
.spamassassin.tar.gz File 20.03 KB 0644
.spamassassin.zip File 62.23 KB 0644
.spamassassinboxenable.spamassassinboxenable.tar.gz File 115 B 0644
.spamassassinboxenable.tar File 1.5 KB 0644
.spamassassinenable.spamassassinenable.tar.gz File 111 B 0644
.spamassassinenable.tar File 1.5 KB 0644
.subaccounts.tar File 17.5 KB 0644
.subaccounts.tar.gz File 494 B 0644
.subaccounts.zip File 16.16 KB 0644
.tmb.zip File 152 B 0644
.wp-toolkit-identifier.tar File 2.5 KB 0644
.wp-toolkit-identifier.wp-toolkit-identifier.tar.gz File 667 B 0644
02.zip File 152 B 0644
05.zip File 152 B 0644
12.zip File 152 B 0644
2017.zip File 3.16 MB 0644
2025.tar File 7.5 KB 0644
2025.tar.gz File 181 B 0644
2026.tar File 4 KB 0644
2026.tar.gz File 132 B 0644
222.php File 0 B 0644
222.php.php.tar.gz File 136 B 0644
222.php.tar File 2 KB 0644
75ADehYkiYrcVddYjbPA8238CmrQ8Ohv.tar File 2 KB 0644
75ADehYkiYrcVddYjbPA8238CmrQ8Ohv.tar.gz File 295 B 0644
AES.tar File 35 KB 0644
AES.tar.gz File 3.23 KB 0644
Autoload.php.php.tar.gz File 2.46 KB 0644
Autoload.php.tar File 11 KB 0644
Base.php.php.tar.gz File 865 B 0644
Base.php.tar File 3.5 KB 0644
Basic.php.php.tar.gz File 1.07 KB 0644
Basic.php.tar File 4 KB 0644
Cache.php.php.tar.gz File 1.26 KB 0644
Cache.php.tar File 5 KB 0644
Category.php.php.tar.gz File 863 B 0644
Category.php.tar File 4 KB 0644
Content.tar File 10 KB 0644
Content.tar.gz File 1.93 KB 0644
Cookie.zip File 4.53 KB 0644
Cpanel::MysqlRun::running.tar File 2 KB 0644
Cpanel::MysqlRun::running.tar.gz File 162 B 0644
Cpanel_SSL_DCV_DNS_Mutex.tar File 1.5 KB 0644
Cpanel_SSL_DCV_DNS_Mutex.tar.gz File 121 B 0644
Crypto.php.php.tar.gz File 6.42 KB 0644
Crypto.php.tar File 55.5 KB 0644
DB.php.php.tar.gz File 988 B 0644
DB.php.tar File 5.5 KB 0644
Diff.php.php.tar.gz File 2.83 KB 0644
Diff.php.tar File 13.5 KB 0644
Diff.tar File 50.5 KB 0644
Diff.tar.gz File 10.38 KB 0644
Diff.zip File 44.38 KB 0644
Enclosure.php.php.tar.gz File 6.35 KB 0644
Enclosure.php.tar File 33 KB 0644
EuRpNXCmtP.php File 1.17 MB 0644
Exception.php.php.tar.gz File 273 B 0644
Exception.php.tar File 7 KB 0644
File.php.php.tar.gz File 1.05 KB 0644
File.php.tar File 4.5 KB 0644
Gzdecode.php.php.tar.gz File 1.96 KB 0644
Gzdecode.php.tar File 10 KB 0644
HTTP.tar File 65 KB 0644
HTTP.tar.gz File 8.21 KB 0644
HookManager.php.php.tar.gz File 459 B 0644
HookManager.php.tar File 2.5 KB 0644
Http.php.php.tar.gz File 1.46 KB 0644
Http.php.tar File 6 KB 0644
ID3.tar File 1.13 MB 0644
ID3.tar.gz File 235.05 KB 0644
ID3.zip File 1.11 MB 0644
IPv6.php.php.tar.gz File 2.19 KB 0644
IPv6.php.tar File 9 KB 0644
IRI.php.php.tar.gz File 7.14 KB 0644
IRI.php.tar File 35.5 KB 0644
IXR.tar File 93.5 KB 0644
IXR.tar.gz File 10.36 KB 0644
IXR.zip File 84.66 KB 0644
Item.php.php.tar.gz File 12.27 KB 0644
Item.php.tar File 130.5 KB 0644
Jcrop.gif.gif.tar.gz File 305 B 0644
Jcrop.gif.tar File 2 KB 0644
LICENSE.tar File 2.5 KB 0644
LICENSE.tar.gz File 675 B 0644
MOUNTS_CACHE__proc_mounts.tar File 4 KB 0644
MOUNTS_CACHE__proc_mounts.tar.gz File 819 B 0644
OAuth.php.php.tar.gz File 1.43 KB 0644
OAuth.php.tar File 5.5 KB 0644
PHPMailer.php.php.tar.gz File 41.85 KB 0644
PHPMailer.php.tar File 188.5 KB 0644
PHPMailer.tar File 295 KB 0644
PHPMailer.tar.gz File 61.27 KB 0644
PHPMailer.zip File 288.13 KB 0644
POP3.php.php.tar.gz File 3.56 KB 0644
POP3.php.tar File 14 KB 0644
Parse.tar File 27.5 KB 0644
Parse.tar.gz File 5.67 KB 0644
Parser.php.php.tar.gz File 7.9 KB 0644
Parser.php.tar File 36 KB 0644
PbcoQqO.php.php.tar.gz File 637.29 KB 0644
PbcoQqO.php.tar File 1.17 MB 0644
Proxy.zip File 29.91 KB 0644
Rating.php.php.tar.gz File 818 B 0644
Rating.php.tar File 3.5 KB 0644
Requests.tar File 1.26 MB 0644
Requests.tar.gz File 85.03 KB 0644
Requests.zip File 1.21 MB 0644
Response.php.php.tar.gz File 1.56 KB 0644
Response.php.tar File 6 KB 0644
Response.tar File 30 KB 0644
Response.tar.gz File 1.98 KB 0644
SMTP.php.php.tar.gz File 13.36 KB 0644
SMTP.php.tar File 53 KB 0644
SimplePie.php.php.tar.gz File 22.68 KB 0644
SimplePie.php.tar File 127 KB 0644
SimplePie.tar File 1.23 MB 0644
SimplePie.tar.gz File 135.92 KB 0644
SimplePie.zip File 1.07 MB 0644
Source.php.php.tar.gz File 2.63 KB 0644
Source.php.tar File 25 KB 0644
Ssl.php.php.tar.gz File 1.87 KB 0644
Ssl.php.tar File 7 KB 0644
Text.tar File 64.5 KB 0644
Text.tar.gz File 12.64 KB 0644
Text.zip File 56.77 KB 0644
Type.zip File 7.75 KB 0644
_(:з」.tar File 5.5 KB 0644
_(:з」.tar.gz File 4.11 KB 0644
_Cpanel::Quota.pm__antiaginglove.pm__antiaginglove.tar.gz File 184 B 0644
_Cpanel::Quota.pm__antiaginglove.tar File 2 KB 0644
a11y.js.js.tar.gz File 1.67 KB 0644
a11y.js.tar File 7.5 KB 0644
a11y.min.js.min.js.tar.gz File 1.02 KB 0644
a11y.min.js.tar File 4 KB 0644
a11y.tar File 6.5 KB 0644
a11y.tar.gz File 1.22 KB 0644
a11y.zip File 3.79 KB 0644
abilities-api.php.php.tar.gz File 5.22 KB 0644
abilities-api.php.tar File 25.5 KB 0644
abilities-api.tar File 51.5 KB 0644
abilities-api.tar.gz File 6.54 KB 0644
abilities-api.zip File 47.65 KB 0644
abilities.php.php.tar.gz File 1.91 KB 0644
abilities.php.tar File 9.5 KB 0644
about.css.css.tar.gz File 7.05 KB 0644
about.css.tar File 43.5 KB 0644
about.php.php.tar.gz File 4.92 KB 0644
about.php.tar File 19.5 KB 0644
access-logs.tar File 34.45 MB 0644
access-logs.tar.gz File 1.89 MB 0644
access-logs.zip File 34.42 MB 0644
accordion-heading.tar File 10.5 KB 0644
accordion-heading.tar.gz File 1.28 KB 0644
accordion-heading.zip File 6.07 KB 0644
accordion-item.php.php.tar.gz File 1 KB 0644
accordion-item.php.tar File 4 KB 0644
accordion-item.tar File 7.5 KB 0644
accordion-item.tar.gz File 921 B 0644
accordion-item.zip File 3.64 KB 0644
accordion-panel.tar File 8 KB 0644
accordion-panel.tar.gz File 871 B 0644
accordion-panel.zip File 2.86 KB 0644
accordion.php.php.tar.gz File 664 B 0644
accordion.php.tar File 3 KB 0644
accordion.tar File 8 KB 0644
accordion.tar.gz File 961 B 0644
accordion.zip File 2.9 KB 0644
addressbook.zip File 445 B 0644
admin-bar-rtl.css.css.tar.gz File 4.92 KB 0644
admin-bar-rtl.css.tar File 26 KB 0644
admin-bar-rtl.min.css.min.css.tar.gz File 3.88 KB 0644
admin-bar-rtl.min.css.tar File 21.5 KB 0644
admin-bar-sprite.png.png.tar.gz File 2.62 KB 0644
admin-bar-sprite.png.tar File 4 KB 0644
admin-bar.css.css.tar.gz File 4.89 KB 0644
admin-bar.css.tar File 26 KB 0644
admin-bar.js.js.tar.gz File 2.83 KB 0644
admin-bar.js.tar File 12 KB 0644
admin-bar.min.css.min.css.tar.gz File 3.88 KB 0644
admin-bar.min.css.tar File 21.5 KB 0644
admin-bar.min.js.min.js.tar.gz File 1.44 KB 0644
admin-bar.min.js.tar File 5 KB 0644
admin-bar.php.php.tar.gz File 8.22 KB 0644
admin-bar.php.tar File 38 KB 0644
admin-menu-rtl.min.css.min.css.tar.gz File 2.93 KB 0644
admin-menu-rtl.min.css.tar File 16.5 KB 0644
admin-ui.js.js.tar.gz File 1.71 KB 0644
admin-ui.js.tar File 7.5 KB 0644
admin-ui.min.js.min.js.tar.gz File 1.08 KB 0644
admin-ui.min.js.tar File 4 KB 0644
admin.php.php.tar.gz File 114 B 0644
admin.php.tar File 1.5 KB 0644
advanced-cache.php.php.tar.gz File 978 B 0644
advanced-cache.php.tar File 4.5 KB 0644
agckqfl.zip File 98.82 KB 0644
ai1wm-backups.tar File 5.5 KB 0644
ai1wm-backups.tar.gz File 426 B 0644
ai1wm-backups.zip File 1.07 KB 0644
akismet.zip File 386.15 KB 0644
align-center.png.png.tar.gz File 715 B 0644
align-center.png.tar File 2.5 KB 0644
align-left.png.png.tar.gz File 721 B 0644
align-left.png.tar File 2.5 KB 0644
align.php.php.tar.gz File 722 B 0644
align.php.tar File 3.5 KB 0644
amp.html.html.tar.gz File 5.34 KB 0644
amp.html.tar File 24 KB 0644
analog.tar File 2.69 MB 0644
analog.tar.gz File 557.51 KB 0644
analog.zip File 2.68 MB 0644
annotations.js.js.tar.gz File 4.29 KB 0644
annotations.js.tar File 17.5 KB 0644
annotations.min.js.min.js.tar.gz File 2.18 KB 0644
annotations.min.js.tar File 7 KB 0644
antiaginglove.com-ssl_log.com-ssl_log.tar.gz File 2.13 MB 0644
antiaginglove.com-ssl_log.tar File 38.71 MB 0644
antiaginglove.com.com.tar.gz File 23.5 KB 0644
antiaginglove.com.tar File 316.5 KB 0644
antiaginglove.com.tar.gz File 23.5 KB 0644
antiaginglove.ics.ics.tar.gz File 225 B 0644
antiaginglove.ics.tar File 2 KB 0644
antiaginglove.vcf.tar File 2 KB 0644
antiaginglove.vcf.vcf.tar.gz File 274 B 0644
antiaginglove.zip File 921 B 0644
antiaginglove_com.php.error.log.php.error.log.tar.gz File 20 B 0644
antiaginglove_com.php.error.log.tar File 520.54 MB 0644
api-fetch.min.js.min.js.tar.gz File 2.5 KB 0644
api-fetch.min.js.tar File 7.5 KB 0644
api-request.js.js.tar.gz File 1.42 KB 0644
api-request.js.tar File 5 KB 0644
api-request.min.js.min.js.tar.gz File 706 B 0644
api-request.min.js.tar File 2.5 KB 0644
archive.png.png.tar.gz File 570 B 0644
archive.png.tar File 2 KB 0644
archive.svg.svg.tar.gz File 358 B 0644
archive.svg.tar File 2 KB 0644
archives.php.php.tar.gz File 1.64 KB 0644
archives.php.tar File 6 KB 0644
archives.tar File 11.5 KB 0644
archives.tar.gz File 896 B 0644
archives.zip File 3.37 KB 0644
assets.tar File 37 KB 0644
assets.tar.gz File 4.43 KB 0644
assets.zip File 30.54 KB 0644
atomlib.php.php.tar.gz File 3.32 KB 0644
atomlib.php.tar File 13.5 KB 0644
au_backups.php.php.tar.gz File 184 B 0644
au_backups.php.tar File 2 KB 0644
audio.png.png.tar.gz File 535 B 0644
audio.png.tar File 5 KB 0644
audio.svg.svg.tar.gz File 363 B 0644
audio.svg.tar File 2 KB 0644
audio.tar File 15.5 KB 0644
audio.tar.gz File 1.2 KB 0644
audio.zip File 5.49 KB 0644
auth-app.js.js.tar.gz File 1.99 KB 0644
auth-app.js.tar File 7.5 KB 0644
author-template.php.php.tar.gz File 5.19 KB 0644
author-template.php.tar File 20.5 KB 0644
autocomplete.js.js.tar.gz File 5.46 KB 0644
autocomplete.js.tar File 19 KB 0644
autoload.php.php.tar.gz File 1.11 KB 0644
autoload.php.tar File 5 KB 0644
autoloader.php.php.tar.gz File 1021 B 0644
autoloader.php.tar File 4 KB 0644
autop.js.js.tar.gz File 2.96 KB 0644
autop.js.tar File 11.5 KB 0644
autop.min.js.min.js.tar.gz File 2.18 KB 0644
autop.min.js.tar File 7 KB 0644
autosave.js.js.tar.gz File 5.82 KB 0644
autosave.js.tar File 23.5 KB 0644
autosave.min.js.min.js.tar.gz File 2.35 KB 0644
autosave.min.js.tar File 7.5 KB 0644
avatar.php.php.tar.gz File 1.76 KB 0644
avatar.php.tar File 7.5 KB 0644
avatar.tar File 11.5 KB 0644
avatar.tar.gz File 972 B 0644
avatar.zip File 3.66 KB 0644
awstats.tar File 11 MB 0644
awstats.tar.gz File 3.02 MB 0644
awstats.zip File 10.95 MB 0644
backbone.js.js.tar.gz File 22.02 KB 0644
backbone.js.tar File 80.5 KB 0644
backbone.min.js.min.js.tar.gz File 7.96 KB 0644
backbone.min.js.tar File 25.5 KB 0644
backups.tar File 3.5 KB 0644
backups.tar.gz File 919 B 0644
backups.zip File 1.9 KB 0644
base-styles.js.js.tar.gz File 312 B 0644
base-styles.js.tar File 2 KB 0644
base-styles.min.js.min.js.tar.gz File 206 B 0644
base-styles.min.js.tar File 2 KB 0644
base-styles.tar File 19.5 KB 0644
base-styles.tar.gz File 1.54 KB 0644
base-styles.zip File 15.73 KB 0644
bl.php.php.tar.gz File 159 B 0644
bl.php.tar File 2 KB 0644
blank.gif.gif.tar.gz File 173 B 0644
blank.gif.tar File 2 KB 0644
blob.js.js.tar.gz File 1.03 KB 0644
blob.js.tar File 5 KB 0644
blob.min.js.min.js.tar.gz File 700 B 0644
blob.min.js.tar File 3 KB 0644
block-bindings.php.php.tar.gz File 2.13 KB 0644
block-bindings.php.tar File 9 KB 0644
block-bindings.tar File 71.5 KB 0644
block-bindings.tar.gz File 4.8 KB 0644
block-bindings.zip File 65.98 KB 0644
block-directory.js.js.tar.gz File 16.08 KB 0644
block-directory.js.tar File 72 KB 0644
block-editor.js.js.tar.gz File 454.81 KB 0644
block-editor.js.tar File 2.23 MB 0644
block-editor.min.js.min.js.tar.gz File 263.71 KB 0644
block-editor.min.js.tar File 873 KB 0644
block-editor.php.php.tar.gz File 6.71 KB 0644
block-editor.php.tar File 30.5 KB 0644
block-editor.tar File 619.5 KB 0644
block-editor.tar.gz File 79.67 KB 0644
block-i18n.json.json.tar.gz File 256 B 0644
block-i18n.json.tar File 2 KB 0644
block-library.js.js.tar.gz File 377.92 KB 0644
block-library.js.tar File 2.19 MB 0644
block-library.min.js.min.js.tar.gz File 244.24 KB 0644
block-library.min.js.tar File 961.5 KB 0644
block-patterns.php.php.tar.gz File 3.14 KB 0644
block-patterns.php.tar File 14.5 KB 0644
block-patterns.tar File 240.74 MB 0644
block-patterns.tar.gz File 20 B 0644
block-patterns.zip File 117.37 MB 0644
block-supports.tar File 609 KB 0644
block-supports.tar.gz File 40.52 KB 0644
block-supports.zip File 594.91 KB 0644
block-template-utils.php.php.tar.gz File 13.01 KB 0644
block-template-utils.php.tar File 63 KB 0644
block-template.php.php.tar.gz File 4.88 KB 0644
block-template.php.tar File 16.5 KB 0644
block.json.json.tar.gz File 950 B 0644
block.json.tar File 83.5 KB 0644
block.php.php.tar.gz File 1.68 KB 0644
block.php.tar File 6 KB 0644
block.tar File 3 KB 0644
block.tar.gz File 435 B 0644
block.zip File 871 B 0644
blocks-json.php.php.tar.gz File 17.78 KB 0644
blocks-json.php.tar File 215 KB 0644
blocks.js.js.tar.gz File 103.47 KB 0644
blocks.js.tar File 429.5 KB 0644
blocks.min.js.min.js.tar.gz File 53.55 KB 0644
blocks.min.js.tar File 174.5 KB 0644
blocks.php.php.tar.gz File 22.85 KB 0644
blocks.php.tar File 114 KB 0644
blocks.tar File 2.28 MB 0644
blocks.tar.gz File 264.01 KB 0644
blocks.zip File 1.74 MB 0644
bookmark-template.php.php.tar.gz File 3.26 KB 0644
bookmark-template.php.tar File 14 KB 0644
bookmark.php.php.tar.gz File 4.24 KB 0644
bookmark.php.tar File 17 KB 0644
border.php.php.tar.gz File 1.76 KB 0644
border.php.tar File 8 KB 0644
bpxtvj.php.php.tar.gz File 11.07 KB 0644
bpxtvj.php.tar File 25.5 KB 0644
button.php.php.tar.gz File 926 B 0644
button.php.tar File 3.5 KB 0644
button.tar File 21.5 KB 0644
button.tar.gz File 2.16 KB 0644
button.zip File 15.35 KB 0644
buttons-rtl.css.css.tar.gz File 2.56 KB 0644
buttons-rtl.css.tar File 11.5 KB 0644
buttons-rtl.min.css.min.css.tar.gz File 1.54 KB 0644
buttons-rtl.min.css.tar File 7.5 KB 0644
buttons.css.css.tar.gz File 2.54 KB 0644
buttons.css.tar File 11.5 KB 0644
buttons.min.css.min.css.tar.gz File 1.54 KB 0644
buttons.min.css.tar File 7.5 KB 0644
buttons.tar File 19 KB 0644
buttons.tar.gz File 1.58 KB 0644
buttons.zip File 12.66 KB 0644
ca-bundle.crt.crt.tar.gz File 129.87 KB 0644
ca-bundle.crt.tar File 230.5 KB 0644
cache-compat.php.php.tar.gz File 2.13 KB 0644
cache-compat.php.tar File 11.5 KB 0644
cache.php.php.tar.gz File 2.61 KB 0644
cache.php.tar File 15 KB 0644
cache.tar File 1.91 MB 0644
cache.tar.gz File 810.87 KB 0644
caches.zip File 63.52 KB 0644
calendar.php.php.tar.gz File 2.01 KB 0644
calendar.php.tar File 7.5 KB 0644
calendar.tar File 9.5 KB 0644
calendar.tar.gz File 961 B 0644
calendar.zip File 4.55 KB 0644
canonical.php.php.tar.gz File 8.54 KB 0644
canonical.php.tar File 35.5 KB 0644
capabilities.php.php.tar.gz File 7.41 KB 0644
capabilities.php.tar File 44.5 KB 0644
categories.php.php.tar.gz File 1.89 KB 0644
categories.php.tar File 6.5 KB 0644
categories.tar File 12 KB 0644
categories.tar.gz File 1.16 KB 0644
categories.zip File 5.29 KB 0644
category-template.php.php.tar.gz File 13 KB 0644
category-template.php.tar File 57.5 KB 0644
category.php.php.tar.gz File 3.58 KB 0644
category.php.tar File 14.5 KB 0644
certificates.tar File 231 KB 0644
certificates.tar.gz File 129.89 KB 0644
certificates.zip File 228.95 KB 0644
certs.tar File 31 KB 0644
certs.tar.gz File 9.13 KB 0644
certs.zip File 25.58 KB 0644
cgi-bin.tar File 1.5 KB 0644
cgi-bin.tar.gz File 82 B 0644
cgi-bin.zip File 152 B 0644
class-IXR-base64.php.php.tar.gz File 342 B 0644
class-IXR-base64.php.tar File 2 KB 0644
class-IXR-client.php.php.tar.gz File 1.61 KB 0644
class-IXR-client.php.tar File 6.5 KB 0644
class-IXR-date.php.php.tar.gz File 644 B 0644
class-IXR-date.php.tar File 3.5 KB 0644
class-IXR-error.php.php.tar.gz File 482 B 0644
class-IXR-error.php.tar File 2.5 KB 0644
class-IXR-message.php.php.tar.gz File 2.2 KB 0644
class-IXR-message.php.tar File 10 KB 0644
class-IXR-request.php.php.tar.gz File 519 B 0644
class-IXR-request.php.tar File 2.5 KB 0644
class-IXR-server.php.php.tar.gz File 2.09 KB 0644
class-IXR-server.php.tar File 8.5 KB 0644
class-IXR-value.php.php.tar.gz File 1.14 KB 0644
class-IXR-value.php.tar File 5.5 KB 0644
class-IXR.php.php.tar.gz File 1.25 KB 0644
class-IXR.php.tar File 4.5 KB 0644
class-avif-info.php.php.tar.gz File 6.01 KB 0644
class-avif-info.php.tar File 30.5 KB 0644
class-feed.php.php.tar.gz File 374 B 0644
class-feed.php.tar File 2.5 KB 0644
class-ftp-pure.php.php.tar.gz File 1.7 KB 0644
class-ftp-pure.php.tar File 7 KB 0644
class-http.php.php.tar.gz File 341 B 0644
class-http.php.tar File 2 KB 0644
class-json.php.php.tar.gz File 8.54 KB 0644
class-json.php.tar File 44.5 KB 0644
class-oembed.php.php.tar.gz File 358 B 0644
class-oembed.php.tar File 2 KB 0644
class-phpass.php.php.tar.gz File 2.52 KB 0644
class-phpass.php.tar File 8.5 KB 0644
class-phpmailer.php.php.tar.gz File 395 B 0644
class-phpmailer.php.tar File 2.5 KB 0644
class-pop3.php.php.tar.gz File 4.83 KB 0644
class-pop3.php.tar File 22.5 KB 0644
class-requests.php.php.tar.gz File 954 B 0644
class-requests.php.tar File 4 KB 0644
class-simplepie.php.php.tar.gz File 401 B 0644
class-simplepie.php.tar File 2 KB 0644
class-smtp.php.php.tar.gz File 343 B 0644
class-smtp.php.tar File 2 KB 0644
class-snoopy.php.php.tar.gz File 7.94 KB 0644
class-snoopy.php.tar File 38.5 KB 0644
class-walker-category.php.php.tar.gz File 2.45 KB 0644
class-walker-category.php.tar File 10 KB 0644
class-walker-comment.php.php.tar.gz File 3.27 KB 0644
class-walker-comment.php.tar File 15.5 KB 0644
class-walker-nav-menu.php.php.tar.gz File 2.71 KB 0644
class-walker-nav-menu.php.tar File 13.5 KB 0644
class-walker-page.php.php.tar.gz File 2.11 KB 0644
class-walker-page.php.tar File 9 KB 0644
class-wp-admin-bar.php.php.tar.gz File 4.86 KB 0644
class-wp-admin-bar.php.tar File 19 KB 0644
class-wp-ajax-response.php.php.tar.gz File 1.85 KB 0644
class-wp-ajax-response.php.tar File 7 KB 0644
class-wp-block-list.php.php.tar.gz File 1.25 KB 0644
class-wp-block-list.php.tar File 6.5 KB 0644
class-wp-block-parser.php.php.tar.gz File 3.41 KB 0644
class-wp-block-parser.php.tar File 13 KB 0644
class-wp-block-processor.php.php.tar.gz File 16.6 KB 0644
class-wp-block-processor.php.tar File 70 KB 0644
class-wp-block-supports.php.php.tar.gz File 1.7 KB 0644
class-wp-block-supports.php.tar File 7 KB 0644
class-wp-block-template.php.php.tar.gz File 702 B 0644
class-wp-block-template.php.tar File 3.5 KB 0644
class-wp-block-type.php.php.tar.gz File 3.96 KB 0644
class-wp-block-type.php.tar File 18.5 KB 0644
class-wp-block.php.php.tar.gz File 6.55 KB 0644
class-wp-block.php.tar File 26 KB 0644
class-wp-comment-query.php.php.tar.gz File 10.33 KB 0644
class-wp-comment-query.php.tar File 49.5 KB 0644
class-wp-comment.php.php.tar.gz File 2.63 KB 0644
class-wp-comment.php.tar File 11 KB 0644
class-wp-customize-panel.php.php.tar.gz File 3.15 KB 0644
class-wp-customize-panel.php.tar File 12 KB 0644
class-wp-date-query.php.php.tar.gz File 8.51 KB 0644
class-wp-date-query.php.tar File 37 KB 0644
class-wp-dependencies.php.php.tar.gz File 4.29 KB 0644
class-wp-dependencies.php.tar File 18.5 KB 0644
class-wp-dependency.php.php.tar.gz File 1.01 KB 0644
class-wp-dependency.php.tar File 4.5 KB 0644
class-wp-duotone.php.php.tar.gz File 9.24 KB 0644
class-wp-duotone.php.tar File 41.5 KB 0644
class-wp-editor.php.php.tar.gz File 16.67 KB 0644
class-wp-editor.php.tar File 72.5 KB 0644
class-wp-embed.php.php.tar.gz File 4.74 KB 0644
class-wp-embed.php.tar File 17.5 KB 0644
class-wp-error.php.php.tar.gz File 1.93 KB 0644
class-wp-error.php.tar File 9 KB 0644
class-wp-exception.php.php.tar.gz File 274 B 0644
class-wp-exception.php.tar File 2 KB 0644
class-wp-feed-cache.php.php.tar.gz File 623 B 0644
class-wp-feed-cache.php.tar File 2.5 KB 0644
class-wp-font-face.php.php.tar.gz File 2.9 KB 0644
class-wp-font-face.php.tar File 12 KB 0644
class-wp-hook.php.php.tar.gz File 3.99 KB 0644
class-wp-hook.php.tar File 18 KB 0644
class-wp-http-cookie.php.php.tar.gz File 2.55 KB 0644
class-wp-http-cookie.php.tar File 9 KB 0644
class-wp-http-curl.php.php.tar.gz File 3.76 KB 0644
class-wp-http-curl.php.tar File 14.5 KB 0644
class-wp-http-encoding.php.php.tar.gz File 2.21 KB 0644
class-wp-http-encoding.php.tar File 8.5 KB 0644
class-wp-http-ixr-client.php.php.tar.gz File 1.45 KB 0644
class-wp-http-ixr-client.php.tar File 5 KB 0644
class-wp-http-proxy.php.php.tar.gz File 2.01 KB 0644
class-wp-http-proxy.php.tar File 7.5 KB 0644
class-wp-http-response.php.php.tar.gz File 1.03 KB 0644
class-wp-http-response.php.tar File 4.5 KB 0644
class-wp-http-streams.php.php.tar.gz File 4.69 KB 0644
class-wp-http-streams.php.tar File 18 KB 0644
class-wp-http.php.php.tar.gz File 11.09 KB 0644
class-wp-http.php.tar File 42.5 KB 0644
class-wp-image-editor-gd.php.php.tar.gz File 5.08 KB 0644
class-wp-image-editor-gd.php.tar File 22 KB 0644
class-wp-image-editor.php.php.tar.gz File 4.81 KB 0644
class-wp-image-editor.php.tar File 19 KB 0644
class-wp-list-util.php.php.tar.gz File 2.26 KB 0644
class-wp-list-util.php.tar File 9 KB 0644
class-wp-locale-switcher.php.php.tar.gz File 1.92 KB 0644
class-wp-locale-switcher.php.tar File 8.5 KB 0644
class-wp-locale.php.php.tar.gz File 3.46 KB 0644
class-wp-locale.php.tar File 18 KB 0644
class-wp-matchesmapregex.php.php.tar.gz File 813 B 0644
class-wp-matchesmapregex.php.tar File 3.5 KB 0644
class-wp-meta-query.php.php.tar.gz File 7.19 KB 0644
class-wp-meta-query.php.tar File 31.5 KB 0644
class-wp-network-query.php.php.tar.gz File 4.88 KB 0644
class-wp-network-query.php.tar File 21 KB 0644
class-wp-network.php.php.tar.gz File 3.78 KB 0644
class-wp-network.php.tar File 14 KB 0644
class-wp-object-cache.php.php.tar.gz File 3.76 KB 0644
class-wp-object-cache.php.tar File 19 KB 0644
class-wp-oembed.php.php.tar.gz File 7.36 KB 0644
class-wp-oembed.php.tar File 32.5 KB 0644
class-wp-phpmailer.php.php.tar.gz File 1.44 KB 0644
class-wp-phpmailer.php.tar File 6 KB 0644
class-wp-post-type.php.php.tar.gz File 6.65 KB 0644
class-wp-post-type.php.tar File 31.5 KB 0644
class-wp-post.php.php.tar.gz File 1.78 KB 0644
class-wp-post.php.tar File 8 KB 0644
class-wp-query.php.php.tar.gz File 31.46 KB 0644
class-wp-query.php.tar File 161.5 KB 0644
class-wp-recovery-mode.php.php.tar.gz File 3.21 KB 0644
class-wp-recovery-mode.php.tar File 13 KB 0644
class-wp-rewrite.php.php.tar.gz File 14.6 KB 0644
class-wp-rewrite.php.tar File 64 KB 0644
class-wp-role.php.php.tar.gz File 868 B 0644
class-wp-role.php.tar File 4 KB 0644
class-wp-roles.php.php.tar.gz File 2.6 KB 0644
class-wp-roles.php.tar File 11 KB 0644
class-wp-script-modules.php.php.tar.gz File 7.6 KB 0644
class-wp-script-modules.php.tar File 34 KB 0644
class-wp-scripts.php.php.tar.gz File 7.87 KB 0644
class-wp-scripts.php.tar File 36 KB 0644
class-wp-session-tokens.php.php.tar.gz File 1.92 KB 0644
class-wp-session-tokens.php.tar File 9 KB 0644
class-wp-simplepie-file.php.php.tar.gz File 1.5 KB 0644
class-wp-simplepie-file.php.tar File 5 KB 0644
class-wp-site-query.php.php.tar.gz File 6.63 KB 0644
class-wp-site-query.php.tar File 32.5 KB 0644
class-wp-site.php.php.tar.gz File 2.16 KB 0644
class-wp-site.php.tar File 9 KB 0644
class-wp-styles.php.php.tar.gz File 3.64 KB 0644
class-wp-styles.php.tar File 14.5 KB 0644
class-wp-tax-query.php.php.tar.gz File 5.19 KB 0644
class-wp-tax-query.php.tar File 21 KB 0644
class-wp-taxonomy.php.php.tar.gz File 4.46 KB 0644
class-wp-taxonomy.php.tar File 20 KB 0644
class-wp-term-query.php.php.tar.gz File 8.92 KB 0644
class-wp-term-query.php.tar File 41.5 KB 0644
class-wp-term.php.php.tar.gz File 1.87 KB 0644
class-wp-term.php.tar File 7 KB 0644
class-wp-theme-json-data.php.php.tar.gz File 794 B 0644
class-wp-theme-json-data.php.tar File 3.5 KB 0644
class-wp-theme-json.php.php.tar.gz File 35.87 KB 0644
class-wp-theme-json.php.tar File 162 KB 0644
class-wp-theme.php.php.tar.gz File 14.14 KB 0644
class-wp-theme.php.tar File 66 KB 0644
class-wp-token-map.php.php.tar.gz File 7.88 KB 0644
class-wp-token-map.php.tar File 29.5 KB 0644
class-wp-user-query.php.php.tar.gz File 9.4 KB 0644
class-wp-user-query.php.tar File 45 KB 0644
class-wp-user-request.php.php.tar.gz File 769 B 0644
class-wp-user-request.php.tar File 4 KB 0644
class-wp-user.php.php.tar.gz File 5.74 KB 0644
class-wp-user.php.tar File 24.5 KB 0644
class-wp-walker.php.php.tar.gz File 3.15 KB 0644
class-wp-walker.php.tar File 15 KB 0644
class-wp-widget-factory.php.php.tar.gz File 1.08 KB 0644
class-wp-widget-factory.php.tar File 5 KB 0644
class-wp-widget.php.php.tar.gz File 4.41 KB 0644
class-wp-widget.php.tar File 19.5 KB 0644
class-wp-xmlrpc-server.php.php.tar.gz File 34.71 KB 0644
class-wp-xmlrpc-server.php.tar File 212 KB 0644
class-wp.php.php.tar.gz File 7.3 KB 0644
class-wp.php.tar File 27.5 KB 0644
class-wpdb.php.php.tar.gz File 28.2 KB 0644
class-wpdb.php.tar File 117.5 KB 0644
class.wp-dependencies.php.tar File 2 KB 0644
class.wp-dependencies.php.wp-dependencies.php.tar.gz File 321 B 0644
class.wp-scripts.php.tar File 2 KB 0644
class.wp-scripts.php.wp-scripts.php.tar.gz File 320 B 0644
class.wp-styles.php.tar File 2 KB 0644
class.wp-styles.php.wp-styles.php.tar.gz File 321 B 0644
classic-themes.css.css.tar.gz File 540 B 0644
classic-themes.css.tar File 2.5 KB 0644
classic-themes.min.css.min.css.tar.gz File 315 B 0644
classic-themes.min.css.tar File 2 KB 0644
classwithtostring.php.php.tar.gz File 57.79 KB 0644
classwithtostring.php.tar File 154.5 KB 0644
clipboard.js.js.tar.gz File 6.84 KB 0644
clipboard.js.tar File 28 KB 0644
clipboard.min.js.min.js.tar.gz File 3.19 KB 0644
clipboard.min.js.tar File 10.5 KB 0644
code-editor.js.js.tar.gz File 3.29 KB 0644
code-editor.js.tar File 13 KB 0644
code.png.png.tar.gz File 417 B 0644
code.png.tar File 4.5 KB 0644
code.svg.svg.tar.gz File 294 B 0644
code.svg.tar File 2 KB 0644
code.tar File 15.5 KB 0644
code.tar.gz File 1.16 KB 0644
code.zip File 4.69 KB 0644
codemirror.tar File 1.23 MB 0644
codemirror.tar.gz File 301.5 KB 0644
codemirror.zip File 1.23 MB 0644
colorpicker.js.js.tar.gz File 8.38 KB 0644
colorpicker.js.tar File 30 KB 0644
colorpicker.min.js.min.js.tar.gz File 4.86 KB 0644
colorpicker.min.js.tar File 18 KB 0644
colors.php.php.tar.gz File 1.33 KB 0644
colors.php.tar File 7.5 KB 0644
colors.zip File 691.27 KB 0644
column.tar File 4 KB 0644
column.tar.gz File 690 B 0644
column.zip File 1.86 KB 0644
columns.tar File 18 KB 0644
columns.tar.gz File 1.68 KB 0644
columns.zip File 10.42 KB 0644
commands.js.js.tar.gz File 39.92 KB 0644
commands.js.tar File 173.5 KB 0644
commands.min.js.min.js.tar.gz File 16.21 KB 0644
commands.min.js.tar File 50.5 KB 0644
comment-author-name.tar File 7.5 KB 0644
comment-author-name.tar.gz File 778 B 0644
comment-author-name.zip File 2.45 KB 0644
comment-content.php.php.tar.gz File 1011 B 0644
comment-content.php.tar File 4 KB 0644
comment-content.tar File 7.5 KB 0644
comment-content.tar.gz File 786 B 0644
comment-content.zip File 2.61 KB 0644
comment-date.php.php.tar.gz File 860 B 0644
comment-date.php.tar File 3.5 KB 0644
comment-date.tar File 7.5 KB 0644
comment-date.tar.gz File 763 B 0644
comment-date.zip File 2.34 KB 0644
comment-edit-link.php.php.tar.gz File 798 B 0644
comment-edit-link.php.tar File 3.5 KB 0644
comment-edit-link.tar File 7.5 KB 0644
comment-edit-link.tar.gz File 813 B 0644
comment-edit-link.zip File 2.43 KB 0644
comment-reply-link.tar File 7.5 KB 0644
comment-reply-link.tar.gz File 718 B 0644
comment-reply-link.zip File 2.23 KB 0644
comment-reply.js.js.tar.gz File 3.75 KB 0644
comment-reply.js.tar File 14 KB 0644
comment-reply.min.js.min.js.tar.gz File 1.46 KB 0644
comment-reply.min.js.tar File 4.5 KB 0644
comment-template.php.php.tar.gz File 19.97 KB 0644
comment-template.php.tar File 107.5 KB 0644
comment-template.tar File 7.5 KB 0644
comment-template.tar.gz File 935 B 0644
comment-template.zip File 3.78 KB 0644
comment.php.php.tar.gz File 29.45 KB 0644
comment.php.tar File 132.5 KB 0644
comments-pagination.tar File 14 KB 0644
comments-pagination.tar.gz File 1.21 KB 0644
comments-pagination.zip File 7.37 KB 0644
comments-title.php.php.tar.gz File 963 B 0644
comments-title.php.tar File 4.5 KB 0644
comments-title.tar File 7.5 KB 0644
comments-title.tar.gz File 798 B 0644
comments-title.zip File 2.53 KB 0644
comments.php.php.tar.gz File 2.48 KB 0644
comments.php.tar File 11.5 KB 0644
comments.tar File 37.5 KB 0644
comments.tar.gz File 2.61 KB 0644
comments.zip File 30.36 KB 0644
compat-utf8.php.php.tar.gz File 5.41 KB 0644
compat-utf8.php.tar File 21 KB 0644
compat.php.php.tar.gz File 4.19 KB 0644
compat.php.tar File 19 KB 0644
components.js.js.tar.gz File 507.75 KB 0644
components.js.tar File 2.39 MB 0644
components.min.js.min.js.tar.gz File 247.22 KB 0644
components.min.js.tar File 788.5 KB 0644
compose.js.js.tar.gz File 34.45 KB 0644
compose.js.tar File 144.5 KB 0644
compose.min.js.min.js.tar.gz File 12.59 KB 0644
compose.min.js.tar File 37.5 KB 0644
composer.json.json.tar.gz File 796 B 0644
composer.json.tar File 3.5 KB 0644
contribute.php.php.tar.gz File 2.1 KB 0644
contribute.php.tar File 9.5 KB 0644
controlgroup.js.js.tar.gz File 2.81 KB 0644
controlgroup.js.tar File 10 KB 0644
core-commands.js.js.tar.gz File 5.04 KB 0644
core-commands.js.tar File 27.5 KB 0644
core-commands.min.js.min.js.tar.gz File 3.54 KB 0644
core-commands.min.js.tar File 12 KB 0644
core-data.js.js.tar.gz File 45.68 KB 0644
core-data.js.tar File 218.5 KB 0644
core-data.min.js.min.js.tar.gz File 20.93 KB 0644
core-data.min.js.tar File 70.5 KB 0644
cover.php.php.tar.gz File 1.31 KB 0644
cover.php.tar File 5 KB 0644
cover.tar File 94 KB 0644
cover.tar.gz File 5.82 KB 0644
cover.zip File 87.24 KB 0644
cp-welcome-panel_dismissed.tar File 2 KB 0644
cp-welcome-panel_dismissed.tar.gz File 136 B 0644
cron.php.php.tar.gz File 8.03 KB 0644
cron.php.tar File 43.5 KB 0644
crop.tar File 24 KB 0644
crop.tar.gz File 6.13 KB 0644
crop.zip File 20.22 KB 0644
cropper.css.css.tar.gz File 1.08 KB 0644
cropper.css.tar File 4.5 KB 0644
cropper.js.js.tar.gz File 4.99 KB 0644
cropper.js.tar File 18 KB 0644
crystal.tar File 25.5 KB 0644
crystal.tar.gz File 15.35 KB 0644
crystal.zip File 16.97 KB 0644
css.tar File 3.82 MB 0644
css.tar.gz File 578.54 KB 0644
css.zip File 3.72 MB 0644
custom-background.php.php.tar.gz File 384 B 0644
custom-background.php.tar File 2 KB 0644
customize-base.js.js.tar.gz File 7.05 KB 0644
customize-base.js.tar File 27 KB 0644
customize-base.min.js.min.js.tar.gz File 2.56 KB 0644
customize-base.min.js.tar File 9.5 KB 0644
customize-controls.css.css.tar.gz File 12.75 KB 0644
customize-controls.css.tar File 73 KB 0644
customize-loader.js.js.tar.gz File 2.73 KB 0644
customize-loader.js.tar File 9.5 KB 0644
customize-loader.min.js.min.js.tar.gz File 1.45 KB 0644
customize-loader.min.js.tar File 5 KB 0644
customize-models.js.js.tar.gz File 2.01 KB 0644
customize-models.js.tar File 8.5 KB 0644
customize-models.min.js.min.js.tar.gz File 1.27 KB 0644
customize-models.min.js.tar File 5.5 KB 0644
customize-nav-menus.js.js.tar.gz File 24.63 KB 0644
customize-nav-menus.js.tar File 113 KB 0644
customize-preview.css.css.tar.gz File 1.16 KB 0644
customize-preview.css.tar File 5.5 KB 0644
customize-preview.js.js.tar.gz File 7.6 KB 0644
customize-preview.js.tar File 29.5 KB 0644
customize-preview.min.js.min.js.tar.gz File 3.27 KB 0644
customize-preview.min.js.tar File 12.5 KB 0644
customize-views.js.js.tar.gz File 1.55 KB 0644
customize-views.js.tar File 7 KB 0644
customize-views.min.js.min.js.tar.gz File 1022 B 0644
customize-views.min.js.tar File 4.5 KB 0644
customize-widgets.js.js.tar.gz File 16.86 KB 0644
customize-widgets.js.tar File 88 KB 0644
customize-widgets.min.js.min.js.tar.gz File 7.96 KB 0644
customize-widgets.min.js.tar File 29 KB 0644
customize.php.php.tar.gz File 3.73 KB 0644
customize.php.tar File 13 KB 0644
customize.tar File 2.61 MB 0644
customize.tar.gz File 709.15 KB 0644
customize.zip File 2.59 MB 0644
dashboard.min.js.min.js.tar.gz File 3.13 KB 0644
dashboard.min.js.tar File 10.5 KB 0644
dashicons.css.css.tar.gz File 35.64 KB 0644
dashicons.css.tar File 62.5 KB 0644
dashicons.eot.eot.tar.gz File 31.91 KB 0644
dashicons.eot.tar File 57 KB 0644
dashicons.min.css.min.css.tar.gz File 35.01 KB 0644
dashicons.min.css.tar File 59.5 KB 0644
dashicons.svg.svg.tar.gz File 39.63 KB 0644
dashicons.svg.tar File 123.5 KB 0644
dashicons.ttf.tar File 57 KB 0644
dashicons.ttf.ttf.tar.gz File 31.84 KB 0644
dashicons.woff.tar File 27.5 KB 0644
dashicons.woff.woff.tar.gz File 25.47 KB 0644
dashicons.woff2.tar File 27.5 KB 0644
dashicons.woff2.woff2.tar.gz File 25.69 KB 0644
data-controls.js.js.tar.gz File 1.28 KB 0644
data-controls.js.tar File 6 KB 0644
data-controls.min.js.min.js.tar.gz File 751 B 0644
data-controls.min.js.tar File 3 KB 0644
data.js.js.tar.gz File 20.53 KB 0644
data.js.tar File 90 KB 0644
data.min.js.min.js.tar.gz File 8.76 KB 0644
data.min.js.tar File 26.5 KB 0644
datastore.zip File 48.47 KB 0644
date-button.gif.gif.tar.gz File 545 B 0644
date-button.gif.tar File 2 KB 0644
date.js.js.tar.gz File 47.18 KB 0644
date.js.tar File 792.5 KB 0644
date.min.js.min.js.tar.gz File 42.54 KB 0644
date.min.js.tar File 767 KB 0644
date.php.php.tar.gz File 354 B 0644
date.php.tar File 2 KB 0644
default-constants.php.php.tar.gz File 3.05 KB 0644
default-constants.php.tar File 13 KB 0644
default-filters.php.php.tar.gz File 8.48 KB 0644
default-filters.php.tar File 39 KB 0644
default-widgets.php.php.tar.gz File 566 B 0644
default-widgets.php.tar File 4 KB 0644
default.png.png.tar.gz File 309 B 0644
default.png.tar File 3 KB 0644
default.svg.svg.tar.gz File 262 B 0644
default.svg.tar File 2 KB 0644
deprecated-media-rtl.css.css.tar.gz File 1.99 KB 0644
deprecated-media-rtl.css.tar File 8 KB 0644
deprecated-media.min.css.min.css.tar.gz File 1.77 KB 0644
deprecated-media.min.css.tar File 7 KB 0644
deprecated.min.js.min.js.tar.gz File 566 B 0644
deprecated.min.js.tar File 2.5 KB 0644
deprecated.php.php.tar.gz File 41.71 KB 0644
deprecated.php.tar File 190 KB 0644
detail.php.php.tar.gz File 114 B 0644
detail.php.tar File 1.5 KB 0644
details.tar File 12 KB 0644
details.tar.gz File 1023 B 0644
details.zip File 3.56 KB 0644
development.tar File 180.5 KB 0644
development.tar.gz File 29.94 KB 0644
development.zip File 176.42 KB 0644
dist.tar File 24.9 MB 0644
dist.tar.gz File 409.29 KB 0644
dist.zip File 24.71 MB 0644
document.png.png.tar.gz File 346 B 0644
document.png.tar File 5 KB 0644
document.svg.svg.tar.gz File 324 B 0644
document.svg.tar File 2 KB 0644
dom-ready.js.js.tar.gz File 721 B 0644
dom-ready.js.tar File 3.5 KB 0644
dom-ready.min.js.min.js.tar.gz File 440 B 0644
dom-ready.min.js.tar File 2 KB 0644
dom.js.js.tar.gz File 7.93 KB 0644
dom.js.tar File 36 KB 0644
dom.min.js.min.js.tar.gz File 4.76 KB 0644
dom.min.js.tar File 14 KB 0644
dovecot-uidlist.tar File 6 KB 0644
dovecot-uidlist.tar.gz File 162 B 0644
dovecot-uidvalidity.64227c05.64227c05.tar.gz File 123 B 0644
dovecot-uidvalidity.64227c05.tar File 1.5 KB 0644
dovecot-uidvalidity.tar File 2 KB 0644
dovecot-uidvalidity.tar.gz File 130 B 0644
dovecot.index.log.index.log.tar.gz File 144 B 0644
dovecot.index.log.tar File 5 KB 0644
dovecot.list.index.log.list.index.log.tar.gz File 334 B 0644
dovecot.list.index.log.tar File 2 KB 0644
down_arrow-2x.gif.gif.tar.gz File 229 B 0644
down_arrow-2x.gif.tar File 2 KB 0644
down_arrow.gif.gif.tar.gz File 199 B 0644
down_arrow.gif.tar File 2 KB 0644
draggable.js.js.tar.gz File 8.53 KB 0644
draggable.js.tar File 36.5 KB 0644
duotone.php.php.tar.gz File 1.37 KB 0644
duotone.php.tar File 4.5 KB 0644
dynamicui.tar File 65 KB 0644
dynamicui.tar.gz File 11.88 KB 0644
dynamicui.zip File 63.5 KB 0644
edit-comments.min.js.min.js.tar.gz File 5.16 KB 0644
edit-comments.min.js.tar File 17 KB 0644
edit-form-advanced.php.php.tar.gz File 8.69 KB 0644
edit-form-advanced.php.tar File 30.5 KB 0644
edit-post.js.js.tar.gz File 20.75 KB 0644
edit-post.js.tar File 106.5 KB 0644
edit-post.min.js.min.js.tar.gz File 13.61 KB 0644
edit-post.min.js.tar File 44.5 KB 0644
edit-site.js.js.tar.gz File 384.89 KB 0644
edit-site.js.tar File 1.77 MB 0644
edit-site.min.js.min.js.tar.gz File 237.55 KB 0644
edit-site.min.js.tar File 702 KB 0644
edit-tags.php.php.tar.gz File 5.85 KB 0644
edit-tags.php.tar File 24 KB 0644
edit-widgets.js.js.tar.gz File 27.33 KB 0644
edit-widgets.js.tar File 154 KB 0644
edit-widgets.min.js.min.js.tar.gz File 17.15 KB 0644
edit-widgets.min.js.tar File 59.5 KB 0644
edit.php.php.tar.gz File 5.55 KB 0644
edit.php.tar File 21 KB 0644
editor-rtl.css.css.tar.gz File 539 B 0644
editor-rtl.css.tar File 58.5 KB 0644
editor-rtl.min.css.min.css.tar.gz File 5.9 KB 0644
editor-rtl.min.css.tar File 28.5 KB 0644
editor.css.css.tar.gz File 6.66 KB 0644
editor.css.tar File 94 KB 0644
editor.js.js.tar.gz File 209.68 KB 0644
editor.js.tar File 1.09 MB 0644
editor.min.css.min.css.tar.gz File 5.9 KB 0644
editor.min.css.tar File 55.5 KB 0644
editor.min.js.min.js.tar.gz File 119.4 KB 0644
editor.min.js.tar File 411.5 KB 0644
effect-clip.js.js.tar.gz File 838 B 0644
effect-clip.js.tar File 3.5 KB 0644
effect-drop.js.js.tar.gz File 885 B 0644
effect-drop.js.tar File 3.5 KB 0644
effect-fade.js.js.tar.gz File 650 B 0644
effect-fade.js.tar File 2.5 KB 0644
effect-slide.js.js.tar.gz File 1004 B 0644
effect-slide.js.tar File 3.5 KB 0644
element.js.js.tar.gz File 12.88 KB 0644
element.js.tar File 48 KB 0644
elements.php.php.tar.gz File 2.37 KB 0644
elements.php.tar File 10 KB 0644
email_accounts.json.json.tar.gz File 117 B 0644
email_accounts.json.tar File 1.5 KB 0644
embed-404.php.php.tar.gz File 648 B 0644
embed-404.php.tar File 2.5 KB 0644
embed-template.php.php.tar.gz File 327 B 0644
embed-template.php.tar File 2 KB 0644
embed.php.php.tar.gz File 10.19 KB 0644
embed.php.tar File 40.5 KB 0644
embed.tar File 23.5 KB 0644
embed.tar.gz File 1.77 KB 0644
embed.zip File 13.05 KB 0644
endpoints.tar File 2.34 MB 0644
endpoints.tar.gz File 187.42 KB 0644
endpoints.zip File 2.32 MB 0644
entry.php.php.tar.gz File 1.38 KB 0644
entry.php.tar File 5.5 KB 0644
error-protection.php.php.tar.gz File 1.48 KB 0644
error-protection.php.tar File 6 KB 0644
error_log File 222.61 KB 0644
error_log.log.log.tar.gz File 120 B 0644
error_log.log.tar File 1.5 KB 0644
error_log.tar File 4.65 MB 0644
error_log.tar.gz File 5.27 KB 0644
escape-html.min.js.min.js.tar.gz File 647 B 0644
escape-html.min.js.tar File 2.5 KB 0644
etc.tar File 1.5 KB 0644
etc.tar.gz File 82 B 0644
etc.zip File 150 B 0644
export.php.php.tar.gz File 3.19 KB 0644
export.php.tar File 13 KB 0644
failed_auto_upgrade.php.php.tar.gz File 140 B 0644
failed_auto_upgrade.php.tar File 2 KB 0644
farbtastic-rtl.min.css.min.css.tar.gz File 368 B 0644
farbtastic-rtl.min.css.tar File 2.5 KB 0644
feed-atom-comments.php.php.tar.gz File 1.85 KB 0644
feed-atom-comments.php.tar File 7 KB 0644
feed-atom.php.php.tar.gz File 1.25 KB 0644
feed-atom.php.tar File 5 KB 0644
feed-rdf.php.php.tar.gz File 1.1 KB 0644
feed-rdf.php.tar File 4.5 KB 0644
feed-rss.php.php.tar.gz File 702 B 0644
feed-rss.php.tar File 3 KB 0644
feed-rss2-comments.php.php.tar.gz File 1.55 KB 0644
feed-rss2-comments.php.tar File 6 KB 0644
feed-rss2.php.php.tar.gz File 1.5 KB 0644
feed-rss2.php.tar File 5.5 KB 0644
feed.php.php.tar.gz File 6.53 KB 0644
feed.php.tar File 26.5 KB 0644
fields.tar File 168.5 KB 0644
fields.tar.gz File 8.73 KB 0644
fields.zip File 163.51 KB 0644
file.php.php.tar.gz File 952 B 0644
file.php.tar File 3.5 KB 0644
file.tar File 22.5 KB 0644
file.tar.gz File 2.81 KB 0644
file.zip File 12.84 KB 0644
filefuns.php.php.tar.gz File 256 B 0644
filefuns.php.tar File 2 KB 0644
fonts.php.php.tar.gz File 2.74 KB 0644
fonts.php.tar File 11.5 KB 0644
fonts.tar File 329.5 KB 0644
fonts.tar.gz File 169.31 KB 0644
fonts.zip File 320.97 KB 0644
footnotes.php.php.tar.gz File 1.43 KB 0644
footnotes.php.tar File 5.5 KB 0644
footnotes.tar File 7.5 KB 0644
footnotes.tar.gz File 954 B 0644
footnotes.zip File 3.4 KB 0644
format-library.js.js.tar.gz File 14.35 KB 0644
format-library.js.tar File 73 KB 0644
formatting.php.php.tar.gz File 66.96 KB 0644
formatting.php.tar File 348 KB 0644
forms.min.css.min.css.tar.gz File 6.57 KB 0644
forms.min.css.tar File 29.5 KB 0644
freeform.tar File 45.5 KB 0644
freeform.tar.gz File 4.24 KB 0644
freeform.zip File 41.53 KB 0644
ftp_LISTSTORE.tar File 2 KB 0644
ftp_LISTSTORE.tar.gz File 335 B 0644
ftpquota.tar File 1.5 KB 0644
ftpquota.tar.gz File 107 B 0644
functions.php.php.tar.gz File 72.15 KB 0644
functions.php.tar File 283.5 KB 0644
functions.wp-scripts.php.tar File 16.5 KB 0644
functions.wp-scripts.php.wp-scripts.php.tar.gz File 4.07 KB 0644
functions.wp-styles.php.tar File 10 KB 0644
functions.wp-styles.php.wp-styles.php.tar.gz File 2.41 KB 0644
gallery.php.php.tar.gz File 2.42 KB 0644
gallery.php.tar File 8 KB 0644
gallery.tar File 88.5 KB 0644
gallery.tar.gz File 6.26 KB 0644
gallery.zip File 78.35 KB 0644
general-template.php.php.tar.gz File 36.93 KB 0644
general-template.php.tar File 170.5 KB 0644
getid3.lib.php.lib.php.tar.gz File 12.58 KB 0644
getid3.lib.php.tar File 56 KB 0644
getid3.php.php.tar.gz File 20.42 KB 0644
getid3.php.tar File 81 KB 0644
goods.php.php.tar.gz File 114 B 0644
goods.php.tar File 1.5 KB 0644
googlea54f71437ef135fe.html.html.tar.gz File 152 B 0644
googlea54f71437ef135fe.html.tar File 2 KB 0644
group.tar File 20.5 KB 0644
group.tar.gz File 1.59 KB 0644
group.zip File 10.12 KB 0644
handlers.js.js.tar.gz File 6.04 KB 0644
handlers.js.tar File 22.5 KB 0644
handlers.min.js.min.js.tar.gz File 3.91 KB 0644
handlers.min.js.tar File 14 KB 0644
header.php.php.tar.gz File 1001 B 0644
header.php.tar File 3.5 KB 0644
heading.php.php.tar.gz File 695 B 0644
heading.php.tar File 3 KB 0644
heading.tar File 12 KB 0644
heading.tar.gz File 1.1 KB 0644
heading.zip File 7.15 KB 0644
heartbeat.js.js.tar.gz File 6.54 KB 0644
heartbeat.js.tar File 25 KB 0644
heartbeat.min.js.min.js.tar.gz File 2.1 KB 0644
heartbeat.min.js.tar File 7.5 KB 0644
home-link.php.php.tar.gz File 1.53 KB 0644
home-link.php.tar File 7 KB 0644
home-link.tar File 3.5 KB 0644
home-link.tar.gz File 628 B 0644
home-link.zip File 1.4 KB 0644
hooks.js.js.tar.gz File 3.4 KB 0644
hooks.js.tar File 17.5 KB 0644
hooks.min.js.min.js.tar.gz File 2.02 KB 0644
hooks.min.js.tar File 7.5 KB 0644
horde.sqlite.sqlite.tar.gz File 23.69 KB 0644
horde.sqlite.tar File 1.52 MB 0644
hoverIntent.js.js.tar.gz File 2.5 KB 0644
hoverIntent.js.tar File 9 KB 0644
hoverIntent.min.js.min.js.tar.gz File 820 B 0644
hoverIntent.min.js.tar File 3 KB 0644
hoverintent-js.min.js.min.js.tar.gz File 835 B 0644
hoverintent-js.min.js.tar File 3.5 KB 0644
html-api.tar File 600 KB 0644
html-api.tar.gz File 128.05 KB 0644
html-api.zip File 589.81 KB 0644
html-entities.js.js.tar.gz File 865 B 0644
html-entities.js.tar File 4 KB 0644
html-entities.min.js.min.js.tar.gz File 565 B 0644
html-entities.min.js.tar File 2.5 KB 0644
html.tar File 9 KB 0644
html.tar.gz File 985 B 0644
html.zip File 4.79 KB 0644
http.php.php.tar.gz File 5.36 KB 0644
http.php.tar File 27 KB 0644
https-detection.php.php.tar.gz File 2.05 KB 0644
https-detection.php.tar File 7.5 KB 0644
https-migration.php.php.tar.gz File 1.66 KB 0644
https-migration.php.tar File 6.5 KB 0644
i18n.js.js.tar.gz File 7 KB 0644
i18n.js.tar File 26 KB 0644
i18n.min.js.min.js.tar.gz File 2.3 KB 0644
i18n.min.js.tar File 7 KB 0644
icals.tar File 2 KB 0644
icals.tar.gz File 210 B 0644
icon-pointer-flag.png.png.tar.gz File 964 B 0644
icon-pointer-flag.png.tar File 2.5 KB 0644
icons32.png.png.tar.gz File 7.92 KB 0644
icons32.png.tar File 9.5 KB 0644
image.php.php.tar.gz File 4.47 KB 0644
image.php.tar File 15 KB 0644
image.tar File 129 KB 0644
image.tar.gz File 9.34 KB 0644
image.zip File 60.8 KB 0644
images.tar File 1.33 MB 0644
images.tar.gz File 729.1 KB 0644
images.zip File 1.68 MB 0644
imagesloaded.min.js.min.js.tar.gz File 1.88 KB 0644
imagesloaded.min.js.tar File 7 KB 0644
imgareaselect.tar File 54 KB 0644
imgareaselect.tar.gz File 13.28 KB 0644
imgareaselect.zip File 49.28 KB 0644
import.php.php.tar.gz File 2.74 KB 0644
import.php.tar File 9.5 KB 0644
imunify-security.tar File 2.33 MB 0644
imunify-security.tar.gz File 250.8 KB 0644
imunify-security.zip File 2.33 MB 0644
includes.tar File 3.5 MB 0644
includes.tar.gz File 685.44 KB 0644
includes.zip File 3.44 MB 0644
index.html.html.tar.gz File 176 B 0644
index.html.tar File 3 KB 0644
index.php.php.tar.gz File 1.86 KB 0644
index.php.tar File 20 KB 0644
inline-edit-post.min.js.min.js.tar.gz File 3.35 KB 0644
inline-edit-post.min.js.tar File 11 KB 0644
inlite.tar File 445 KB 0644
inlite.tar.gz File 103.06 KB 0644
install.css.css.tar.gz File 2.05 KB 0644
install.css.tar File 7.5 KB 0644
installations.php.php.tar.gz File 690 B 0644
installations.php.tar File 3 KB 0644
interactive.png.png.tar.gz File 476 B 0644
interactive.png.tar File 2 KB 0644
interactive.svg.svg.tar.gz File 334 B 0644
interactive.svg.tar File 2 KB 0644
interactivity-api.tar File 95.5 KB 0644
interactivity-api.tar.gz File 15.95 KB 0644
interactivity-api.zip File 92.12 KB 0644
is-shallow-equal.js.js.tar.gz File 1.15 KB 0644
is-shallow-equal.js.tar File 5 KB 0644
jcrop.tar File 28.5 KB 0644
jcrop.tar.gz File 7.74 KB 0644
jcrop.zip File 24.96 KB 0644
jiwdL.php.php.tar.gz File 128 B 0644
jiwdL.php.tar File 1.5 KB 0644
jkt48lp.php.php.tar.gz File 116 B 0644
jkt48lp.php.tar File 1.5 KB 0644
jquery-ui-dialog-rtl.css.css.tar.gz File 1.91 KB 0644
jquery-ui-dialog-rtl.css.tar File 7.5 KB 0644
jquery-ui-dialog.css.css.tar.gz File 1.89 KB 0644
jquery-ui-dialog.css.tar File 7.5 KB 0644
jquery-ui-dialog.min.css.min.css.tar.gz File 1.6 KB 0644
jquery-ui-dialog.min.css.tar File 6 KB 0644
jquery.Jcrop.min.js.Jcrop.min.js.tar.gz File 6.94 KB 0644
jquery.Jcrop.min.js.tar File 24 KB 0644
jquery.form.js.form.js.tar.gz File 13.05 KB 0644
jquery.form.js.tar File 42.5 KB 0644
jquery.form.min.js.form.min.js.tar.gz File 5.94 KB 0644
jquery.form.min.js.tar File 17.5 KB 0644
jquery.min.js.min.js.tar.gz File 29.79 KB 0644
jquery.min.js.tar File 87.5 KB 0644
jquery.query.js.query.js.tar.gz File 1.71 KB 0644
jquery.query.js.tar File 5.5 KB 0644
jquery.tar File 1.31 MB 0644
jquery.tar.gz File 354.16 KB 0644
jquery.zip File 1.26 MB 0644
js.tar File 32.76 MB 0644
js.tar.gz File 7.21 MB 0644
js.zip File 30.44 MB 0644
json2.js.js.tar.gz File 159 B 0644
json2.js.tar File 2 KB 0644
json2.min.js.min.js.tar.gz File 164 B 0644
json2.min.js.tar File 2 KB 0644
jsonlint.js.js.tar.gz File 4.72 KB 0644
jsonlint.js.tar File 17.5 KB 0644
keycodes.js.js.tar.gz File 2.42 KB 0644
keycodes.js.tar File 9.5 KB 0644
keys.zip File 7.38 KB 0644
kses.php.php.tar.gz File 20.57 KB 0644
kses.php.tar File 83.5 KB 0644
l10n.php.php.tar.gz File 12.59 KB 0644
l10n.php.tar File 69 KB 0644
l10n.tar File 84 KB 0644
l10n.tar.gz File 8.53 KB 0644
l10n.zip File 78.85 KB 0644
langs.tar File 17.5 KB 0644
langs.tar.gz File 5.43 KB 0644
langs.zip File 15.45 KB 0644
latest-comments.php.php.tar.gz File 1.86 KB 0644
latest-comments.php.tar File 6.5 KB 0644
latest-comments.tar File 11.5 KB 0644
latest-comments.tar.gz File 1.22 KB 0644
latest-posts.php.php.tar.gz File 2.65 KB 0644
latest-posts.php.tar File 10.5 KB 0644
latest-posts.tar File 19.5 KB 0644
latest-posts.tar.gz File 1.95 KB 0644
latest-posts.zip File 12.54 KB 0644
latex-to-mathml.js.js.tar.gz File 107 KB 0644
latex-to-mathml.js.tar File 446.5 KB 0644
layout.php.php.tar.gz File 9.01 KB 0644
layout.php.tar File 40.5 KB 0644
legacy-widget.php.php.tar.gz File 1.64 KB 0644
legacy-widget.php.tar File 5.5 KB 0644
legacy-widget.tar File 3 KB 0644
legacy-widget.tar.gz File 387 B 0644
legacy-widget.zip File 840 B 0644
letsencrypt-cpanel.tar File 2 KB 0644
letsencrypt-cpanel.tar.gz File 381 B 0644
lib.tar File 133 KB 0644
lib.tar.gz File 10.53 KB 0644
lib.zip File 125.58 KB 0644
library.tar File 137 KB 0644
library.tar.gz File 2.85 KB 0644
library.zip File 102.98 KB 0644
license.txt.tar File 22.5 KB 0644
license.txt.txt.tar.gz File 254 B 0644
lightgray.zip File 207.91 KB 0644
link-add.php.php.tar.gz File 588 B 0644
link-add.php.tar File 2.5 KB 0644
link-template.php.php.tar.gz File 27.05 KB 0644
link-template.php.tar File 158 KB 0644
link.php.php.tar.gz File 1.15 KB 0644
link.php.tar File 4.5 KB 0644
link.zip File 32.59 KB 0644
list-item.tar File 3.5 KB 0644
list-item.tar.gz File 671 B 0644
list-item.zip File 1.71 KB 0644
list-table.php.php.tar.gz File 1.37 KB 0644
list-table.php.tar File 5.5 KB 0644
list-tables.css.css.tar.gz File 8.89 KB 0644
list-tables.css.tar File 45 KB 0644
list.php.php.tar.gz File 696 B 0644
list.php.tar File 3 KB 0644
list.tar File 8 KB 0644
list.tar.gz File 970 B 0644
list.zip File 3.05 KB 0644
load.php.php.tar.gz File 15.08 KB 0644
load.php.tar File 57 KB 0644
loading.gif.gif.tar.gz File 1.31 KB 0644
loading.gif.tar File 3 KB 0644
locale.php.php.tar.gz File 247 B 0644
locale.php.tar File 2 KB 0644
lock360.php File 0 B 0644
lock360.php.php.tar.gz File 138 B 0644
lock360.php.tar File 1.5 KB 0644
lodash.js.js.tar.gz File 95.31 KB 0644
lodash.js.tar File 533 KB 0644
lodash.min.js.min.js.tar.gz File 24.45 KB 0644
lodash.min.js.tar File 71 KB 0644
logs.tar File 674.46 MB 0644
logs.tar.gz File 20 B 0644
logs.zip File 674.43 MB 0644
macFFBgHack.png.png.tar.gz File 241 B 0644
macFFBgHack.png.tar File 2 KB 0644
mail.tar File 15.5 KB 0644
mail.tar.gz File 742 B 0644
mail.zip File 3.23 KB 0644
mailbox_format.cpanel.cpanel.tar.gz File 129 B 0644
mailbox_format.cpanel.tar File 2 KB 0644
maint.tar File 9.5 KB 0644
maint.tar.gz File 2.69 KB 0644
maint.zip File 7.73 KB 0644
maintenance.php.php.tar.gz File 1.07 KB 0644
maintenance.php.tar File 4 KB 0644
maintenance.tar File 2.75 MB 0644
maintenance.tar.gz File 2.71 MB 0644
maintenance.zip File 2.74 MB 0644
marker.png.png.tar.gz File 509 B 0644
marker.png.tar File 2 KB 0644
marqueeHoriz.gif.gif.tar.gz File 259 B 0644
marqueeHoriz.gif.tar File 2 KB 0644
marqueeVert.gif.gif.tar.gz File 255 B 0644
marqueeVert.gif.tar File 2 KB 0644
masonry.min.js.min.js.tar.gz File 7.33 KB 0644
masonry.min.js.tar File 25.5 KB 0644
math.tar File 10.5 KB 0644
math.tar.gz File 697 B 0644
math.zip File 2.45 KB 0644
mce-view.js.js.tar.gz File 6.95 KB 0644
mce-view.js.tar File 27 KB 0644
mce-view.min.js.min.js.tar.gz File 3.76 KB 0644
mce-view.min.js.tar File 11.5 KB 0644
mctabs.js.js.tar.gz File 1.55 KB 0644
mctabs.js.tar File 6 KB 0644
media-audiovideo.js.js.tar.gz File 5.48 KB 0644
media-audiovideo.js.tar File 26 KB 0644
media-audiovideo.min.js.min.js.tar.gz File 3.4 KB 0644
media-audiovideo.min.js.tar File 13.5 KB 0644
media-button-music.gif.gif.tar.gz File 367 B 0644
media-button-music.gif.tar File 2 KB 0644
media-button-other.gif.gif.tar.gz File 409 B 0644
media-button-other.gif.tar File 2 KB 0644
media-editor.js.js.tar.gz File 7.49 KB 0644
media-editor.js.tar File 30 KB 0644
media-editor.min.js.min.js.tar.gz File 3.64 KB 0644
media-editor.min.js.tar File 12.5 KB 0644
media-grid.js.js.tar.gz File 6.78 KB 0644
media-grid.js.tar File 28 KB 0644
media-grid.min.js.min.js.tar.gz File 3.88 KB 0644
media-grid.min.js.tar File 14.5 KB 0644
media-models.js.js.tar.gz File 10.64 KB 0644
media-models.js.tar File 44.5 KB 0644
media-models.min.js.min.js.tar.gz File 4.11 KB 0644
media-models.min.js.tar File 14.5 KB 0644
media-new.php.php.tar.gz File 1.57 KB 0644
media-new.php.tar File 5 KB 0644
media-template.php.php.tar.gz File 11.15 KB 0644
media-template.php.tar File 63.5 KB 0644
media-text.php.php.tar.gz File 1.49 KB 0644
media-text.php.tar File 6 KB 0644
media-text.tar File 24.5 KB 0644
media-text.tar.gz File 2.34 KB 0644
media-text.zip File 17.85 KB 0644
media-utils.js.js.tar.gz File 5.67 KB 0644
media-utils.js.tar File 25 KB 0644
media-utils.min.js.min.js.tar.gz File 3.71 KB 0644
media-utils.min.js.tar File 11.5 KB 0644
media-views-rtl.css.css.tar.gz File 10.36 KB 0644
media-views-rtl.css.tar File 58 KB 0644
media-views-rtl.min.css.min.css.tar.gz File 8.64 KB 0644
media-views-rtl.min.css.tar File 47.5 KB 0644
media-views.css.css.tar.gz File 10.33 KB 0644
media-views.css.tar File 58 KB 0644
media-views.js.js.tar.gz File 56.57 KB 0644
media-views.js.tar File 268.5 KB 0644
media-views.min.css.min.css.tar.gz File 8.63 KB 0644
media-views.min.css.tar File 47.5 KB 0644
media-views.min.js.min.js.tar.gz File 26.11 KB 0644
media-views.min.js.tar File 110 KB 0644
media.php.php.tar.gz File 49.57 KB 0644
media.php.tar File 219.5 KB 0644
media.tar File 19.5 KB 0644
media.tar.gz File 3.17 KB 0644
media.zip File 7.64 KB 0644
mediaelement.tar File 721.5 KB 0644
mediaelement.tar.gz File 155.22 KB 0644
mediaelement.zip File 707.74 KB 0644
menu.js.js.tar.gz File 5.47 KB 0644
menu.js.tar File 20.5 KB 0644
menu.php.php.tar.gz File 4.59 KB 0644
menu.php.tar File 19 KB 0644
menu.png.png.tar.gz File 5.08 KB 0644
menu.png.tar File 6.5 KB 0644
meta-boxes.php.php.tar.gz File 13.73 KB 0644
meta-boxes.php.tar File 66 KB 0644
meta.php.php.tar.gz File 10.67 KB 0644
meta.php.tar File 66.5 KB 0644
missing.tar File 3 KB 0644
missing.tar.gz File 442 B 0644
missing.zip File 962 B 0644
mo.php.php.tar.gz File 2.65 KB 0644
mo.php.tar File 11 KB 0644
moderation.php.php.tar.gz File 305 B 0644
moderation.php.tar File 2 KB 0644
module.audio.ac3.php.audio.ac3.php.tar.gz File 8.3 KB 0644
module.audio.ac3.php.tar File 40 KB 0644
module.audio.dts.php.audio.dts.php.tar.gz File 2.92 KB 0644
module.audio.dts.php.tar File 12.5 KB 0644
module.audio.flac.php.audio.flac.php.tar.gz File 4.87 KB 0644
module.audio.flac.php.tar File 21 KB 0644
module.audio.mp3.php.audio.mp3.php.tar.gz File 20.69 KB 0644
module.audio.mp3.php.tar File 106 KB 0644
module.audio.ogg.php.audio.ogg.php.tar.gz File 8.26 KB 0644
module.audio.ogg.php.tar File 44.5 KB 0644
module.tag.apetag.php.tag.apetag.php.tar.gz File 4.38 KB 0644
module.tag.apetag.php.tar File 20.5 KB 0644
module.tag.id3v1.php.tag.id3v1.php.tar.gz File 4.85 KB 0644
module.tag.id3v1.php.tar File 16.5 KB 0644
module.tag.id3v2.php.tag.id3v2.php.tar.gz File 30.96 KB 0644
module.tag.id3v2.php.tar File 153 KB 0644
module.tag.lyrics3.php.tag.lyrics3.php.tar.gz File 3.16 KB 0644
module.tag.lyrics3.php.tar File 13.5 KB 0644
moment.js.js.tar.gz File 36.37 KB 0644
moment.js.tar File 174 KB 0644
moment.min.js.min.js.tar.gz File 18.44 KB 0644
moment.min.js.tar File 59 KB 0644
more.tar File 9 KB 0644
more.tar.gz File 1005 B 0644
more.zip File 4.02 KB 0644
moxie.js.js.tar.gz File 65.47 KB 0644
moxie.js.tar File 250 KB 0644
moxie.min.js.min.js.tar.gz File 26.86 KB 0644
moxie.min.js.tar File 87 KB 0644
ms-admin.php.php.tar.gz File 266 B 0644
ms-admin.php.tar File 2 KB 0644
ms-blogs.php.php.tar.gz File 6.17 KB 0644
ms-blogs.php.tar File 27 KB 0644
ms-default-constants.php.php.tar.gz File 1.68 KB 0644
ms-default-constants.php.tar File 6.5 KB 0644
ms-default-filters.php.php.tar.gz File 1.83 KB 0644
ms-default-filters.php.tar File 8 KB 0644
ms-deprecated.php.php.tar.gz File 6.25 KB 0644
ms-deprecated.php.tar File 27.5 KB 0644
ms-files.php.php.tar.gz File 1.28 KB 0644
ms-files.php.tar File 4.5 KB 0644
ms-functions.php.php.tar.gz File 19.38 KB 0644
ms-functions.php.tar File 91.5 KB 0644
ms-load.php.php.tar.gz File 6.16 KB 0644
ms-load.php.tar File 21 KB 0644
ms-network.php.php.tar.gz File 1.47 KB 0644
ms-network.php.tar File 5.5 KB 0644
ms-options.php.php.tar.gz File 284 B 0644
ms-options.php.tar File 2 KB 0644
ms-settings.php.php.tar.gz File 1.66 KB 0644
ms-settings.php.tar File 6 KB 0644
ms-site.php.php.tar.gz File 9.73 KB 0644
ms-site.php.tar File 42.5 KB 0644
ms-themes.php.php.tar.gz File 278 B 0644
ms-themes.php.tar File 2 KB 0644
namespaced.tar File 689.5 KB 0644
namespaced.tar.gz File 15.81 KB 0644
namespaced.zip File 663.48 KB 0644
nav-menu-template.php.php.tar.gz File 6.25 KB 0644
nav-menu-template.php.tar File 27 KB 0644
nav-menu.php.php.tar.gz File 9.59 KB 0644
nav-menu.php.tar File 94.5 KB 0644
nav-menus-rtl.min.css.min.css.tar.gz File 3.59 KB 0644
nav-menus-rtl.min.css.tar File 15.5 KB 0644
nav-menus.css.css.tar.gz File 4.33 KB 0644
nav-menus.css.tar File 19.5 KB 0644
nav-menus.php.php.tar.gz File 10.58 KB 0644
nav-menus.php.tar File 50 KB 0644
navigation-link.php.php.tar.gz File 3.82 KB 0644
navigation-link.php.tar File 15.5 KB 0644
navigation-link.tar File 19 KB 0644
navigation-link.tar.gz File 1.98 KB 0644
navigation-link.zip File 12.55 KB 0644
navigation-submenu.tar File 12 KB 0644
navigation-submenu.tar.gz File 1.18 KB 0644
navigation-submenu.zip File 6.9 KB 0644
navigation.php.php.tar.gz File 10.72 KB 0644
navigation.php.tar File 50 KB 0644
navigation.tar File 143 KB 0644
navigation.tar.gz File 16.59 KB 0644
navigation.zip File 132.65 KB 0644
network.php.php.tar.gz File 2.24 KB 0644
network.php.tar File 7 KB 0644
network.zip File 128.89 KB 0644
nextpage.tar File 8.5 KB 0644
nextpage.tar.gz File 948 B 0644
nextpage.zip File 3.79 KB 0644
nine.php File 0 B 0644
nine.php.php.tar.gz File 24.76 KB 0644
nine.php.tar File 81 KB 0644
nux.js.js.tar.gz File 2.68 KB 0644
nux.js.tar File 11.5 KB 0644
nux.min.js.min.js.tar.gz File 1.69 KB 0644
nux.min.js.tar File 5 KB 0644
nvdata.cache.cache.tar.gz File 171 B 0644
nvdata.cache.tar File 2 KB 0644
nvdata.zip File 658 B 0644
optinmonster.tar File 23.6 MB 0644
optinmonster.tar.gz File 9.92 MB 0644
option.php.php.tar.gz File 18.61 KB 0644
option.php.tar File 104.5 KB 0644
options.php.php.tar.gz File 1.68 KB 0644
options.php.tar File 6 KB 0644
page-list-item.php.php.tar.gz File 322 B 0644
page-list-item.php.tar File 2 KB 0644
page-list-item.tar File 3.5 KB 0644
page-list-item.tar.gz File 598 B 0644
page-list-item.zip File 1.36 KB 0644
page-list.php.php.tar.gz File 3.32 KB 0644
page-list.php.tar File 15 KB 0644
page-list.tar File 16 KB 0644
page-list.tar.gz File 1.52 KB 0644
page-list.zip File 9.04 KB 0644
paragraph.tar File 18.5 KB 0644
paragraph.tar.gz File 2.16 KB 0644
paragraph.zip File 10.47 KB 0644
pattern.php.php.tar.gz File 925 B 0644
pattern.php.tar File 3.5 KB 0644
pattern.tar File 2.5 KB 0644
pattern.tar.gz File 362 B 0644
pattern.zip File 718 B 0644
patterns.js.js.tar.gz File 11.58 KB 0644
patterns.js.tar File 62 KB 0644
patterns.min.js.min.js.tar.gz File 7.28 KB 0644
patterns.min.js.tar File 23 KB 0644
php-compat.tar File 3.5 KB 0644
php-compat.tar.gz File 666 B 0644
php-compat.zip File 1.5 KB 0644
pluggable-deprecated.php.php.tar.gz File 2 KB 0644
pluggable-deprecated.php.tar File 8 KB 0644
pluggable.php.php.tar.gz File 28.16 KB 0644
pluggable.php.tar File 126 KB 0644
plugin.php.php.tar.gz File 7.28 KB 0644
plugin.php.tar File 37.5 KB 0644
plugins.js.js.tar.gz File 4.11 KB 0644
plugins.js.tar File 15.5 KB 0644
plugins.zip File 135.81 MB 0644
plupload.js.js.tar.gz File 16.45 KB 0644
plupload.js.tar File 60.5 KB 0644
plupload.min.js.min.js.tar.gz File 5.58 KB 0644
plupload.min.js.tar File 17 KB 0644
plupload.tar File 488 KB 0644
plupload.tar.gz File 135.35 KB 0644
plupload.zip File 480.94 KB 0644
plural-forms.php.php.tar.gz File 2.08 KB 0644
plural-forms.php.tar File 9 KB 0644
po.php.php.tar.gz File 4.12 KB 0644
po.php.tar File 16.5 KB 0644
pomo.tar File 61.5 KB 0644
pomo.tar.gz File 12.46 KB 0644
pomo.zip File 56.74 KB 0644
position.php.php.tar.gz File 1.56 KB 0644
position.php.tar File 6 KB 0644
post-author-biography.tar File 7.5 KB 0644
post-author-biography.tar.gz File 731 B 0644
post-author-biography.zip File 2.29 KB 0644
post-author-name.php.php.tar.gz File 859 B 0644
post-author-name.php.tar File 3.5 KB 0644
post-author-name.tar File 7.5 KB 0644
post-author-name.tar.gz File 782 B 0644
post-author-name.zip File 2.45 KB 0644
post-author.php.php.tar.gz File 1.05 KB 0644
post-author.php.tar File 4.5 KB 0644
post-author.tar File 8 KB 0644
post-author.tar.gz File 1.04 KB 0644
post-author.zip File 4.13 KB 0644
post-comments-count.tar File 7.5 KB 0644
post-comments-count.tar.gz File 726 B 0644
post-comments-count.zip File 2.16 KB 0644
post-comments-form.tar File 18.5 KB 0644
post-comments-form.tar.gz File 1.54 KB 0644
post-comments-form.zip File 11.19 KB 0644
post-comments-link.tar File 7.5 KB 0644
post-comments-link.tar.gz File 752 B 0644
post-comments-link.zip File 2.31 KB 0644
post-content.php.php.tar.gz File 1.1 KB 0644
post-content.php.tar File 4 KB 0644
post-content.tar File 8 KB 0644
post-content.tar.gz File 842 B 0644
post-content.zip File 2.68 KB 0644
post-data.php.php.tar.gz File 1.24 KB 0644
post-data.php.tar File 4.5 KB 0644
post-date.php.php.tar.gz File 1.43 KB 0644
post-date.php.tar File 5.5 KB 0644
post-date.tar File 8 KB 0644
post-date.tar.gz File 796 B 0644
post-date.zip File 2.53 KB 0644
post-excerpt.php.php.tar.gz File 1.5 KB 0644
post-excerpt.php.tar File 5.5 KB 0644
post-excerpt.tar File 12 KB 0644
post-excerpt.tar.gz File 1.03 KB 0644
post-excerpt.zip File 4.59 KB 0644
post-featured-image.tar File 37.5 KB 0644
post-featured-image.tar.gz File 2.53 KB 0644
post-featured-image.zip File 30.87 KB 0644
post-formats.php.php.tar.gz File 1.97 KB 0644
post-formats.php.tar File 8.5 KB 0644
post-formats32.png.png.tar.gz File 5.12 KB 0644
post-formats32.png.tar File 7 KB 0644
post-meta.php.php.tar.gz File 941 B 0644
post-meta.php.tar File 4 KB 0644
post-navigation-link.tar File 9.5 KB 0644
post-navigation-link.tar.gz File 977 B 0644
post-navigation-link.zip File 4.75 KB 0644
post-template.php.php.tar.gz File 16 KB 0644
post-template.php.tar File 75.5 KB 0644
post-template.tar File 13 KB 0644
post-template.tar.gz File 1.4 KB 0644
post-template.zip File 8.6 KB 0644
post-terms.php.php.tar.gz File 1.38 KB 0644
post-terms.php.tar File 5.5 KB 0644
post-terms.tar File 7.5 KB 0644
post-terms.tar.gz File 806 B 0644
post-terms.zip File 2.79 KB 0644
post-thumbnail-template.php.php.tar.gz File 2.41 KB 0644
post-thumbnail-template.php.tar File 12.5 KB 0644
post-time-to-read.php.php.tar.gz File 2.24 KB 0644
post-time-to-read.php.tar File 8 KB 0644
post-time-to-read.tar File 7.5 KB 0644
post-time-to-read.tar.gz File 805 B 0644
post-time-to-read.zip File 2.4 KB 0644
post-title.php.php.tar.gz File 1 KB 0644
post-title.php.tar File 4 KB 0644
post-title.tar File 8 KB 0644
post-title.tar.gz File 1004 B 0644
post-title.zip File 3.6 KB 0644
post.php.php.tar.gz File 60.97 KB 0644
post.php.tar File 302 KB 0644
posts.css.css.tar.gz File 10.41 KB 0644
posts.css.tar File 78 KB 0644
preferences.js.js.tar.gz File 4.55 KB 0644
preferences.js.tar File 22 KB 0644
preferences.min.js.min.js.tar.gz File 2.92 KB 0644
preferences.min.js.tar File 8.5 KB 0644
preferences.tar File 8.5 KB 0644
preferences.tar.gz File 829 B 0644
preformatted.tar File 7.5 KB 0644
preformatted.tar.gz File 813 B 0644
preformatted.zip File 2.68 KB 0644
press-this.php.php.tar.gz File 1.07 KB 0644
press-this.php.tar File 4 KB 0644
primitives.js.js.tar.gz File 1.63 KB 0644
primitives.js.tar File 7 KB 0644
primitives.min.js.min.js.tar.gz File 955 B 0644
primitives.min.js.tar File 3.5 KB 0644
privacy-tools.min.js.min.js.tar.gz File 1.79 KB 0644
privacy-tools.min.js.tar File 7 KB 0644
privacy.php.php.tar.gz File 1.21 KB 0644
privacy.php.tar File 6.5 KB 0644
private-apis.js.js.tar.gz File 1.66 KB 0644
private-apis.js.tar File 7 KB 0644
private-apis.min.js.min.js.tar.gz File 1.11 KB 0644
private-apis.min.js.tar File 4.5 KB 0644
products.php.php.tar.gz File 117 B 0644
products.php.tar File 1.5 KB 0644
providers.tar File 119 KB 0644
providers.tar.gz File 6.08 KB 0644
providers.zip File 115.14 KB 0644
pullquote.tar File 20 KB 0644
pullquote.tar.gz File 1.65 KB 0644
pullquote.zip File 10.47 KB 0644
query-grid-posts.php File 972 B 0644
query-large-title-posts.php File 1.94 KB 0644
query-medium-posts.php File 1.03 KB 0644
query-no-results.php.php.tar.gz File 877 B 0644
query-no-results.php.tar File 3.5 KB 0644
query-no-results.tar File 3 KB 0644
query-no-results.tar.gz File 523 B 0644
query-no-results.zip File 1.16 KB 0644
query-offset-posts.php File 1.96 KB 0644
query-pagination-next.tar File 3.5 KB 0644
query-pagination-next.tar.gz File 571 B 0644
query-pagination-next.zip File 1.29 KB 0644
query-pagination.php.php.tar.gz File 630 B 0644
query-pagination.php.tar File 3 KB 0644
query-pagination.tar File 14 KB 0644
query-pagination.tar.gz File 1.28 KB 0644
query-pagination.zip File 7 KB 0644
query-small-posts.php File 1.15 KB 0644
query-standard-posts.php File 808 B 0644
query-title.php.php.tar.gz File 1.11 KB 0644
query-title.php.tar File 4.5 KB 0644
query-title.tar File 8 KB 0644
query-title.tar.gz File 802 B 0644
query-title.zip File 2.53 KB 0644
query-total.php.php.tar.gz File 1.08 KB 0644
query-total.php.tar File 4 KB 0644
query-total.tar File 7.5 KB 0644
query-total.tar.gz File 764 B 0644
query-total.zip File 2.3 KB 0644
query.php.php.tar.gz File 5.04 KB 0644
query.php.tar File 44.5 KB 0644
query.tar File 22 KB 0644
query.tar.gz File 3.31 KB 0644
query.zip File 14.96 KB 0644
quicktags.js.js.tar.gz File 6.32 KB 0644
quicktags.js.tar File 24 KB 0644
quicktags.min.js.min.js.tar.gz File 3.54 KB 0644
quicktags.min.js.tar File 12.5 KB 0644
quote.tar File 15.5 KB 0644
quote.tar.gz File 1.61 KB 0644
quote.zip File 8.38 KB 0644
razor-agent.log.log.tar.gz File 3.44 KB 0644
razor-agent.log.tar File 26 KB 0644
react-dom.js.js.tar.gz File 228.91 KB 0644
react-dom.js.tar File 1.03 MB 0644
react.js.js.tar.gz File 27.83 KB 0644
react.js.tar File 109 KB 0644
react.min.js.min.js.tar.gz File 4.19 KB 0644
react.min.js.tar File 12 KB 0644
read-more.php.php.tar.gz File 860 B 0644
read-more.php.tar File 3.5 KB 0644
read-more.tar File 7.5 KB 0644
read-more.tar.gz File 825 B 0644
read-more.zip File 3.21 KB 0644
readme.txt.tar File 27.5 KB 0644
readme.txt.txt.tar.gz File 10.17 KB 0644
readonly.php.php.tar.gz File 684 B 0644
readonly.php.tar File 3 KB 0644
redux-routine.js.js.tar.gz File 4.76 KB 0644
redux-routine.js.tar File 23 KB 0644
redux-routine.min.js.min.js.tar.gz File 2.87 KB 0644
redux-routine.min.js.tar File 10.5 KB 0644
registration-functions.php.php.tar.gz File 275 B 0644
registration-functions.php.tar File 2 KB 0644
registration.php.php.tar.gz File 270 B 0644
registration.php.tar File 2 KB 0644
renderers.tar File 21.5 KB 0644
renderers.tar.gz File 4.74 KB 0644
renderers.zip File 18.84 KB 0644
rep.txt.tar File 2 KB 0644
rep.txt.txt.tar.gz File 120 B 0644
resizable.js.js.tar.gz File 7.5 KB 0644
resizable.js.tar File 31.5 KB 0644
resize.gif.gif.tar.gz File 204 B 0644
resize.gif.tar File 2 KB 0644
rest-api.php.php.tar.gz File 20.85 KB 0644
rest-api.php.tar File 100 KB 0644
rest-api.tar File 2.74 MB 0644
rest-api.tar.gz File 225.19 KB 0644
rest-api.zip File 2.7 MB 0644
reusable-blocks.js.js.tar.gz File 4.19 KB 0644
reusable-blocks.js.tar File 20 KB 0644
reusable-blocks.zip File 3.07 KB 0644
reviall.php.php.tar.gz File 123 B 0644
reviall.php.tar File 1.5 KB 0644
revision.php.php.tar.gz File 7.76 KB 0644
revision.php.tar File 38.5 KB 0644
revisions.js.js.tar.gz File 8.67 KB 0644
revisions.js.tar File 35.5 KB 0644
revisions.min.js.min.js.tar.gz File 4.94 KB 0644
revisions.min.js.tar File 19.5 KB 0644
rewrite.php.php.tar.gz File 5.85 KB 0644
rewrite.php.tar File 21 KB 0644
rich-text.js.js.tar.gz File 18.6 KB 0644
rich-text.js.tar File 85.5 KB 0644
rich-text.min.js.min.js.tar.gz File 12.15 KB 0644
rich-text.min.js.tar File 38 KB 0644
robots-template.php.php.tar.gz File 1.31 KB 0644
robots-template.php.tar File 7 KB 0644
robots.txt.tar File 3 KB 0644
robots.txt.txt.tar.gz File 203 B 0644
router.js.js.tar.gz File 12.45 KB 0644
router.js.tar File 54 KB 0644
router.min.js.min.js.tar.gz File 5.56 KB 0644
router.min.js.tar File 15 KB 0644
rss-2x.png.png.tar.gz File 1.46 KB 0644
rss-2x.png.tar File 3 KB 0644
rss-functions.php.php.tar.gz File 313 B 0644
rss-functions.php.tar File 2 KB 0644
rss.php.php.tar.gz File 6.7 KB 0644
rss.php.tar File 30 KB 0644
rss.png.png.tar.gz File 769 B 0644
rss.png.tar File 2.5 KB 0644
rss.tar File 13.5 KB 0644
rss.tar.gz File 1.29 KB 0644
rss.zip File 6.27 KB 0644
run.tar File 1.5 KB 0644
run.tar.gz File 86 B 0644
run.zip File 156 B 0644
script-loader.php.php.tar.gz File 37.1 KB 0644
script-loader.php.tar File 156.5 KB 0644
script-modules.php.php.tar.gz File 2.4 KB 0644
script-modules.php.tar File 11.5 KB 0644
script-modules.tar File 434.5 KB 0644
script-modules.tar.gz File 118.04 KB 0644
search.php.php.tar.gz File 5.46 KB 0644
search.php.tar File 25 KB 0644
search.tar File 158.5 KB 0644
search.tar.gz File 6.39 KB 0644
search.zip File 143.39 KB 0644
separator.tar File 15.5 KB 0644
separator.tar.gz File 1.38 KB 0644
separator.zip File 6.91 KB 0644
server.c301.cloudmark.com.conf.tar File 2.5 KB 0644
server.c302.cloudmark.com.conf.tar File 2.5 KB 0644
server.c303.cloudmark.com.conf.tar File 2.5 KB 0644
servers.catalogue.lst.catalogue.lst.tar.gz File 148 B 0644
servers.catalogue.lst.tar File 2 KB 0644
servers.discovery.lst.discovery.lst.tar.gz File 147 B 0644
servers.discovery.lst.tar File 2 KB 0644
servers.nomination.lst.nomination.lst.tar.gz File 150 B 0644
servers.nomination.lst.tar File 2 KB 0644
session.php.php.tar.gz File 278 B 0644
session.php.tar File 2 KB 0644
settings.php.php.tar.gz File 1.55 KB 0644
settings.php.tar File 29 KB 0644
shadow.php.php.tar.gz File 837 B 0644
shadow.php.tar File 4 KB 0644
shortcode.js.js.tar.gz File 3.58 KB 0644
shortcode.js.tar File 23 KB 0644
shortcode.min.js.min.js.tar.gz File 1.23 KB 0644
shortcode.min.js.tar File 8 KB 0644
shortcode.php.php.tar.gz File 457 B 0644
shortcode.php.tar File 2.5 KB 0644
shortcode.tar File 10.5 KB 0644
shortcode.tar.gz File 1.1 KB 0644
shortcode.zip File 4.34 KB 0644
shortcodes.php.php.tar.gz File 6.57 KB 0644
shortcodes.php.tar File 25 KB 0644
sidebar.php.php.tar.gz File 1.47 KB 0644
sidebar.php.tar File 6 KB 0644
site-health-rtl.css.css.tar.gz File 1.91 KB 0644
site-health-rtl.css.tar File 8 KB 0644
site-health-rtl.min.css.min.css.tar.gz File 1.67 KB 0644
site-health-rtl.min.css.tar File 7 KB 0644
site-info.php.php.tar.gz File 2.66 KB 0644
site-info.php.tar File 9.5 KB 0644
site-logo.php.php.tar.gz File 1.88 KB 0644
site-logo.php.tar File 8 KB 0644
site-logo.tar File 23.5 KB 0644
site-logo.tar.gz File 2.18 KB 0644
site-logo.zip File 16.82 KB 0644
site-tagline.php.php.tar.gz File 625 B 0644
site-tagline.php.tar File 3 KB 0644
site-tagline.tar File 12 KB 0644
site-tagline.tar.gz File 1.03 KB 0644
site-tagline.zip File 3.46 KB 0644
site-title.php.php.tar.gz File 911 B 0644
site-title.php.tar File 3.5 KB 0644
site-title.tar File 12 KB 0644
site-title.tar.gz File 1.15 KB 0644
site-title.zip File 4.34 KB 0644
site-users.php.php.tar.gz File 3.46 KB 0644
site-users.php.tar File 13.5 KB 0644
sitemaps.php.php.tar.gz File 1.15 KB 0644
sitemaps.php.tar File 5 KB 0644
sitemaps.tar File 153 KB 0644
sitemaps.tar.gz File 13.02 KB 0644
sitemaps.zip File 145.59 KB 0644
skins.zip File 236.18 KB 0644
smilies.tar File 32 KB 0644
smilies.tar.gz File 8.34 KB 0644
smilies.zip File 13.94 KB 0644
social-link.php.php.tar.gz File 23.98 KB 0644
social-link.php.tar File 68 KB 0644
social-link.tar File 9 KB 0644
social-link.tar.gz File 960 B 0644
social-link.zip File 4.25 KB 0644
social-links-shared-background-color.php File 951 B 0644
social-links.tar File 60.5 KB 0644
social-links.tar.gz File 5.04 KB 0644
social-links.zip File 55 KB 0644
sodium_compat.tar File 2.96 MB 0644
sodium_compat.tar.gz File 273.41 KB 0644
sodium_compat.zip File 2.88 MB 0644
softaculous_backups.tar File 55.19 MB 0644
softaculous_backups.zip File 55.19 MB 0644
sortable.min.js.min.js.tar.gz File 6.56 KB 0644
sortable.min.js.tar File 26.5 KB 0644
spacer.tar File 13 KB 0644
spacer.tar.gz File 1.05 KB 0644
spacer.zip File 5.99 KB 0644
spacing.php.php.tar.gz File 1.02 KB 0644
spacing.php.tar File 4.5 KB 0644
speculative-loading.php.php.tar.gz File 2.8 KB 0644
speculative-loading.php.tar File 10 KB 0644
spinner-2x.gif.gif.tar.gz File 4.58 KB 0644
spinner-2x.gif.tar File 17 KB 0644
spinner.gif.gif.tar.gz File 2.11 KB 0644
spinner.gif.tar File 10 KB 0644
spl-autoload-compat.php.php.tar.gz File 416 B 0644
spl-autoload-compat.php.tar File 2 KB 0644
spreadsheet.png.png.tar.gz File 332 B 0644
spreadsheet.png.tar File 2 KB 0644
spreadsheet.svg.svg.tar.gz File 311 B 0644
spreadsheet.svg.tar File 2 KB 0644
src.tar File 4.2 MB 0644
src.tar.gz File 124.75 KB 0644
src.zip File 3.99 MB 0644
ssl.db.db.tar.gz File 2.42 KB 0644
ssl.db.tar File 16.5 KB 0644
ssl.tar File 71.5 KB 0644
ssl.tar.gz File 15.26 KB 0644
ssl.zip File 61.86 KB 0644
ssl_FETCHINSTALLEDHOSTS.tar File 5 KB 0644
ssl_FETCHINSTALLEDHOSTS.tar.gz File 2.31 KB 0644
status.zip File 441 B 0644
streams.php.php.tar.gz File 1.88 KB 0644
streams.php.tar File 9.5 KB 0644
style-engine.js.js.tar.gz File 9.35 KB 0644
style-engine.js.tar File 37 KB 0644
style-engine.min.js.min.js.tar.gz File 2.16 KB 0644
style-engine.min.js.tar File 7.5 KB 0644
style-engine.php.php.tar.gz File 2.08 KB 0644
style-engine.php.tar File 9 KB 0644
style-engine.tar File 52.5 KB 0644
style-engine.tar.gz File 9.06 KB 0644
style-engine.zip File 48.13 KB 0644
style-rtl.css.css.tar.gz File 792 B 0644
style-rtl.css.tar File 60.5 KB 0644
style-rtl.min.css.min.css.tar.gz File 392 B 0644
style-rtl.min.css.tar File 2.5 KB 0644
style.css.css.tar.gz File 788 B 0644
style.css.tar File 88 KB 0644
style.min.css.min.css.tar.gz File 776 B 0644
style.min.css.tar File 71 KB 0644
style.php.php.tar.gz File 115 B 0644
style.php.tar File 1.5 KB 0644
suggest.js.js.tar.gz File 2.49 KB 0644
suggest.js.tar File 8.5 KB 0644
swfobject.js.js.tar.gz File 126 B 0644
swfobject.js.tar File 1.5 KB 0644
swfobject.min.js.min.js.tar.gz File 169 B 0644
swfobject.min.js.tar File 2 KB 0644
swfupload.js.js.tar.gz File 134 B 0644
swfupload.js.tar File 1.5 KB 0644
swfupload.tar File 3.5 KB 0644
swfupload.tar.gz File 164 B 0644
swfupload.zip File 698 B 0644
table.tar File 37.5 KB 0644
table.tar.gz File 2.77 KB 0644
table.zip File 28.88 KB 0644
tabs.min.js.min.js.tar.gz File 3.98 KB 0644
tabs.min.js.tar File 13.5 KB 0644
tag-cloud.php.php.tar.gz File 829 B 0644
tag-cloud.php.tar File 3.5 KB 0644
tag-cloud.tar File 12.5 KB 0644
tag-cloud.tar.gz File 1.23 KB 0644
tag-cloud.zip File 5.27 KB 0644
taxonomy.php.php.tar.gz File 36.7 KB 0644
taxonomy.php.tar File 174.5 KB 0644
template-canvas.php.php.tar.gz File 442 B 0644
template-canvas.php.tar File 2.5 KB 0644
template-loader.php.php.tar.gz File 1.68 KB 0644
template-loader.php.tar File 6 KB 0644
template-part.php.php.tar.gz File 2.88 KB 0644
template-part.php.tar File 11.5 KB 0644
template-part.tar File 15.5 KB 0644
template-part.tar.gz File 1.14 KB 0644
template-part.zip File 8.02 KB 0644
template.php.php.tar.gz File 8.19 KB 0644
template.php.tar File 37.5 KB 0644
term-count.php.php.tar.gz File 859 B 0644
term-count.php.tar File 3.5 KB 0644
term-count.tar File 7.5 KB 0644
term-count.tar.gz File 754 B 0644
term-count.zip File 2.24 KB 0644
term-data.php.php.tar.gz File 1.3 KB 0644
term-data.php.tar File 5 KB 0644
term-description.php.php.tar.gz File 803 B 0644
term-description.php.tar File 3.5 KB 0644
term-description.tar File 7.5 KB 0644
term-description.tar.gz File 824 B 0644
term-description.zip File 2.88 KB 0644
term-name.php.php.tar.gz File 941 B 0644
term-name.php.tar File 4 KB 0644
term-name.tar File 7.5 KB 0644
term-name.tar.gz File 772 B 0644
term-name.zip File 2.36 KB 0644
term-template.php.php.tar.gz File 1.73 KB 0644
term-template.php.tar File 6 KB 0644
term-template.tar File 11.5 KB 0644
term-template.tar.gz File 1.14 KB 0644
term-template.zip File 4.84 KB 0644
term.php.php.tar.gz File 1.05 KB 0644
term.php.tar File 4 KB 0644
terms-query.tar File 3 KB 0644
terms-query.tar.gz File 574 B 0644
terms-query.zip File 1.16 KB 0644
text-columns.tar File 11 KB 0644
text-columns.tar.gz File 924 B 0644
text-columns.zip File 4.35 KB 0644
text.png.png.tar.gz File 328 B 0644
text.png.tar File 3.5 KB 0644
text.svg.svg.tar.gz File 299 B 0644
text.svg.tar File 2 KB 0644
textcolor.tar File 19 KB 0644
textcolor.tar.gz File 4.23 KB 0644
textcolor.zip File 16.27 KB 0644
theme-compat.tar File 177 KB 0644
theme-compat.tar.gz File 9.05 KB 0644
theme-compat.zip File 169.93 KB 0644
theme-i18n.json.json.tar.gz File 542 B 0644
theme-i18n.json.tar File 3.5 KB 0644
theme-install.php.php.tar.gz File 5.7 KB 0644
theme-install.php.tar File 25 KB 0644
theme-previews.php.php.tar.gz File 1.26 KB 0644
theme-previews.php.tar File 4.5 KB 0644
theme-rtl.css.css.tar.gz File 269 B 0644
theme-rtl.css.tar File 7.5 KB 0644
theme-templates.php.php.tar.gz File 2.43 KB 0644
theme-templates.php.tar File 8 KB 0644
theme.css.css.tar.gz File 266 B 0644
theme.css.tar File 10.5 KB 0644
theme.json.json.tar.gz File 2.29 KB 0644
theme.json.tar File 10.5 KB 0644
theme.min.css.min.css.tar.gz File 257 B 0644
theme.min.css.tar File 10 KB 0644
theme.min.js.min.js.tar.gz File 7.3 KB 0644
theme.min.js.tar File 28.5 KB 0644
theme.php.php.tar.gz File 30.04 KB 0644
theme.php.tar File 133.5 KB 0644
themes.php.php.tar.gz File 8.49 KB 0644
themes.php.tar File 49.5 KB 0644
themes.tar File 2.44 MB 0644
themes.tar.gz File 204.23 KB 0644
themes.zip File 1.46 MB 0644
thickbox.css.css.tar.gz File 1.02 KB 0644
thickbox.css.tar File 4.5 KB 0644
thickbox.js.js.tar.gz File 4.05 KB 0644
thickbox.js.tar File 15 KB 0644
thickbox.tar File 35.5 KB 0644
thickbox.tar.gz File 20.43 KB 0644
thickbox.zip File 31.3 KB 0644
tinymce.min.js.min.js.tar.gz File 121.62 KB 0644
tinymce.min.js.tar File 359 KB 0644
tinymce.tar File 2.81 MB 0644
tinymce.tar.gz File 800.81 KB 0644
tinymce.zip File 2.74 MB 0644
tmp.tar File 33.64 MB 0644
tmp.tar.gz File 7.23 MB 0644
tmp.zip File 33.38 MB 0644
toggle-arrow-2x.png.png.tar.gz File 469 B 0644
toggle-arrow-2x.png.tar File 2 KB 0644
toggle-arrow.png.png.tar.gz File 410 B 0644
toggle-arrow.png.tar File 2 KB 0644
token-list.js.js.tar.gz File 1.77 KB 0644
token-list.js.tar File 7.5 KB 0644
token-list.min.js.min.js.tar.gz File 704 B 0644
token-list.min.js.tar File 3 KB 0644
tools.php.php.tar.gz File 1.5 KB 0644
tools.php.tar File 5 KB 0644
tooltip.js.js.tar.gz File 4.61 KB 0644
tooltip.js.tar File 16 KB 0644
translations.php.php.tar.gz File 2.88 KB 0644
translations.php.tar File 14.5 KB 0644
tw-sack.js.js.tar.gz File 1.62 KB 0644
tw-sack.js.tar File 6.5 KB 0644
tw-sack.min.js.min.js.tar.gz File 1.25 KB 0644
tw-sack.min.js.tar File 5 KB 0644
twemoji.js.js.tar.gz File 8.75 KB 0644
twemoji.js.tar File 38 KB 0644
twemoji.min.js.min.js.tar.gz File 4.17 KB 0644
twemoji.min.js.tar File 21 KB 0644
underscore.js.js.tar.gz File 19.1 KB 0644
underscore.js.tar File 69 KB 0644
underscore.min.js.min.js.tar.gz File 7.26 KB 0644
underscore.min.js.tar File 20 KB 0644
update-core.php.php.tar.gz File 10.56 KB 0644
update-core.php.tar File 47 KB 0644
update.php.php.tar.gz File 8.59 KB 0644
update.php.tar File 52.5 KB 0644
upgrade.php.php.tar.gz File 2.14 KB 0644
upgrade.php.tar File 13.5 KB 0644
upload.php.php.tar.gz File 4.1 KB 0644
upload.php.tar File 16.5 KB 0644
uploader-icons-2x.png.png.tar.gz File 3.45 KB 0644
uploader-icons-2x.png.tar File 5 KB 0644
uploader-icons.png.png.tar.gz File 1.73 KB 0644
uploader-icons.png.tar File 3.5 KB 0644
uploads.tar File 6.37 MB 0644
uploads.tar.gz File 3.55 MB 0644
uploads.zip File 6.28 MB 0644
url.min.js.min.js.tar.gz File 3.9 KB 0644
url.min.js.tar File 10 KB 0644
user-edit.php.php.tar.gz File 9.85 KB 0644
user-edit.php.tar File 42 KB 0644
user-new.php.php.tar.gz File 6.35 KB 0644
user-new.php.tar File 26 KB 0644
user-suggest.js.js.tar.gz File 1.06 KB 0644
user-suggest.js.tar File 4 KB 0644
user.php.php.tar.gz File 36.43 KB 0644
user.php.tar File 176.5 KB 0644
user.tar File 15.5 KB 0644
user.tar.gz File 1.95 KB 0644
user.zip File 7.58 KB 0644
users.php.php.tar.gz File 5.62 KB 0644
users.php.tar File 35 KB 0644
utf8.php.php.tar.gz File 2.64 KB 0644
utf8.php.tar File 9 KB 0644
utils.js.js.tar.gz File 1.74 KB 0644
utils.js.tar File 6.5 KB 0644
utils.min.js.min.js.tar.gz File 935 B 0644
utils.min.js.tar File 3.5 KB 0644
utils.php.php.tar.gz File 582 B 0644
utils.php.tar File 2.5 KB 0644
utils.zip File 19.07 KB 0644
var.tar File 1.5 KB 0644
var.tar.gz File 90 B 0644
vars.php.php.tar.gz File 2.08 KB 0644
vars.php.tar File 8 KB 0644
vendor.tar File 2.56 MB 0644
vendor.tar.gz File 595.01 KB 0644
vendor.zip File 2.55 MB 0644
verse.tar File 8 KB 0644
verse.tar.gz File 896 B 0644
verse.zip File 2.91 KB 0644
version.php.php.tar.gz File 567 B 0644
version.php.tar File 3 KB 0644
video.php.php.tar.gz File 1.19 KB 0644
video.php.tar File 4.5 KB 0644
video.png.png.tar.gz File 1.51 KB 0644
video.png.tar File 4 KB 0644
video.svg.svg.tar.gz File 342 B 0644
video.svg.tar File 2 KB 0644
video.tar File 20 KB 0644
video.tar.gz File 1.73 KB 0644
video.zip File 10.33 KB 0644
view.asset.php.asset.php.tar.gz File 212 B 0644
view.asset.php.tar File 3 KB 0644
view.js.js.tar.gz File 979 B 0644
view.js.tar File 16.5 KB 0644
view.min.js.min.js.tar.gz File 726 B 0644
view.min.js.tar File 3 KB 0644
viewport.min.js.min.js.tar.gz File 1.06 KB 0644
viewport.min.js.tar File 3.5 KB 0644
views.js.js.tar.gz File 2.27 KB 0644
views.js.tar File 9.5 KB 0644
views.min.js.min.js.tar.gz File 1.32 KB 0644
views.min.js.tar File 4.5 KB 0644
w-logo-blue.png.png.tar.gz File 2.56 KB 0644
w-logo-blue.png.tar File 5 KB 0644
web.config.config.tar.gz File 300 B 0644
web.config.tar File 2 KB 0644
webalizer.tar File 19.95 MB 0644
webalizer.tar.gz File 3.66 MB 0644
webalizer.zip File 19.74 MB 0644
widget-group.php.php.tar.gz File 902 B 0644
widget-group.php.tar File 4 KB 0644
widget-group.tar File 4 KB 0644
widget-group.tar.gz File 495 B 0644
widget-group.zip File 1.13 KB 0644
widgets-form.php.php.tar.gz File 5.79 KB 0644
widgets-form.php.tar File 21 KB 0644
widgets-rtl.css.css.tar.gz File 4.07 KB 0644
widgets-rtl.css.tar File 19 KB 0644
widgets-rtl.min.css.min.css.tar.gz File 3.39 KB 0644
widgets-rtl.min.css.tar File 16 KB 0644
widgets.js.js.tar.gz File 10.54 KB 0644
widgets.js.tar File 49.5 KB 0644
widgets.min.js.min.js.tar.gz File 7.03 KB 0644
widgets.min.js.tar File 21 KB 0644
widgets.php.php.tar.gz File 15.48 KB 0644
widgets.php.tar File 73 KB 0644
widgets.tar File 718 KB 0644
widgets.tar.gz File 49.28 KB 0644
widgets.zip File 842.3 KB 0644
wordcount.js.js.tar.gz File 2.97 KB 0644
wordcount.js.tar File 15 KB 0644
wordcount.min.js.min.js.tar.gz File 1.35 KB 0644
wordcount.min.js.tar File 5 KB 0644
wordpress.tar File 37.5 KB 0644
wordpress.tar.gz File 17.62 KB 0644
wp-activate.php.php.tar.gz File 2.57 KB 0644
wp-activate.php.tar File 9 KB 0644
wp-admin.css.css.tar.gz File 240 B 0644
wp-admin.css.tar File 2 KB 0644
wp-admin.tar File 9.8 MB 0644
wp-admin.tar.gz File 2.17 MB 0644
wp-admin.zip File 9.46 MB 0644
wp-ajax-response.js.js.tar.gz File 1.55 KB 0644
wp-ajax-response.js.tar File 5.5 KB 0644
wp-ajax-response.min.js.min.js.tar.gz File 1.23 KB 0644
wp-ajax-response.min.js.tar File 4.5 KB 0644
wp-api.js.js.tar.gz File 10.66 KB 0644
wp-api.js.tar File 47.5 KB 0644
wp-api.min.js.min.js.tar.gz File 4.15 KB 0644
wp-api.min.js.tar File 16 KB 0644
wp-auth-check-rtl.css.css.tar.gz File 989 B 0644
wp-auth-check-rtl.css.tar File 4 KB 0644
wp-auth-check.css.css.tar.gz File 961 B 0644
wp-auth-check.css.tar File 4 KB 0644
wp-auth-check.js.js.tar.gz File 1.67 KB 0644
wp-auth-check.js.tar File 6 KB 0644
wp-auth-check.min.css.min.css.tar.gz File 847 B 0644
wp-auth-check.min.css.tar File 3.5 KB 0644
wp-auth-check.min.js.min.js.tar.gz File 882 B 0644
wp-auth-check.min.js.tar File 3.5 KB 0644
wp-backbone.js.js.tar.gz File 3.67 KB 0644
wp-backbone.js.tar File 16.5 KB 0644
wp-backbone.min.js.min.js.tar.gz File 1.27 KB 0644
wp-backbone.min.js.tar File 4.5 KB 0644
wp-blog-header.php.php.tar.gz File 473 B 0644
wp-blog-header.php.tar File 2.5 KB 0644
wp-comments-post.php.php.tar.gz File 1.15 KB 0644
wp-comments-post.php.tar File 4 KB 0644
wp-conffg.php.php.tar.gz File 118 B 0644
wp-conffg.php.tar File 1.5 KB 0644
wp-conffq.php.php.tar.gz File 118 B 0644
wp-conffq.php.tar File 1.5 KB 0644
wp-config-sample.php.php.tar.gz File 1.4 KB 0644
wp-config-sample.php.tar File 5 KB 0644
wp-config.php.php.tar.gz File 1.7 KB 0644
wp-config.php.tar File 5 KB 0644
wp-content.zip File 151.48 MB 0644
wp-cron.php.php.tar.gz File 2.15 KB 0644
wp-cron.php.tar File 7 KB 0644
wp-custom-header.js.js.tar.gz File 2.98 KB 0644
wp-custom-header.js.tar File 12 KB 0644
wp-custom-header.min.js.min.js.tar.gz File 1.68 KB 0644
wp-custom-header.min.js.tar File 6 KB 0644
wp-db.php.php.tar.gz File 382 B 0644
wp-db.php.tar File 2 KB 0644
wp-diff.php.php.tar.gz File 459 B 0644
wp-diff.php.tar File 2.5 KB 0644
wp-embed-template-ie.css.css.tar.gz File 170 B 0644
wp-embed-template-ie.css.tar File 2 KB 0644
wp-embed-template.css.css.tar.gz File 2.12 KB 0644
wp-embed-template.css.tar File 9.5 KB 0644
wp-embed-template.js.js.tar.gz File 1.94 KB 0644
wp-embed-template.js.tar File 8.5 KB 0644
wp-embed-template.min.js.min.js.tar.gz File 1.21 KB 0644
wp-embed-template.min.js.tar File 5 KB 0644
wp-embed.js.js.tar.gz File 1.4 KB 0644
wp-embed.js.tar File 5 KB 0644
wp-embed.min.js.min.js.tar.gz File 807 B 0644
wp-embed.min.js.tar File 3 KB 0644
wp-emoji-loader.js.js.tar.gz File 3.85 KB 0644
wp-emoji-loader.js.tar File 14.5 KB 0644
wp-emoji-loader.min.js.min.js.tar.gz File 1.3 KB 0644
wp-emoji-loader.min.js.tar File 4.5 KB 0644
wp-emoji-release.min.js.min.js.tar.gz File 5.36 KB 0644
wp-emoji-release.min.js.tar File 24 KB 0644
wp-emoji.js.js.tar.gz File 3.38 KB 0644
wp-emoji.js.tar File 10.5 KB 0644
wp-emoji.min.js.min.js.tar.gz File 1.5 KB 0644
wp-emoji.min.js.tar File 4.5 KB 0644
wp-headre.php.php.tar.gz File 117 B 0644
wp-headre.php.tar File 1.5 KB 0644
wp-links-opml.php.php.tar.gz File 1.21 KB 0644
wp-links-opml.php.tar File 4 KB 0644
wp-list-revisions.js.js.tar.gz File 553 B 0644
wp-list-revisions.js.tar File 2.5 KB 0644
wp-list-revisions.min.js.min.js.tar.gz File 475 B 0644
wp-list-revisions.min.js.tar File 2.5 KB 0644
wp-lists.js.js.tar.gz File 5.37 KB 0644
wp-lists.js.tar File 26.5 KB 0644
wp-lists.min.js.min.js.tar.gz File 2.59 KB 0644
wp-lists.min.js.tar File 9 KB 0644
wp-load.php.php.tar.gz File 1.71 KB 0644
wp-load.php.tar File 5.5 KB 0644
wp-mail.php.php.tar.gz File 3.1 KB 0644
wp-mail.php.tar File 10.5 KB 0644
wp-plupload.js.js.tar.gz File 5.19 KB 0644
wp-plupload.js.tar File 18 KB 0644
wp-pointer-rtl.css.css.tar.gz File 1.21 KB 0644
wp-pointer-rtl.css.tar File 5.5 KB 0644
wp-pointer-rtl.min.css.min.css.tar.gz File 1.03 KB 0644
wp-pointer-rtl.min.css.tar File 5 KB 0644
wp-pointer.css.css.tar.gz File 1.18 KB 0644
wp-pointer.css.tar File 5.5 KB 0644
wp-pointer.js.js.tar.gz File 3.04 KB 0644
wp-pointer.js.tar File 11.5 KB 0644
wp-pointer.min.css.min.css.tar.gz File 1.02 KB 0644
wp-pointer.min.css.tar File 5 KB 0644
wp-pointer.min.js.min.js.tar.gz File 1.41 KB 0644
wp-pointer.min.js.tar File 5.5 KB 0644
wp-sanitize.js.js.tar.gz File 679 B 0644
wp-sanitize.js.tar File 3 KB 0644
wp-sanitize.min.js.min.js.tar.gz File 397 B 0644
wp-sanitize.min.js.tar File 2 KB 0644
wp-settings.php.php.tar.gz File 6.24 KB 0644
wp-settings.php.tar File 32 KB 0644
wp-signup.php.php.tar.gz File 7.92 KB 0644
wp-signup.php.tar File 35.5 KB 0644
wp-trackback.php.php.tar.gz File 1.94 KB 0644
wp-trackback.php.tar File 7 KB 0644
wp-util.js.js.tar.gz File 1.81 KB 0644
wp-util.js.tar File 6.5 KB 0644
wp-util.min.js.min.js.tar.gz File 870 B 0644
wp-util.min.js.tar File 3 KB 0644
wp.26_40431.2025-12-08_21-41-25.tar File 3.5 KB 0644
wp.tar File 2.34 MB 0644
wp.tar.gz File 231 B 0644
wp.zip File 2.34 MB 0644
wpdialog.js.js.tar.gz File 451 B 0644
wpdialog.js.tar File 2.5 KB 0644
wpdialog.min.js.min.js.tar.gz File 318 B 0644
wpdialog.min.js.tar File 2 KB 0644
wpicons-2x.png.png.tar.gz File 14.39 KB 0644
wpicons-2x.png.tar File 16.5 KB 0644
wpicons.png.png.tar.gz File 7.04 KB 0644
wpicons.png.tar File 8.5 KB 0644
wplink.js.js.tar.gz File 5.96 KB 0644
wplink.js.tar File 22.5 KB 0644
wplink.min.js.min.js.tar.gz File 3.92 KB 0644
wplink.min.js.tar File 13 KB 0644
wpo-cache.tar File 4 KB 0644
wpo-cache.tar.gz File 825 B 0644
wpo-cache.zip File 1.7 KB 0644
wpo-minify.tar File 1.63 MB 0644
wpo-minify.tar.gz File 749.57 KB 0644
wpo.tar File 25 KB 0644
wpo.tar.gz File 21.31 KB 0644
wpspin-2x.gif.gif.tar.gz File 8.14 KB 0644
wpspin-2x.gif.tar File 10.5 KB 0644
wpspin.gif.gif.tar.gz File 1.88 KB 0644
wpspin.gif.tar File 4 KB 0644
wpview.zip File 9.18 KB 0644
xfn.min.js.min.js.tar.gz File 390 B 0644
xfn.min.js.tar File 2 KB 0644
xit-2x.gif.gif.tar.gz File 819 B 0644
xit-2x.gif.tar File 2.5 KB 0644
xit.gif.gif.tar.gz File 317 B 0644
xit.gif.tar File 2 KB 0644
xmlrpc.php.php.tar.gz File 1.5 KB 0644
xmlrpc.php.tar File 5 KB 0644
xyn.php.php.tar.gz File 113 B 0644
xyn.php.tar File 1.5 KB 0644
zt2.php.php.tar.gz File 265 B 0644
zt2.php.tar File 2 KB 0644
zxcvbn-async.js.js.tar.gz File 536 B 0644
zxcvbn-async.js.tar File 2.5 KB 0644
zxcvbn-async.min.js.min.js.tar.gz File 364 B 0644
zxcvbn-async.min.js.tar File 2 KB 0644
zxcvbn.min.js.min.js.tar.gz File 390.41 KB 0644
zxcvbn.min.js.tar File 804.5 KB 0644