Title: TTT Loadmore
Author: gabrielperezs
Published: <strong>September 7, 2015</strong>
Last modified: September 14, 2015

---

Search plugins

![](https://ps.w.org/ttt-loadmore/assets/banner-772x250.png?rev=1240547)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/ttt-loadmore/assets/icon-256x256.png?rev=1240547)

# TTT Loadmore

 By [gabrielperezs](https://profiles.wordpress.org/gabrielperezs/)

[Download](https://downloads.wordpress.org/plugin/ttt-loadmore.1.1.1.zip)

 * [Details](https://pcd.wordpress.org/plugins/ttt-loadmore/#description)
 * [Reviews](https://pcd.wordpress.org/plugins/ttt-loadmore/#reviews)
 *  [Installation](https://pcd.wordpress.org/plugins/ttt-loadmore/#installation)
 * [Development](https://pcd.wordpress.org/plugins/ttt-loadmore/#developers)

 [Support](https://wordpress.org/support/plugin/ttt-loadmore/)

## 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:_

    ```
    <a href="#" data-tttloadmore-do="archiveposts" data-tttloadmore-to="#main" data-tttloadmore-args="category:php;">
        Load more content
    </a>
    ```

 * 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_

    ```
    <?php
    function loadmore_archiveposts( $page, $args = false ){

        $archiveposts = array(
            'post_type' => 'post',
            'post_status' => 'publish',
            'order' => 'DESC',
            'orderby' => 'date',
            'paged' => $page,
            'ignore_sticky_posts' => 1,
            'category_name' => $args['category'],
        );
        $archiveposts_query = new WP_Query($archiveposts);
        ?>

        <?php if ($archiveposts_query->have_posts()) : ?>
            <?php while ($archiveposts_query->have_posts()) : $archiveposts_query->the_post(); ?>
                    <?php get_template_part( 'partials/content', 'content' ); ?>
            <?php wp_reset_postdata();?>
            <?php endwhile; ?>
        <?php endif;?>

        <?
    }
    add_action('ttt_loadmore_archiveposts','loadmore_archiveposts', 1, 2);
    ?>
    ```

## Installation

This section describes how to install the plugin and get it working.

 1. Upload `ttt-loadmore` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“TTT Loadmore” is open source software. The following people have contributed to
this plugin.

Contributors

 *   [ gabrielperezs ](https://profiles.wordpress.org/gabrielperezs/)
 *   [ 33themes ](https://profiles.wordpress.org/33themes/)
 *   [ Pancho Perez ](https://profiles.wordpress.org/lonchbox/)
 *   [ Thomas Grünvogel ](https://profiles.wordpress.org/tomasog/)
 *   [ Carlos ](https://profiles.wordpress.org/11bits/)

[Translate “TTT Loadmore” into your language.](https://translate.wordpress.org/projects/wp-plugins/ttt-loadmore)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/ttt-loadmore/), check
out the [SVN repository](https://plugins.svn.wordpress.org/ttt-loadmore/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/ttt-loadmore/) by
[RSS](https://plugins.trac.wordpress.org/log/ttt-loadmore/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

### 1.1

Remove assets from the main file

### 1.0

First version

## Meta

 *  Version **1.1.1**
 *  Last updated **11 years ago**
 *  Active installations **10+**
 *  WordPress version ** 3.7 or higher **
 *  Tested up to **4.3.34**
 *  Language
 * [English (US)](https://wordpress.org/plugins/ttt-loadmore/)
 * Tags
 * [loadmore](https://pcd.wordpress.org/plugins/tags/loadmore/)[pagination](https://pcd.wordpress.org/plugins/tags/pagination/)
   [posts pagination](https://pcd.wordpress.org/plugins/tags/posts-pagination/)
 *  [Advanced View](https://pcd.wordpress.org/plugins/ttt-loadmore/advanced/)

## Ratings

No reviews have been submitted yet.

[Add my review](https://wordpress.org/support/plugin/ttt-loadmore/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/ttt-loadmore/reviews/)

## Contributors

 *   [ gabrielperezs ](https://profiles.wordpress.org/gabrielperezs/)
 *   [ 33themes ](https://profiles.wordpress.org/33themes/)
 *   [ Pancho Perez ](https://profiles.wordpress.org/lonchbox/)
 *   [ Thomas Grünvogel ](https://profiles.wordpress.org/tomasog/)
 *   [ Carlos ](https://profiles.wordpress.org/11bits/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/ttt-loadmore/)