WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4940 | * |
| 4941 | * @type callable $callback Callable exporter function that accepts an |
| 4942 | * email address and a page and returns an array |
| 4943 | * of name => value pairs of personal data. |
| 4944 | * @type string $exporter_friendly_name Translated user facing friendly name for the |
| 4945 | * exporter. |
| 4946 | * } |
| 4947 | * } |
| 4948 | */ |
| 4949 | $exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() ); |
| 4950 | |
| 4951 | if ( ! is_array( $exporters ) ) { |
| 4952 | wp_send_json_error( __( 'An exporter has improperly used the registration filter.' ) ); |
| 4953 | } |
| 4954 | |
| 4955 | // Do we have any registered exporters? |
| 4956 | if ( 0 < count( $exporters ) ) { |
| 4957 | if ( $exporter_index < 1 ) { |
| 4958 | wp_send_json_error( __( 'Exporter index cannot be negative.' ) ); |