add_meta_boxes_{$post_type}

动作钩子
do_action( "add_meta_boxes_{$post_type}", $post )

add_meta_boxes_{$post_type}: 这个钩子是add_meta_boxes的一个变种,专门针对一个特定的文章类型。应将$post_type占位符替换为你想添加自定义元框的文章类型的名称。

在所有内置的元数据框被添加后,在给定的文章类型的背景下启动。

钩子名称的动态部分,$post_type,指的是文章的类型。

可能的钩子名称包括:

  • add_meta_boxes_post
  • add_meta_boxes_page
  • add_meta_boxes_attachment
do_action( "add_meta_boxes_{$post_type}", $post );

常见问题

FAQs
查看更多 >