PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.16
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.16
1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.23 All 172 releases
← All changes | templates/loop-posts.php +2 -2 trunk1.2.16 View file →
@@ -11,8 +11,9 @@
11 11 <div class="uwp-profile-item-block">
12 12 <?php
13 13 // The Loop
14 14 if ($the_query && $the_query->have_posts()) {
15 +
15 16 echo '<ul class="uwp-profile-item-ul">';
16 17 while ($the_query->have_posts()) {
17 18 $the_query->the_post();
18 19 uwp_get_template('posts-post.php', $args);
@@ -20,12 +21,11 @@
20 21 echo '</ul>';
21 22
22 23 /* Restore original Post Data */
23 24 wp_reset_postdata();
24 -
25 - do_action('uwp_profile_pagination', $the_query->max_num_pages);
26 25 } else {
27 26 // no posts found
28 27 echo "<p>" . esc_html( sprintf( __( "No %s found.", 'userswp' ), $title ) )."</p>";
29 28 }
29 + do_action('uwp_profile_pagination', $the_query->max_num_pages);
30 30 ?>
31 31 </div>