2015-02-04 20:31:39 +02:00
|
|
|
<?php while ($ultimatemember->shortcodes->loop->have_posts()) { $ultimatemember->shortcodes->loop->the_post(); $post_id = get_the_ID(); ?>
|
2015-02-01 01:30:04 +02:00
|
|
|
|
|
|
|
|
<div class="um-item">
|
|
|
|
|
<div class="um-item-link"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
|
|
|
|
|
<div class="um-item-meta">
|
|
|
|
|
<span><?php echo sprintf(__('%s ago','ultimatemember'), human_time_diff( get_the_time('U'), current_time('timestamp') ) ); ?></span>
|
|
|
|
|
<span>in: <?php the_category( ', ' ); ?></span>
|
|
|
|
|
<span><?php comments_number( __('no comments','ultimatemember'), __('1 comment','ultimatemember'), __('% comments','ultimatemember') ); ?></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
2015-02-04 20:31:39 +02:00
|
|
|
<?php if ( isset($ultimatemember->shortcodes->modified_args) && $ultimatemember->shortcodes->loop->have_posts() && $ultimatemember->shortcodes->loop->found_posts >= 10 ) { ?>
|
2015-02-01 01:30:04 +02:00
|
|
|
|
|
|
|
|
<div class="um-load-items">
|
2015-02-04 20:31:39 +02:00
|
|
|
<a href="#" class="um-ajax-paginate um-button" data-hook="um_load_posts" data-args="<?php echo $ultimatemember->shortcodes->modified_args; ?>"><?php _e('load more posts','ultimatemember'); ?></a>
|
2015-02-01 01:30:04 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php } ?>
|