Skip to content

Instantly share code, notes, and snippets.

@DriftwoodJP
Last active August 1, 2018 09:32
Show Gist options
  • Save DriftwoodJP/df521cc29313fe5747aa9784e22ea415 to your computer and use it in GitHub Desktop.
Save DriftwoodJP/df521cc29313fe5747aa9784e22ea415 to your computer and use it in GitHub Desktop.
To set options in WordPress
#!/bin/bash
wp option update siteurl 'https://stg.example.com/wordpress'
wp option update home 'https://stg.example.com/wordpress'
wp option update blogname 'foo'
wp option update blogdescription ''
wp option update timezone_string 'Asia/Tokyo'
wp option update date_format 'Y/m/d'
wp option update time_format 'H:i'
wp option update permalink_structure '/blog/%year%/%monthnum%/%day%_%post_id%.html'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment