Second half of new welcome panel formatting. Add .icon16, for menu icon reuse. see #11651.

git-svn-id: https://develop.svn.wordpress.org/trunk@19163 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith
2011-11-05 01:17:50 +00:00
parent bf02e004e0
commit 986602c14c
6 changed files with 77 additions and 28 deletions
+14 -20
View File
@@ -1288,9 +1288,14 @@ function wp_welcome_panel() {
<div class="welcome-panel-content">
<h3><?php _e( 'Welcome to WordPress!' ); ?></h3>
<p><?php _e( 'Welcome to your new WordPress site! Here are some things most people do when they set up a new WordPress site. To get started, use the links below and we&#8217;ll give you some extra help with these tasks.' ); ?></p>
<p class="about-description"><?php _e( 'Welcome to your new site! Here are some things most people do when they set up a new WordPress site. To get started, use the links below and we&#8217;ll give you some extra help with these tasks:' ); ?></p>
<div class="welcome-panel-column">
<h4>
<span class="icon16 icon-settings"></span>
<?php _e( 'Customize your site' ); ?>
</h4>
<p><?php echo ( 'Holy pancakes, filler content! You should customize your site settings!' ); ?></p>
<ul>
<li>
<?php echo sprintf(
@@ -1306,17 +1311,7 @@ function wp_welcome_panel() {
</li>
<li>
<?php echo sprintf(
__( '<a href="%s">Set your time zone</a>.' ),
esc_url( admin_url('options-general.php') )
); ?>
</li>
</ul>
</div>
<div class="welcome-panel-column">
<ul>
<li>
<?php echo sprintf(
__( '<a href="%s">Edit your site tagline</a>.' ),
__( '<a href="%s">Set your time zone and site tagline</a>.' ),
esc_url( admin_url('options-general.php') )
); ?>
</li>
@@ -1326,19 +1321,18 @@ function wp_welcome_panel() {
esc_url( admin_url('themes.php') )
); ?>
</li>
<li>
<?php echo sprintf(
__( '<a href="%s">Add some widgets</a>.' ),
esc_url( admin_url('widgets.php') )
); ?>
</li>
</ul>
</div>
<div class="welcome-panel-column">
<h4>
<span class="icon16 icon-page"></span>
<?php _e( 'Create some content' ); ?>
</h4>
<p><?php echo ( 'What is a WordPress site without a voice? Publishing brings joy to the web.' ); ?></p>
<ul>
<li>
<?php echo sprintf(
__( 'Delete the default <a href="%1$s">post</a> and <a href="%2$s">comment</a>.' ),
__( 'Delete the <a href="%1$s">sample post</a> and <a href="%2$s">page</a>.' ),
esc_url( admin_url('edit.php') ),
esc_url( admin_url('edit-comments.php') )
); ?>
@@ -1351,7 +1345,7 @@ function wp_welcome_panel() {
</li>
<li>
<?php echo sprintf(
__( '<a href="%s">Edit the sample page</a> to be about you.' ),
__( '<a href="%s">Create an about page</a>.' ),
esc_url( admin_url('edit.php?post_type=page') )
); ?>
</li>