📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 10:26:05
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
templates
/
directory
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/templates/directory
🔄 Refresh
✏️
Editing: top-bar.php
Writable
<?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 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 echo WPUM()->elements->select( [ 'name' => 'sortby', 'id' => 'wpum-sortby', 'selected' => isset( $_GET['sortby'] ) ? esc_attr( $_GET['sortby'] ) : $data->sort_by_default, 'show_option_all' => false, 'show_option_none' => false, 'options' => wpum_get_directory_sort_by_methods(), ] ); ?> </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 echo WPUM()->elements->select( [ 'name' => 'amount', 'id' => 'wpum-amount', 'selected' => isset( $_GET['amount'] ) ? absint( $_GET['amount'] ): false, 'show_option_all' => false, 'show_option_none' => false, 'options' => wpum_get_directory_amount_modifier() ] ); ?> </p> </div> <?php endif; ?> </div> </div>
💾 Save Changes
❌ Cancel