src/wp-admin/network/users.php 1 location
|
@@ 225-228 (lines=4) @@
|
| 222 |
|
<a href="<?php echo network_admin_url('user-new.php'); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php |
| 223 |
|
endif; |
| 224 |
|
|
| 225 |
|
if ( strlen( $usersearch ) ) { |
| 226 |
|
/* translators: %s: search keywords */ |
| 227 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) ); |
| 228 |
|
} |
| 229 |
|
?> |
| 230 |
|
|
| 231 |
|
<hr class="wp-header-end"> |
src/wp-admin/plugins.php 1 location
|
@@ 512-515 (lines=4) @@
|
| 509 |
|
<?php |
| 510 |
|
} |
| 511 |
|
|
| 512 |
|
if ( strlen( $s ) ) { |
| 513 |
|
/* translators: %s: search keywords */ |
| 514 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( urldecode( $s ) ) ); |
| 515 |
|
} |
| 516 |
|
?> |
| 517 |
|
|
| 518 |
|
<hr class="wp-header-end"> |
src/wp-admin/users.php 1 location
|
@@ 498-501 (lines=4) @@
|
| 495 |
|
<a href="<?php echo admin_url( 'user-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a> |
| 496 |
|
<?php } |
| 497 |
|
|
| 498 |
|
if ( strlen( $usersearch ) ) { |
| 499 |
|
/* translators: %s: search keywords */ |
| 500 |
|
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) ); |
| 501 |
|
} |
| 502 |
|
?> |
| 503 |
|
|
| 504 |
|
<hr class="wp-header-end"> |