Comments
-
site
https://www.tigsteaching.comI am trying to add a comment button to the main page of every post. At the moment you have to click through the perm links to get to the comments
(kinda hidden).Single.php doesn’t help for the front page so no help there.
I’m guessing I need to edit index.php ? But any efforts have failed.
My index is …
<?php get_header(); ?> <div id="main-top"> <h4><?php _e( 'Recent Articles', 'traction' ); ?></h4> <?php get_template_part( 'subscribe' ); ?> </div> <div id="main" class="clear"> <div id="content"> <?php if ( is_front_page() ) { $traction->front_page_posts(); } ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'clear' ); ?>> <div class="date"> <div class="day"><?php the_time(__( 'j' )); ?></div> <div class="month"><?php the_time(__ ( 'M', 'traction' )); ?></div> </div> <?php if ( has_post_thumbnail() ) { ?> <a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_post_thumbnail( 'index-thumb', array( 'class' => 'index-post-thm alignleft border' ) ); ?></a> <?php } ?> <div class="entry <?php if ( !has_post_thumbnail() ) echo 'nothumb'; ?>"> <h2 class="title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php the_content( __( 'Read more', 'traction' ) ); ?> <?php edit_post_link(__( 'Edit', 'traction' )); ?> </div><!--end entry--> </div><!--end post--> <?php endwhile; /* rewind or continue if all posts have been fetched */ ?> <?php if ( is_front_page() ) { wp_reset_query(); } ?> <div class="navigation index"> <?php if (function_exists( 'wp_pagenavi' )) : wp_pagenavi(); ?> <?php else : ?> <div class="alignleft"><?php next_posts_link(__ ( '? Older Entries', 'traction' )); ?></div> <div class="alignright"><?php previous_posts_link(__ ( 'Newer Entries ?', 'traction' )); ?></div> <?php endif; ?> </div><!--end navigation--> <?php else : ?> <?php endif; ?> </div><!--end content--> <?php get_sidebar(); ?> <?php get_footer(); ?>
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Comments’ is closed to new replies.