Enabling XML-RPC Accross 500 blogs

Short of logging into all the database servers remotely and updating the enable_xmlrpc option, you’re looking at a lot of work. But, I suspect you want XMLRPC to always be on. If that’s the case, create an mu-plugins folder in wp-content. Create a php file (enable-xmlrpc.php or whatever you like, it doesn’t matter), and drop … Read more

tag is ignored when using xml-rpc

When you add content to the post_content, WordPress wraps its own tags around everything and removes certain tags (such as script tags). Plugins, such as Visual composer let you add raw JS, ie. your script tags. However, if you don’t want to use a plugin, you can add it directly into your page.php or footer.php … Read more

metaWeblog.getRecentPosts is returning nothing in my iphone app

The XML-RPC has a filter, where you can add your custom methods: function wpse60127_xmlrpc_methods( $methods ) { $methods[‘newWPSE60127Method’] = ‘wpse60127_new_method’; return $methods; } add_filter( ‘xmlrpc_methods’, ‘wpse60127_xmlrpc_methods’ ); Simply add your own methods there (core methods/functions) are also allowed.

Weblog clients cannot retrieve posts: An invalid hexadecimal character (0x7) was found in the element content of the document

If you run your page through validator it detects said broken characters as errors: Line 107, Column 116: non SGML character number 7 …or growth and convergence. Historians (Kennedy 1989) and international relat… I can actually see them on page in Opera v12, but not Chrome. Since your page source and web server advertise UTF-8, … Read more