Thread Starter
zaans2
(@zaans2)
Its a local server, so no remote acces. I have the following to get the titles in the specific category:
<ul>
<?php query_posts(array('cat' => 27, 'posts_per_page' => -1)); ?>
<?php while (have_posts()) : the_post(); ?>
<li ><?php the_title(); ?></li>
<?php endwhile; // end of the loop. ?>
</ul>
Now i want to split this list into 2 columns
Thread Starter
zaans2
(@zaans2)
The posts are in the same category. Im very comfortable with modyfying PHP and CSS. No child theme. and I just want the titles of the posts in 2 columns
Thread Starter
zaans2
(@zaans2)
I have a custom template file, but have no idea hot to ‘split’ the list in 2 with PHP and CSS (fairly new to wordpress)
Thread Starter
zaans2
(@zaans2)
Completely missed it when reading, Thanks!