Hooks.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\CLI; |
| 4 | |
| 5 | class Hooks implements \IWPML_CLI_Action { |
| 6 | |
| 7 | public function add_hooks() { |
| 8 | add_action( 'shutdown', [ $this, 'preventWcWizardRedirection' ] ); |
| 9 | } |
| 10 | |
| 11 | public function preventWcWizardRedirection() { |
| 12 | delete_transient( '_wc_activation_redirect' ); |
| 13 | } |
| 14 | } |
| 15 |