wp_xmlrpc_server::mt_supportedTextFilters()

In this article

Retrieves an empty array because we don’t support per-post text filters.

Source

public function mt_supportedTextFilters() {
	/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
	do_action( 'xmlrpc_call', 'mt.supportedTextFilters', array(), $this );

	/**
	 * Filters the MoveableType text filters list for XML-RPC.
	 *
	 * @since 2.2.0
	 *
	 * @param array $filters An array of text filters.
	 */
	return apply_filters( 'xmlrpc_text_filters', array() );
}

Hooks

do_action( ‘xmlrpc_call’, string $name, array|string $args, wp_xmlrpc_server $server )

Fires after the XML-RPC user has been authenticated but before the rest of the method logic begins.

apply_filters( ‘xmlrpc_text_filters’, array $filters )

Filters the MoveableType text filters list for XML-RPC.

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.