manage_posts_custom_column
Fires in each custom column in the Posts list table.
This hook only fires if the current post type is non-hierarchical, such as posts.
Использование
add_action( 'manage_posts_custom_column', 'wp_kama_manage_posts_custom_column_action', 10, 2 );
/**
* Function for `manage_posts_custom_column` action-hook.
*
* @param string $column_name The name of the column to display.
* @param int $post_id The current post ID.
*
* @return void
*/
function wp_kama_manage_posts_custom_column_action( $column_name, $post_id ){
// action...
}
- $column_name(строка)
- The name of the column to display.
- $post_id(int)
- The current post ID.
Список изменений
| С версии 1.5.0 | Введена. |
Где вызывается хук
manage_posts_custom_column
wp-admin/includes/class-wp-posts-list-table.php 1391
do_action( 'manage_posts_custom_column', $column_name, $post->ID );