File: /www/wwwroot/www.018111.cn/wp-content/plugins/wp-user-manager/templates/directory/top-bar.php
<?php
/**
* The Template for displaying the directory top bar.
*
* This template can be overridden by copying it to yourtheme/wpum/directory/top-bar.php
*
* HOWEVER, on occasion WPUM will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @version 1.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div id="wpum-directory-top-bar">
<div class="wpum-row">
<div class="wpum-col-xs">
<?php
// translators: %s count of users
echo sprintf( esc_html__( 'Found %s users.', 'wp-user-manager' ), absint( $data->total ) );
?>
</div>
<?php if ( $data->has_sort_by ) : ?>
<div class="wpum-col-xs">
<p>
<?php esc_html_e( 'Sort by:', 'wp-user-manager' ); ?>
<?php
$sortby = filter_input( INPUT_GET, 'sortby' );
echo ( WPUM()->elements->select( array( // phpcs:ignore
'name' => 'sortby',
'id' => 'wpum-sortby',
'selected' => $sortby ? esc_attr( $sortby ) : esc_attr( $data->sort_by_default ),
'show_option_all' => false,
'show_option_none' => false,
'options' => wpum_get_directory_sort_by_methods(), // phpcs:ignore
) ) );
?>
</p>
</div>
<?php endif; ?>
<?php if ( $data->has_amount_modifier ) : ?>
<div class="wpum-col-xs">
<p>
<?php esc_html_e( 'Results per page:', 'wp-user-manager' ); ?>
<?php
$amount = filter_input( INPUT_GET, 'amount', FILTER_VALIDATE_INT );
$amount = $amount ? esc_attr( absint( $amount ) ) : false;
echo WPUM()->elements->select( array( // phpcs:ignore
'name' => 'amount',
'id' => 'wpum-amount',
'selected' => $amount, // phpcs:ignore
'show_option_all' => false,
'show_option_none' => false,
'options' => wpum_get_directory_amount_modifier(), // phpcs:ignore
) );
?>
</p>
</div>
<?php endif; ?>
</div>
</div>