Required_Page::clear_option_on_delete( $post_id )

Summary

No summary available.

Parameters

$post_id

(Required)


Return

(void)


Source

File: src/BigCommerce/Pages/Required_Page.php

	public function clear_option_on_delete( $post_id ) {
		$existing = $this->get_post_id();
		if ( $existing === (int) $post_id ) {
			delete_option( static::NAME );
		}
	}

User Contributed Notes

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