Uses
Uses | Description |
---|---|
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: rest_after_insert_{$this->taxonomy} | Fires after a single term is completely created or updated via the REST API. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::get_item_schema() | Retrieves the term’s schema, conforming to JSON Schema. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::prepare_item_for_response() | Prepares a single term output for response. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::prepare_item_for_database() | Prepares a single term for create or update. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: rest_insert_{$this->taxonomy} | Fires after a single term is created or updated via the REST API. |
wp-includes/rest-api.php: rest_ensure_response() | Ensures a REST response is a response object (for consistency). |
wp-includes/rest-api.php: rest_url() | Retrieves the URL to a REST endpoint. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. |
wp-includes/taxonomy.php: wp_insert_term() | Add a new term to the database. |
wp-includes/taxonomy.php: is_taxonomy_hierarchical() | Determines whether the taxonomy object is hierarchical. |
wp-includes/taxonomy.php: get_term() | Get all Term data from database by Term ID. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |