Skips contents of generic rawtext elements.
Description
See also
Parameters
$tag_namestringrequired- The uppercase tag name which will close the RAWTEXT region.
Source
* @return bool Whether the bookmark already existed before removal.
*/
public function release_bookmark( $name ): bool {
if ( ! array_key_exists( $name, $this->bookmarks ) ) {
return false;
}
unset( $this->bookmarks[ $name ] );
Changelog
| Version | Description |
|---|---|
| 6.3.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.