Changeset 14191
- Timestamp:
- 11/21/2024 10:05:04 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/inc/cli.php
r11679 r14191 19 19 * - Taxonomy terms (categories, colors, orientations) 20 20 * 21 * ## OPTIONS 22 * 23 * [--force] 24 * : Start initialize without prompting for confirmation. 25 * 21 26 * ## EXAMPLES 22 27 * … … 27 32 */ 28 33 public function init( $args, $assoc_args ) { 29 WP_CLI::confirm( 'Continue with site initialization (to include creation of pages, taxonomy terms, and more)?' ); 34 $force = $assoc_args['force'] ?? false; 35 36 if ( ! $force ) { 37 WP_CLI::confirm( 'Continue with site initialization (to include creation of pages, taxonomy terms, and more)?' ); 38 } 30 39 31 40 // Create pages.
Note: See TracChangeset
for help on using the changeset viewer.