Automattic\WooCommerce\Blocks\Patterns
AIPatterns::schedule_on_option_update()
Update the patterns content when the store description is changed.
Метод класса: AIPatterns{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$AIPatterns = new AIPatterns(); $AIPatterns->schedule_on_option_update( $option, $value );
- $option(строка) (обязательный)
- The option name.
- $value(строка) (обязательный)
- The option value.
Код AIPatterns::schedule_on_option_update() AIPatterns::schedule on option update WC 9.3.3
public function schedule_on_option_update( $option, $value ) { $last_business_description = get_option( 'last_business_description_with_ai_content_generated' ); if ( $last_business_description === $value ) { return; } $this->schedule_patterns_content_update( $value ); }