manage_posts_custom_column

动作钩子
do_action( 'manage_posts_custom_column', $column_name, $post->ID )
参数
  • (string) $column_name The name of the column to display.
    Required:
  • (int) $post_id The current post ID.
    Required:
定义位置
相关勾子
manage_sites_custom_columnmanage_users_custom_columnmanage_pages_custom_columnmanage_themes_custom_columnmanage_comments_custom_column
相关方法
get_post_custom_valuesget_post_customget_post_custom_keys_update_post_term_countpost_customupdate_posts_count
引入
1.5.0
弃用
-

manage_posts_custom_column 是WordPress的一个动作钩子,用于在WordPress管理中的”Post”屏幕的列表视图中显示自定义列的内容。列表视图中的每一行都会调用这个钩子,并定义当前列的内容。这个钩子与”manage_posts_columns”过滤钩子一起使用,后者用于在”Post”屏幕的列表视图中添加自定义列。

在文章列表表中的每个自定义列中触发。

这个钩子只在当前的文章类型是非层次性的,比如说文章,才会启动。

do_action( 'manage_posts_custom_column', $column_name, $post->ID );

常见问题

FAQs
查看更多 >