我对管理区域中的post entry/edit屏幕上可能出现的一些消息感到困惑:
$messages[\'post\'] = array(
0 => \'\', // Unused. Messages start at index 1.
1 => __( \'Post updated.\' ) . $view_post_link_html,
2 => __( \'Custom field updated.\' ),
3 => __( \'Custom field deleted.\' ),
4 => __( \'Post updated.\' ),
/* translators: %s: date and time of the revision */
5 => isset($_GET[\'revision\']) ? sprintf( __( \'Post restored to revision from %s.\' ), wp_post_revision_title( (int) $_GET[\'revision\'], false ) ) : false,
6 => __( \'Post published.\' ) . $view_post_link_html,
7 => __( \'Post saved.\' ),
8 => __( \'Post submitted.\' ) . $preview_post_link_html,
9 => sprintf( __( \'Post scheduled for: %s.\' ), \'<strong>\' . $scheduled_date . \'</strong>\' ) . $scheduled_post_link_html,
10 => __( \'Post draft updated.\' ) . $preview_post_link_html,
);
例如,指数1和4之间的区别是什么?什么时候一个打电话给另一个?此外,指数7、8和10之间的区别是什么?如果您保存尚未发布的帖子的草稿(这将触发#6),它们听起来会出现
我还没有找到任何类型的指南,其中的消息发生在什么时候。
谢谢你对这个问题的解释!