WC_Webhook::set_topic( string $topic )

Set the webhook topic and associated hooks.


Description Description

The topic resource & event are also saved separately.


Parameters Parameters

$topic

(Required) Webhook topic.


Top ↑

Source Source

File: includes/class-wc-webhook.php

	public function set_topic( $topic ) {
		$topic = wc_clean( $topic );

		if ( ! wc_is_webhook_valid_topic( $topic ) ) {
			$topic = '';
		}

		$this->set_prop( 'topic', $topic );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.