do_action( “after-{$taxonomy}-table”, string $taxonomy )

In this article

Fires after the taxonomy list table.

Description

The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.

Possible hook names include:

  • after-category-table
  • after-post_tag-table

Parameters

$taxonomystring
The taxonomy name.

Source

do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.