📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 03:43:56
📂
/ (Root)
/
home
/
xeqi7597
/
public_html
/
wp-content
/
plugins
/
advanced-custom-fields
/
src
/
CLI
📍 /home/xeqi7597/public_html/wp-content/plugins/advanced-custom-fields/src/CLI
🔄 Refresh
✏️
Editing: CLI.php
Writable
<?php /** * @package ACF * @author WP Engine * * © 2026 Advanced Custom Fields (ACF®). All rights reserved. * "ACF" is a trademark of WP Engine. * Licensed under the GNU General Public License v2 or later. * https://www.gnu.org/licenses/gpl-2.0.html */ namespace ACF\CLI; // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Bootstrapper for ACF WP-CLI commands. */ class CLI { /** * Registers all free ACF WP-CLI commands. * * @since 6.8 */ public function __construct() { \WP_CLI::add_command( 'acf json', JsonCommand::class ); } }
💾 Save Changes
❌ Cancel