How do I programmatically create new posts of a custom post type over the XML-RPC API?
How do I programmatically create new posts of a custom post type over the XML-RPC API?
How do I programmatically create new posts of a custom post type over the XML-RPC API?
Is there any image size limit for wordpress xml-rpc?
Remotely search WordPress sites using xml-rpc
Send an extra parameter with xml-rpc login?
Multisite -> XMLRPC
These options are not among the default writable $blog_options. Here’s one (untested) idea using the xmlrpc_blog_options filter to make the show_on_front option writeable: /** * Add ‘show_on_front’ to the list of XML-RPC writeable options. */ add_filter( ‘xmlrpc_blog_options’, function( $blog_options ) { if( is_array( $blog_options ) ) { $blog_options[‘show_on_front’] = array( ‘desc’ => __( ‘Show on … Read more
How to find a post using XML-RPC without knowing ID
XMLRPC newPost post_content issue
XMLRPC slow and weird websites/services
You can modify the arguments of the post type to enable the REST API: function wpd_tribe_events_args( $args, $post_type ) { if ( ‘tribe_events’ == $post_type ) { $args[‘show_in_rest’] = true; } return $args; } add_filter( ‘register_post_type_args’, ‘wpd_tribe_events_args’, 20, 2 );