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: <ul> <li>manage_post_posts_custom_column</li> <li>manage_page_posts_custom_column</li> </ul>
1502*1503* @since 3.1.01504*1505* @param string$column_name The name of the column to display.1506* @param int$post_id The current post ID.1507*/1508do_action("manage_{$post->post_type}_posts_custom_column",$column_name,$post->ID);1509}15101511/**1512* @globalWP_Post$postGlobal post object.1513*1514* @param int|WP_Post$post
History
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.