WP_Taxonomy::remove_hooks() – Removes the ajax callback for the meta box.

You appear to be a bot. Output may be restricted

Description

Removes the ajax callback for the meta box.

Usage

WP_Taxonomy::remove_hooks();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/class-wp-taxonomy.php
Lines:

1 to 3 of 3
  public function remove_hooks() {
    remove_filter( 'wp_ajax_add-' . $this->name, '_wp_ajax_add_hierarchical_term' );
  }
 

 View on GitHub View on Trac