hi :)
I'm setting up a portfolio site for a friend of mine at the moment. The idea is to show her artwork - making the layout and updatability as simple easy as possible.
Everything is going fine - but the "more" link will not show up...? I've researched the documentation, tried searching the forums.... seems like it's only me... :"(
I've edited templates for each section of her portfolio - setting a query to retrieve just 1 categories' posts only - added to the template before the loop:
<div id="content_artwork" class="narrowcolumn">
<strong><?php query_posts('cat=4'); ?></strong>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
.....etc.....
I am now wondering if this is what prevents the more link from showing up on the page? - Do I need to add anything to make sure to keep the 'read more' feature active?
or did I simply make some other mistakes somewhere I am not even thinking of....?
any help would be greatly appreciated :)
the link to my troubled page: http://magsbrolly.co.uk/wp/?page_id=4
the first 2 posts should have the 'more' link showing after the text - hiding the thumbnail images (which I'd like to show on the single post page only).