Thread Starter
vrm
(@vrm)
I read the instructions when after-asleep. Carefully followed the steps (http://en.support.wordpress.com/pages/front-page/) and new home is live and posting page is hidden,
Thread Starter
vrm
(@vrm)
Afters hours of trial and error, the solution was one those “DUH”.
I selected the wrong “output” code for the templates-funtions-post.php. Should have chosen $output .= ' <a href="'. get_permalink()
."\">$more_link_text</a>";
Thread Starter
vrm
(@vrm)
Code from index.php:
<div class="entry">
<?php if($single) { ?>
<?php the_content('Read the rest of this entry »'); ?>
<?php } else { ?>
<?php the_excerpt(); ?>
<a href="<?php the_permalink() ?>">read more...</a>
<?php } ?>
</div>
Thread Starter
vrm
(@vrm)
Never mind, I figured it out. By just removing the reference to “if home page”, the complete sidebar appears on all pages.
VRM