We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Filters the Micropub request before processing.
/** * Filters the Micropub request before processing. * * @param array $input * @return array The filtered value. */ function my_before_micropub_callback( array $input ) { // Your code here. return $input; } add_filter( 'before_micropub', 'my_before_micropub_callback' );
array
$input
\apply_filters( 'before_micropub', $this->input )
← All Hooks
There was an error while loading. Please reload this page.