wordpresscommand-line-interfacewp-cli

Change the homepage in WordPress with CLI


How to change the homepage in WordPress via CLI.

e.g I have one page called "Home1" and I want to make that page the homepage. In other words, I want to change the "Static Page" via CLI.


Solution

  • #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