Jump to content
Sign in to follow this  
derek

iBlogPro 3

Recommended Posts

derek

Hey Andrew, Is there a way to have the comments expanded / shown by default on the main page of the blog i.e., the one with all the entries that fit on one page, not just a single blog entry? Appreciate it. Derek Cooper Photography www.derekcooper.com V 1-888-767-9106 Blog www.derekcooper.com/blog

Share this post


Link to post
Share on other sites
Andrew
Is there a way to have the comments expanded / shown by default on the main page of the blog i.e., the one with all the entries that fit on one page, not just a single blog entry?
I would look for a plugin that does this. I don't think this something that WP was built to do easily (I could be wrong) If you want to try something you could edit the '_posts.php' file and change this section:
	<?php if(is_single()):?>
	  <?php include(LIB.'/_commentsform.php');?>
	<?php endif; endwhile; ?>
	
to this:
	<?php if(is_single() || is_home()):?>
	  <?php include(LIB.'/_commentsform.php');?>
	<?php endif; endwhile; ?>
	

Its untested but it could work :)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×