WP_List_Table::__unset() – Make private properties un-settable for backward compatibility.

You appear to be a bot. Output may be restricted

Description

Makes private properties un-settable for backward compatibility.

Usage

WP_List_Table::__unset( $name );

Parameters

$name
( string ) required – Property to unset.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-list-table.php
Lines:

1 to 5 of 5
  public function __unset( $name ) {
    if ( in_array( $name, $this->compat_fields, true ) ) {
      unset( $this->$name );
    }
  }
 

 View on GitHub View on Trac