Maintenance 20/1003761d since update
Active installs
10
Downloads
1,311
Reviews
0
Age
10.3y
Tagspaginationloadmoreposts paginationvertical paginationcore pagination
Plugin info
Total downloads: 1,311
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 5
Last updated: 9/14/2015 (3761 days ago)
Added to WordPress: 9/7/2015 (10 years old)
Minimum WordPress version: 3.7
Tested up to WordPress version: 4.3.34
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 3761 days ago
20/100
Is TTT Loadmore abandoned?
Possibly abandoned (last update 3761 days ago).
Compatibility
Requires WordPress: 3.7
Tested up to: 4.3.34
Requires PHP: f
Languages
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
No similar plugins found yet.
Description
WordPress plugin to load more event with your own template.
For code contributions please go to https://github.com/33themes/ttt-loadmore
How to use it
This is the base html:
Load more content
- data-tttloadmore-do* is the action to load more content
- data-tttloadmore-to* is where the script put the content after load more posts (the result of the “do” action)
- data-tttloadmore-args* contain all the arguments you want to send to the “do” action
Then, you have to create an action with the same name of the data-tttloadmore-do
'post',
'post_status' => 'publish',
'order' => 'DESC',
'orderby' => 'date',
'paged' => $page,
'ignore_sticky_posts' => 1,
'category_name' => $args['category'],
);
$archiveposts_query = new WP_Query($archiveposts);
?>
have_posts()) : ?>
have_posts()) : $archiveposts_query->the_post(); ?>
}
add_action('ttt_loadmore_archiveposts','loadmore_archiveposts', 1, 2);
?>
Installation
This section describes how to install the plugin and get it working.
- Upload
ttt-loadmorefolder to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Frequently Asked Questions
No FAQ available
Review feed
No reviews available
Screenshots
No screenshots available
Changelog
1.1
Remove assets from the main file
1.0
First version