option_enable_xmlrpc filter-hookWP 1.0

This filter is documented in wp-includes/option.php

Usage

add_filter( 'option_enable_xmlrpc', 'wp_kama_option_enable_xmlrpc_filter', 10, 2 );

/**
 * Function for `option_enable_xmlrpc` filter-hook.
 * 
 * @param  $true   
 * @param  $string 
 *
 * @return 
 */
function wp_kama_option_enable_xmlrpc_filter( $true, $string ){

	// filter...
	return $true;
}
$true
-
$string
-

Where the hook is called

wp_xmlrpc_server::set_is_enabled()
option_enable_xmlrpc
wp-includes/class-wp-xmlrpc-server.php 198
$is_enabled = apply_filters( 'option_enable_xmlrpc', true, 'enable_xmlrpc' );

Where the hook is used in WordPress

Usage not found.