最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp cli - WP-CLI update date and time format

programmeradmin0浏览0评论

I'm new to WP-CLI. After a lot of Googling and searching in this forum, I haven't found out which is the command to update both date and time formats.

wp option update......

Thanks for any help!

Regards

I'm new to WP-CLI. After a lot of Googling and searching in this forum, I haven't found out which is the command to update both date and time formats.

wp option update......

Thanks for any help!

Regards

Share Improve this question asked Sep 1, 2019 at 15:34 Roberto JobetRoberto Jobet 1937 bronze badges 1
  • Last example in this list: developer.wordpress/cli/commands/option/update/#examples – norman.lol Commented Sep 1, 2019 at 17:19
Add a comment  | 

1 Answer 1

Reset to default 8

The wp-cli command structure would be:

wp option update timezone_string "American/New_York"

So:

  1. option to act on a WordPress option
  2. update to update the option
  3. the option name, in this case 'timezone_string'
  4. the new value, in this case 'American/New_York'

Items 3 and 4 are defined by WordPress, a plugin, or other custom code.

Number 4, the value may have only a limited number of valid values. In this case, something other than a standard timezone would cause problems.

Generally speaking, I update the timezone, time format and start of week to Sunday.

wp option update timezone_string "America/New_York"
wp option update time_format "g:i A"
wp option update start_of_week 0

So research your basic WordPress options to determine the option name and the valid values, then structure your command line appropriately.

发布评论

评论列表(0)

  1. 暂无评论