Skip to content

Instantly share code, notes, and snippets.

@lmorillas
Last active February 15, 2022 05:44
Show Gist options
  • Save lmorillas/2defa55d40bc836b07b03634a9a0f087 to your computer and use it in GitHub Desktop.
Save lmorillas/2defa55d40bc836b07b03634a9a0f087 to your computer and use it in GitHub Desktop.
Usando wp cli commands para recuperar sitio

Uso de WP-CLI commnads

https://developer.wordpress.org/cli/commands/menu/

root@wp:/var/www/html# wp menu list --allow-root
+---------+----------------+----------------+-----------+-------+
| term_id | name           | slug           | locations | count |
+---------+----------------+----------------+-----------+-------+
| 2       | Menu principal | menu-principal | avia      | 29    |
+---------+----------------+----------------+-----------+-------+
root@wp:/var/www/html# wp menu item list menu-principal --allow-root --format=yaml
---
- 
  db_id: 586
  type: custom
  title: Nuestro Centro
  link: ""
  position: 1
- 
  db_id: 51
  type: post_type
  title: Inicio
  link: http://www.cpilosenlaces.com/
  position: 2
- 
  db_id: 642
  type: post_type
  title: Qué hacemos
  link: http://www.cpilosenlaces.com/nuestro-centro/que-hacemos/
  position: 3
- 
  db_id: 588
  type: post_type
  title: Estructura organizativa
  link: http://www.cpilosenlaces.com/nuestro-centro/estructura-organizativa/
  position: 4
- 
  db_id: 678
  type: post_type
  title: Departamentos Estratégicos
  link: http://www.cpilosenlaces.com/nuestro-centro/departamentos-estrategicos/
  position: 5
- 
  db_id: 595
  type: post_type
  title: Normas de convivencia
  link: http://www.cpilosenlaces.com/nuestro-centro/normas-de-convivencia/
  position: 6
- 
  db_id: 443
  type: custom
  title: Secretaría
  link: ""
  position: 7
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment