[Plugin: Infinite-Scrolling] How to configure it?
-
Hello world of navigators, I need your help.
I tried to install the plugin Infinite-Scroll, but I can not figure out how to configure it, these are the required settings:Content Selector
Navigation Selector
Next Selector
item SelectorAnd this is the HTML code of my Homepage:
<?php /* Template Name: Home */ ?> <?php wp_enqueue_script("jquery"); ?> <?php get_header(); ?> <script type="text/javascript" src="<?php bloginfo("template_url"); ?>/js/scrollbar_style.js"></script> <div id="content_home"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php if(function_exists('post_class')) : post_class(); else : echo 'class="post"'; endif; ?>> <h3 class="post-title"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> </h3> <?php the_content(__('› Continue reading')); ?> <?php the_tags('<p class="tags">Tags: ', ', ', '</p>'); ?> <?php edit_post_link('[edit post]', '<p>', '</p>'); ?> <div class="meta"> <span class="meta-date"><?php the_time('l, F jS, Y'); ?></span> <span class="meta-categories"><?php the_category(', '); ?></span> <span class="meta-comments"><?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments')); ?></span> </div> <div class="clear"></div> </div> <?php endwhile; ?> <div class="box-left navigation"> <?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?> </div> <?php else : ?> <div class="box-left" id="searchform"> <h3>Not found!</h3> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> </div> <?php endif; ?> </div><!-- end content-left --> </div> <?php get_footer(); ?>
How should I configure the plugin?
I await your response, thank you all!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: Infinite-Scrolling] How to configure it?’ is closed to new replies.