]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link-manager.php
Wordpress 4.5.3-scripts
[autoinstalls/wordpress.git] / wp-admin / link-manager.php
index 8e12aa3d34686ba3291f9ddb651e9a7d5c9ef364..4dc3015179ac788d8a8589061829cadad30eda6f 100644 (file)
@@ -57,10 +57,14 @@ get_current_screen()->add_help_tab( array(
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
-       '<p>' . __('<a href="http://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
+       '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
+get_current_screen()->set_screen_reader_content( array(
+       'heading_list' => __( 'Links list' ),
+) );
+
 include_once( ABSPATH . 'wp-admin/admin-header.php' );
 
 if ( ! current_user_can('manage_links') )
 include_once( ABSPATH . 'wp-admin/admin-header.php' );
 
 if ( ! current_user_can('manage_links') )
@@ -69,14 +73,17 @@ if ( ! current_user_can('manage_links') )
 ?>
 
 <div class="wrap nosubsub">
 ?>
 
 <div class="wrap nosubsub">
-<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
-if ( !empty($_REQUEST['s']) )
-       printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( wp_unslash($_REQUEST['s']) ) ); ?>
-</h2>
+<h1><?php echo esc_html( $title ); ?> <a href="link-add.php" class="page-title-action"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
+if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
+       /* translators: %s: search keywords */
+       printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
+}
+?>
+</h1>
 
 <?php
 if ( isset($_REQUEST['deleted']) ) {
 
 <?php
 if ( isset($_REQUEST['deleted']) ) {
-       echo '<div id="message" class="updated"><p>';
+       echo '<div id="message" class="updated notice is-dismissible"><p>';
        $deleted = (int) $_REQUEST['deleted'];
        printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
        echo '</p></div>';
        $deleted = (int) $_REQUEST['deleted'];
        printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
        echo '</p></div>';
@@ -84,7 +91,7 @@ if ( isset($_REQUEST['deleted']) ) {
 }
 ?>
 
 }
 ?>
 
-<form id="posts-filter" action="" method="get">
+<form id="posts-filter" method="get">
 
 <?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
 
 
 <?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>