create_{$taxonomy} WordPress Action Hook

The create_{$taxonomy} hook is called after a new taxonomy is registered. It allows you to perform custom actions when a new taxonomy is registered.

do_action( "create_{$taxonomy}", int $term_id, int $tt_id ) #

Fires after a new term is created for a specific taxonomy.


Description

The dynamic portion of the hook name, $taxonomy, refers to the slug of the taxonomy the term was created for.

Possible hook names include:

  • create_category
  • create_post_tag

Top ↑

Parameters

$term_id

(int)Term ID.

$tt_id

(int)Term taxonomy ID.


Top ↑

Source

File: wp-includes/taxonomy.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More