Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-multilingual
/
classes
/
CLI
:
Hooks.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WCML\CLI; class Hooks implements \IWPML_CLI_Action { public function add_hooks() { add_action( 'shutdown', [ $this, 'preventWcWizardRedirection' ] ); } public function preventWcWizardRedirection() { delete_transient( '_wc_activation_redirect' ); } }