aarron81
Forum Replies Created
-
Thank you for the response. I fixed the problem by starting from scratch, I think there were issues between the updated version of the template and the child template.
Forum: Fixing WordPress
In reply to: Colums and custom post type helpThanks for the reply alchymyt
I beleive those conditionals are used to show the posts in order, from left to right, but could be wrong as most of this is over my head;
Post 1 : Post 2
Post 3 : Post 4
Post 5 : Post 6http://perishablepress.com/two-column-horizontal-sequence-wordpress-post-order/
I did manage to work out the first problem by adding
'posts_per_page' => -1However, I have stumbled accross another problem, I am wanting the posts to show in alphabetical order and have added:
'order' => 'ASC' , 'orderby' => 'title'The problem now is that it is showing the first half in order and then starting again half way through. Hope that makes sense 🙂
Forum: Fixing WordPress
In reply to: Help with codeThanks for the respose alchymyth
The site is on my local machine, so cannot post a link.
I have been playing around and comparing the archive to the default archive file and was missing out the following:
<?php the_post(); ?> <div id="post-<?php the_ID() ?>" class="post"> <h1 class="post-title"><?php the_title() ?></h1>By adding that in, all works correctly.