edit_post_{$post->post_type}

动作钩子
do_action( "edit_post_{$post->post_type}", $post_id, $post )

edit_post_{$post->post_type}。这个动作用于在编辑一个特定类型的文章时触发一个特定的动作。该动作名称是动态的,包括作为变量的文章类型名称。

这个动作在wp-includes/post.php中有记录。

do_action( "edit_post_{$post->post_type}", $post_id, $post );

常见问题

FAQs
查看更多 >