How to Create Content Remotely

You can try WP-CLI, WordPress Command Line Interface. If your pre-processed archive is a set of files, you’ll be able to create future posts to be published on specified dates utilizing these files in batch. All you need to use WP-CLI remotely is SSH terminal and, maybe, some scripting skills. See also Smashing Magazine review.

Use admin-post to submit form data to external database

I’m answering this question to help future WordPress developers on their quest for knowledge. The answer is YES, you can connect to an external database when using the admin_post action. Below is the corrected source… <?php class x94 { private $externalDB01; public function __construct(){ add_action( ‘admin_post_submitForm9’, array( $this, ‘formHandling’ ), 11, 1 ); add_action( ‘plugins_loaded’, … Read more

install / update plugins remotely

If you have admin access to your WP site you can login remotely via any web browser and use built in Updates function. To login to your site visit http://yoursite.url/wpadmin (replace yoursite.url with your web address. From your Dashboard you will see the Updates option which will check for updates of legitimate Plugins. If you … Read more