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() );
	}


Top ↑

Changelog

Changelog
VersionDescription
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More