Skip to content

separate_webmentions_from_comments

github-actions[bot] edited this page Jan 3, 2026 · 1 revision

Auto-generated Example

/**
 * Callback function for the 'separate_webmentions_from_comments' filter.
 *
 * @param mixed $option 
 * @return mixed The filtered value.
 */
function my_separate_webmentions_from_comments_callback( $option ) {
    // Your code here.
    return $option;
}
add_filter( 'separate_webmentions_from_comments', 'my_separate_webmentions_from_comments_callback' );

Parameters

  • $option

Files

apply_filters( 'separate_webmentions_from_comments', get_option( 'webmention_separate_comment', 1 ) )

← All Hooks

Clone this wiki locally