Title: WP_HTML_Token::__destruct
Published: November 8, 2023
Last modified: February 24, 2026

---

# WP_HTML_Token::__destruct()

## In this article

 * [Source](https://developer.wordpress.org/reference/classes/wp_html_token/__destruct/?output_format=md#source)
 * [Changelog](https://developer.wordpress.org/reference/classes/wp_html_token/__destruct/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wp_html_token/__destruct/?output_format=md#wp--skip-link--target)

Destructor.

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wp_html_token/__destruct/?output_format=md#source)󠁿

    ```php
    public function __destruct() {
    	if ( is_callable( $this->on_destroy ) ) {
    		call_user_func( $this->on_destroy, $this->bookmark_name );
    	}
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/html-api/class-wp-html-token.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-includes/html-api/class-wp-html-token.php#L112)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-includes/html-api/class-wp-html-token.php#L112-L116)

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wp_html_token/__destruct/?output_format=md#changelog)󠁿

| Version | Description | 
| [6.4.0](https://developer.wordpress.org/reference/since/6.4.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwp_html_token%2F__destruct%2F)
before being able to contribute a note or feedback.