You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Getting lists of content types is very easy through Terminus. Here are two examples of Terminus / WP CLI commands.

Getting a list of published pages on a WordPress site

  1. cd into the Terminus folder on your machine (if not installed globally)
  2. type: 

    terminus remote:wp cornell-alumni.live -- post list --post_type=page --format=csv --post_status=publish --fields=post_title,post_status,url > alumni-live-pages-{date}.csv

     

  3. Enter your Pantheon password
  4. A CSV file will be created in the Terminus folder showing a list of published pages, listing the title of the page (post), its status and URL

 

Note that the terminus command line already has the wp prefix. The double dash (–) shows the end of the Terminus command and the beginning of the WP CLI command. We don't need to repeat the wp in the command.

 

The same command for our giving live site is:

terminus remote:wp cornell-giving.live -- post list --post_type=page --format=csv --post_status=publish --fields=post_title,post_status,url > giving-live-pages-{date}.csv

  • No labels