{{ name }} Package Index
53 | {% if description %} 54 |{{ description }}
55 | {% endif %} 56 | 57 |WP-CLI packages are community-maintained commands you can install with wp package install
(doc).
There are a few advantages to distributing custom commands as packages, instead of bundling them in plugins: 60 |
-
61 |
- Available on all WordPress installs, as opposed to just where the plugin is activated. 62 |
- Can run early, before WordPress is loaded. 63 |
- Better visibility, by being listed in this package index. 64 |
See the commands cookbook for learning how to write your own command. For a non-exhaustive list of commands available in plugins, please see the tools page.
68 | 69 |Publish your own package by submitting it to the package index.
70 | 71 |72 | 73 |
74 | Filter by package name: 75 | 76 |
77 | 78 | {% for name, package in packages %} 79 |{{ package.highest.name }}
80 | {% if package.highest.description %} 81 |{{ package.highest.description }}
82 | {% endif %} 83 |Homepage | 87 |{{ package.highest.homepage }} | 88 |
---|---|
License | 93 |{{ package.highest.license|join(', ') }} | 94 |
Authors | 99 |100 | {% for author in package.highest.authors %} 101 | {%- if author.homepage -%} 102 | {{ author.name }} 103 | {%- else -%} 104 | {{ author.name }} 105 | {%- endif -%} 106 | {%- if not loop.last -%}, {% endif -%} 107 | {% endfor %} 108 | | 109 |
Releases | 113 |114 | {% for version in package.versions %} 115 | {%- if version.distType -%} 116 | {{ version.prettyVersion }} 117 | {%- else -%} 118 | {{ version.prettyVersion }} 119 | {%- endif -%} 120 | {%- if not loop.last -%}, {% endif -%} 121 | {% endfor %} 122 | | 123 |
Required by | 129 |
130 |
|
136 |