Automattic\WooCommerce\Internal\ProductAttributesLookup
CLIRunner::resume_regeneration()
Resume the background regeneration of the product attributes lookup table after it has been aborted.
Метод класса: CLIRunner{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$CLIRunner = new CLIRunner(); $CLIRunner->resume_regeneration( $args, $assoc_args );
- $args(массив)
- Positional arguments passed to the command.
По умолчанию: array() - $assoc_args(массив)
- Associative arguments (options) passed to the command.
По умолчанию: array()
Код CLIRunner::resume_regeneration() CLIRunner::resume regeneration WC 9.7.1
public function resume_regeneration( array $args = array(), array $assoc_args = array() ) { return $this->invoke( 'resume_regeneration_core', $args, $assoc_args ); }