Forum Replies Created

Viewing 10 replies - 16 through 25 (of 25 total)
  • Спасибо за замечательный плагин!
    Оригинальный скрипт поддерживает проигрывание плейлиста. Как это сделать в этом плагине?

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    Personally, I have pagination does not work – all the time only shows the first 20 positions. Index.php code is:

    <?php get_header(); ?>
        <div class="tiled-posts-div">
            <?php query_posts("cat=&paged=$paged"); if (have_posts()) :  ?>
                <?php if ( function_exists ( 'the_loop_wp_tiles' ) ) : the_loop_wp_tiles(); endif; ?>
            <?php else : ?>
            <?php endif; ?>
        </div>
    <?php get_footer(); ?>

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    Generally, of course, the plugin is great. Based on it, you can create a variety of themes, templates. Thank you!
    Sorry for my bad English.

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    Randomly change templates – is that possible?

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    If I may ask, why not use the_loop_wp_tiles()?

    Because the documentation on the use of plug-in is not provided with examples and detailed description of options. Thanks for the tip, now I will change the code templates.

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    The correct code:

    <?php $page_num = get_query_var('paged'); ?>
            <?php if ($page_num == 0) : ?>
                <?php
                    $numposts = 20;
                    $query = 'numberposts='. $numposts;
                    if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query));
                    wp_reset_query();
                ?>
            <?php else : ?>
                <?php
                    $numposts = 20;
                    $offset_plus = $page_num-1;
                    $offset = $offset_plus*$numposts;
                    $query = 'offset=' . $offset;
                    if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query));
                    wp_reset_query();
                ?>
            <?php endif; ?>

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    My pagination idea:

    <?php
                $page_num = get_query_var('paged');
                $numposts = 20;
                $offset_plus = $page_num-1;
                $offset = $offset_plus*$numposts;
                $query = 'offset=' . $offset;
                if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query));
            ?>

    Forum: Plugins
    In reply to: [WP Tiles] Pagination
    tiaurus

    (@tiaurus)

    Page navigation – the only thing that’s missing this plugin.

    I confirm. Once I acquire to add to Favorites, the current page is displayed within itself. It turns out porridge takes. Also download the picture gif disappears not be displayed at all times.

    I use in js.php in line 166:

    <?php if ( (int) $hide_threads ) : ?>
    			  <?php if ( is_single() ) : ?>
    			    showComments();
    			  <?php else : ?>
    				hideComments();
    			  <?php endif; ?>
    			<?php endif; ?>

Viewing 10 replies - 16 through 25 (of 25 total)