使用CLI在WordPress中更改主页

xqkwcwgp  于 2023-08-03  发布在  WordPress
关注(0)|答案(3)|浏览(103)

如何通过CLI在WordPress中更改主页。
我有一个页面叫做“Home1”,我想把这个页面变成主页。换句话说,我想通过CLI更改“静态页面”。

bwleehnv

bwleehnv1#

#Listing all pages
wp post list

#Listing all pages with type page
wp post list --post_type='page'

#Updates an option value for example the value of Simple page is id = 2
wp option update page_on_front 2

#Update the page as front page by default.
wp option update show_on_front page

字符串

2wnc66cl

2wnc66cl2#

您可以使用wp options update命令,参见documentation

wp option update show_on_front 'page' --path="WORDPRESS_PATH"
wp option update page_on_front pageId --path="WORDPRESS_PATH"

字符串

syqv5f0l

syqv5f0l3#

首先在系统中安装WP-CLI。这里是关于如何安装wp-cli的参考
https://wp-cli.org/
https://www.sitepoint.com/wp-cli/
https://make.wordpress.org/cli/handbook/installing/
成功安装wpcli后使用wp option命令

syntax :- wp option update page_on_front {$page_id} --allow-root
example :- wp option update page_on_front "14" --allow-root

字符串

相关问题