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

---

Cerca extensions

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

Aquesta extensió **no s’ha provat en les darreres 3 versions majors del WordPress**.
Segurament no està mantinguda o suportada, i pot tenir problemes de compatibilitat
quan s’usa en versions recents del WordPress.

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

# TTT Loadmore

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

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

 * [Detalls](https://ca.wordpress.org/plugins/ttt-loadmore/#description)
 * [Ressenyes](https://ca.wordpress.org/plugins/ttt-loadmore/#reviews)
 *  [Instal·lació](https://ca.wordpress.org/plugins/ttt-loadmore/#installation)
 * [Desenvolupament](https://ca.wordpress.org/plugins/ttt-loadmore/#developers)

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

## Descripció

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);
    ?>
    ```

## Instal·lació

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

## Ressenyes

No hi ha ressenyes per a aquesta extensió.

## Col·laboradors i desenvolupadors

«TTT Loadmore» és programari de codi obert. La següent gent ha col·laborat en aquesta
extensió.

Col·laboradors

 *   [ 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/)

[Traduïu «TTT Loadmore» a la vostra llengua.](https://translate.wordpress.org/projects/wp-plugins/ttt-loadmore)

### Interessats en el desenvolupament?

[Navegueu pel codi](https://plugins.trac.wordpress.org/browser/ttt-loadmore/), baixeu-
vos el [repositori SVN](https://plugins.svn.wordpress.org/ttt-loadmore/), o subscriviu-
vos al [registre de desenvolupament](https://plugins.trac.wordpress.org/log/ttt-loadmore/)
per [fisl de subscripció RSS](https://plugins.trac.wordpress.org/log/ttt-loadmore/?limit=100&mode=stop_on_copy&format=rss).

## Registre de canvis

### 1.1

Remove assets from the main file

### 1.0

First version

## Meta

 *  Versió **1.1.1**
 *  Darrera actualització **fa 11 anys**
 *  Instal·lacions actives **10+**
 *  Versió del WordPress ** 3.7 o posterior **
 *  Provada fins a **4.3.34**
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/ttt-loadmore/)
 * Etiquetes
 * [loadmore](https://ca.wordpress.org/plugins/tags/loadmore/)[pagination](https://ca.wordpress.org/plugins/tags/pagination/)
   [posts pagination](https://ca.wordpress.org/plugins/tags/posts-pagination/)
 *  [Vista avançada](https://ca.wordpress.org/plugins/ttt-loadmore/advanced/)

## Valoracions

Encara no s'ha enviat cap ressenya.

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

[Visualitzeu totes les ressenyes](https://wordpress.org/support/plugin/ttt-loadmore/reviews/)

## Col·laboradors

 *   [ 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/)

## Suport

Teniu quelcom a dir? Necessiteu ajuda?

 [Visualitza els fòrums de suport](https://wordpress.org/support/plugin/ttt-loadmore/)