Skip to content
github-actions[bot] edited this page Jan 10, 2026 · 2 revisions

Filters the Micropub request before processing.

Auto-generated Example

/**
 * 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' );

Parameters

  • array $input The Micropub request input.

Files

\apply_filters( 'before_micropub', $this->input )

← All Hooks

Clone this wiki locally