Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the descriptions of the --skip-plugins and --skip-themes flags #4759

Merged
merged 1 commit into from Apr 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions php/config-spec.php
Expand Up @@ -37,16 +37,16 @@
),

'skip-plugins' => array(
'runtime' => '[=<plugin>]',
'runtime' => '[=<plugins>]',
'file' => '<list>',
'desc' => 'Skip loading all or some plugins. Note: mu-plugins are still loaded.',
'desc' => 'Skip loading all plugins, or a comma-separated list of plugins. Note: mu-plugins are still loaded.',
'default' => '',
),

'skip-themes' => array(
'runtime' => '[=<theme>]',
'runtime' => '[=<themes>]',
'file' => '<list>',
'desc' => 'Skip loading all or some themes.',
'desc' => 'Skip loading all themes, or a comma-separated list of themes.',
'default' => '',
),

Expand Down