Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_{$this->taxonomy}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
645            *
646            * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
647            *
648            * @since 4.7.0
649            *
650            * @param WP_Term          $term     The deleted term.
651            * @param WP_REST_Response $response The response data.
652            * @param WP_REST_Request  $request  The request sent to the API.
653            */
654           do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request );
655
656           return $response;
657      }
658
659      /**
660       * Prepares a single term for create or update.
661       *
662       * @since 4.7.0
663       *