Disable xml-rpc

How to Disable XML-RPC in WordPress 3.5 All you have to do is paste the following code in a site-specific plugin: 1 add_filter(‘xmlrpc_enabled’, ‘__return_false’); Alternatively, you can just install the plugin called Disable XML-RPC. All you have to do is activate it. It does the exact same thing as the code . . . Read more

WordPress REST API

  WordPress REST API Quickstart Best: https://rudrastyh.com/wordpress/rest-api-create-delete-posts.html   https://github.com/Automattic/wp-rest-php-lib  

10 awesome things to do with cURL

cURL, and its PHP extension libcURL, are tools which can be used to simulate a web browser. In fact, it can for example, submit forms. In this article, I’m going to show you 10 incredible things that you can do using PHP and cURL. Acknowledgments New to cURL? If yes, check . . . Read more