diff --git wp-admin/css/dashboard.css wp-admin/css/dashboard.css
index dc81048..db90362 100755
|
|
|
|
| 265 | 265 | top: -1px; |
| 266 | 266 | } |
| 267 | 267 | |
| | 268 | /* Since 5.3. Under More Actions on Dashboard welcome panel */ |
| | 269 | .welcome-panel .welcome-settings:before { |
| | 270 | content: "\f108"; |
| | 271 | top: -1px; |
| | 272 | } |
| | 273 | |
| 268 | 274 | .welcome-panel .welcome-learn-more:before { |
| 269 | 275 | content: "\f118"; |
| 270 | 276 | top: -1px; |
diff --git wp-admin/includes/dashboard.php wp-admin/includes/dashboard.php
index ad02909..320196d 100755
|
|
|
function wp_welcome_panel() { |
| 1732 | 1732 | <?php endif; ?> |
| 1733 | 1733 | <?php if ( current_user_can( 'manage_options' ) ) : ?> |
| 1734 | 1734 | <li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> |
| | 1735 | <!-- Since 5.3 --> |
| | 1736 | <li><?php printf( '<a href="%s" class="welcome-icon welcome-settings">' . __( 'Review your settings' ) . '</a>', admin_url( 'options-general.php' ) ); ?></li> |
| 1735 | 1737 | <?php endif; ?> |
| 1736 | 1738 | <li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li> |
| 1737 | 1739 | </ul> |