WP_Customize_Selective_Refresh::remove_partial() – Removes a partial.

You appear to be a bot. Output may be restricted

Description

Removes a partial.

Usage

WP_Customize_Selective_Refresh::remove_partial( $id );

Parameters

$id
( string ) required – Customize Partial ID.

Returns

void

Source

File name: wordpress/wp-includes/customize/class-wp-customize-selective-refresh.php
Lines:

1 to 3 of 3
  public function remove_partial( $id ) {
    unset( $this->WP_Customize_Selective_Refresh::partials[ $id ] );
  }
 

 View on GitHub View on Trac