diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css index 19c6bf2266..0fcc52e78c 100644 --- a/src/wp-admin/css/dashboard.css +++ b/src/wp-admin/css/dashboard.css @@ -245,6 +245,11 @@ top: -1px; } +.welcome-panel .welcome-setup-home:before { + content: "\f102"; + top: -1px; +} + .welcome-panel .welcome-view-site:before { content: "\f115"; top: -2px; diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index 73181282e4..e8a0004617 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/wp-admin/includes/dashboard.php @@ -1766,6 +1766,7 @@ function wp_welcome_panel() {
  • ' . __( 'Write your first blog post' ) . '', admin_url( 'post-new.php' ) ); ?>
  • ' . __( 'Add an About page' ) . '', admin_url( 'post-new.php?post_type=page' ) ); ?>
  • +
  • ' . __( 'Set up your homepage' ) . '', current_user_can( 'customize' ) ? add_query_arg( 'autofocus[section]', 'static_front_page', admin_url( 'customize.php' ) ) : admin_url( 'options-reading.php' ) ); ?>
  • ' . __( 'View your site' ) . '', home_url( '/' ) ); ?>