File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ source /FULL/PATH/TO/wp-completion.bash
104104
105105` source ~/.bash_profile ` を実行するのを忘れないでください。
106106
107- ZSH の場合は、` bashcompinit ` ロードしてから ` wp-completion.bash ` を読み込ませる必要があるかもしれません。` .zshrc ` へ次のコードを追加してください。
107+ ZSH の場合は、` bashcompinit ` を読み込ませたあとに ` wp-completion.bash ` を読み込ませる必要があるかもしれません。` .zshrc ` へ次のコードを追加してください。
108108
109109``` bash
110110autoload bashcompinit
@@ -159,13 +159,13 @@ WP-CLI では、様々な実行可能なクラス、関数、クロージャを
159159 * Success: Deleted 'my_option' option.
160160 */
161161$delete_option_cmd = function( $args ) {
162- list( $key ) = $args;
162+ list( $key ) = $args;
163163
164- if ( ! delete_option( $key ) ) {
165- WP_CLI::error( "Could not delete '$key' option. Does it exist?" );
166- } else {
167- WP_CLI::success( "Deleted '$key' option." );
168- }
164+ if ( ! delete_option( $key ) ) {
165+ WP_CLI::error( "Could not delete '$key' option. Does it exist?" );
166+ } else {
167+ WP_CLI::success( "Deleted '$key' option." );
168+ }
169169};
170170WP_CLI::add_command( 'option delete', $delete_option_cmd );
171171```
@@ -186,7 +186,7 @@ WP-CLI は、多くのコマンドにより構成されており、カスタム
186186
187187WP-CLI には2人のメンテナーがいます: [ danielbachhuber] ( https://github.com/danielbachhuber ) と [ schlessera] ( http://github.com/schlessera ) です。
188188
189- 能力があり、プロジェクトを発展させるために、時間をかけて投資していることを示してくれたコントリビューターへ[ コミット権限を与えることがあります] ( https://github.com/orgs/wp-cli/teams/committers ) 。
189+ 能力があり、プロジェクトを発展させるために、時間をかけて投資していることを示してくれたコントリビューターへ、 [ コミット権限を与えることがあります] ( https://github.com/orgs/wp-cli/teams/committers ) 。
190190
191191プロジェクトの[ ガバナンス] ( https://wp-cli.org/docs/governance/ ) と[ 完全な貢献者リスト] ( https://github.com/wp-cli/wp-cli/contributors ) も読んでください。
192192
You can’t perform that action at this time.
0 commit comments