src/wp-admin/edit.php 1 location
|
@@ 315-318 (lines=4) @@
|
| 312 |
|
echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="page-title-action">' . esc_html( $post_type_object->labels->add_new ) . '</a>'; |
| 313 |
|
} |
| 314 |
|
|
| 315 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 316 |
|
/* translators: %s: search keywords */ |
| 317 |
|
printf( ' <span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query() ); |
| 318 |
|
} |
| 319 |
|
?> |
| 320 |
|
|
| 321 |
|
<hr class="wp-header-end"> |
src/wp-admin/link-manager.php 1 location
|
@@ 89-92 (lines=4) @@
|
| 86 |
|
<a href="link-add.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'link' ); ?></a> |
| 87 |
|
|
| 88 |
|
<?php |
| 89 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 90 |
|
/* translators: %s: search keywords */ |
| 91 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) ); |
| 92 |
|
} |
| 93 |
|
?> |
| 94 |
|
|
| 95 |
|
<hr class="wp-header-end"> |
src/wp-admin/network/sites.php 1 location
|
@@ 297-300 (lines=4) @@
|
| 294 |
|
<?php endif; ?> |
| 295 |
|
|
| 296 |
|
<?php |
| 297 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 298 |
|
/* translators: %s: search keywords */ |
| 299 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); |
| 300 |
|
} |
| 301 |
|
?> |
| 302 |
|
|
| 303 |
|
<hr class="wp-header-end"> |
src/wp-admin/network/themes.php 1 location
|
@@ 257-260 (lines=4) @@
|
| 254 |
|
<?php endif; ?> |
| 255 |
|
|
| 256 |
|
<?php |
| 257 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 258 |
|
/* translators: %s: search keywords */ |
| 259 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); |
| 260 |
|
} |
| 261 |
|
?> |
| 262 |
|
|
| 263 |
|
<hr class="wp-header-end"> |
src/wp-admin/upload.php 1 location
|
@@ 233-236 (lines=4) @@
|
| 230 |
|
<a href="<?php echo admin_url( 'media-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'file' ); ?></a><?php |
| 231 |
|
} |
| 232 |
|
|
| 233 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 234 |
|
/* translators: %s: search keywords */ |
| 235 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query() ); |
| 236 |
|
} |
| 237 |
|
?> |
| 238 |
|
|
| 239 |
|
<hr class="wp-header-end"> |
src/wp-admin/edit-tags.php 1 location
|
@@ 298-301 (lines=4) @@
|
| 295 |
|
<h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1> |
| 296 |
|
|
| 297 |
|
<?php |
| 298 |
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 299 |
|
/* translators: %s: search keywords */ |
| 300 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) ); |
| 301 |
|
} |
| 302 |
|
?> |
| 303 |
|
|
| 304 |
|
<hr class="wp-header-end"> |