w3tc_db_delete

w3tc_db_delete

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: w3-total-cache.2.8.9

do_action('w3tc_db_delete') is found 2 times:

  • /DbCache_WpdbLegacy.php line 291
    	 *
    	 * @return mixed The result of the delete operation.
    	 */
    	public function delete( $table, $where, $where_format = null ) {
    		do_action( 'w3tc_db_delete', $table, $where, $where_format );
    		return $this->active_processor->delete( $table, $where, $where_format );
    	}
    
    	/**
    	 * Initializes the character set for the database.
    	 *
    
  • /DbCache_WpdbNew.php line 283
    	 *
    	 * @return mixed The result of the delete operation.
    	 */
    	public function delete( $table, $where, $where_format = null ) {
    		do_action( 'w3tc_db_delete', $table, $where, $where_format );
    		return $this->active_processor->delete( $table, $where, $where_format );
    	}
    
    	/**
    	 * Initializes the character set for the database.
    	 *