Viewing 4 replies - 1 through 4 (of 4 total)
  • Content Selector = .art-content
    Navigation Selector = .art-pager
    Next Selector = .next
    Item Selector = .art-columns

    Find yourself your Item selector with Firebug. Here had i some columns tweak “columns”, dont remember anymore why.

    But if you need to replicate this here is code from home.php:

    ————————————————

    <?php get_header(); ?>
    			<?php get_sidebar('top'); ?>
    			<?php
    			if (have_posts()) {
    				/* Display navigation to next/previous pages when applicable */
    				if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) {
    					theme_page_navigation();
    				}
    				?>
    <?php
    for ($i = 0; $i < $wp_query->post_count; $i++) {
    echo '<div class="art-columns">';
    theme_get_next_post();
    echo '</div>';
    }
    ?>
    				<?php
    				/* Display navigation to next/previous pages when applicable */
    				if (theme_get_option('theme_bottom_posts_navigation')) {
    					theme_page_navigation();
    				}
    			} else {
    				theme_404_content();
    			}
    			?>
    			<?php get_sidebar('bottom'); ?>
    <?php get_footer(); ?>

    Stagger Lee , Thanks , this code is for sidebar top ?

    آچیلان در

    Home.php, blog listing. There is no code, you put classes in plugin settings.

    Ok Stagger Lee , we shold put infinite scroll , Thanks
    Best regards 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Artisteer generated Themes’ is closed to new replies.