wp_xmlrpc_server::mt_supportedTextFilters() WordPress Method
The wp_xmlrpc_server::mt_supportedTextFilters() method is used to get a list of the text filters that are currently supported by the WordPress blogging software. This information can be used by clients to determine which text filters are available for use when posting to a WordPress blog.
wp_xmlrpc_server::mt_supportedTextFilters() #
Retrieve an empty array because we don’t support per-post text filters.
Source
File: wp-includes/class-wp-xmlrpc-server.php
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() ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |