do_action( "manage_{$post->post_type}_posts_custom_column", string $column_name , int $post_id )
Fires for each custom column of a specific post type in the Posts list table.
Description
The dynamic portion of the hook name, $post->post_type
, refers to the post type.
Possible hook names include:
manage_post_posts_custom_column
manage_page_posts_custom_column
Parameters
- $column_name
-
The name of the column to display.
- $post_id
-
The current post ID.
Source
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |