Thank you all.
esmi: The permalinks use the index page template (or if i get around to it, the ‘single’ template. I wanted the links to open in the same view in which the links are.
MichaelH:Thanks for the links.
vtxyzzy: That sounds exactly like how i would want it to work. (although I would like for the left panel links to show up there automatically as i post in that category, rather than having to manually write the links) Do you know of a place where I could see examples of such a code?
I was thinking something like:
In the left field:
<?php
$lastposts = get_posts('numberposts=1&category=15');
foreach($lastposts as $post) {
setup_postdata($post);
the_date(ymd); the_title(); the_meta();
}
?>
And then in the right field:
<?php
$lastposts = get_posts('numberposts=1&category=15');
foreach($lastposts as $post) {
setup_postdata($post);
the_title(); the_date();
the_content();
}
?>
You can see the test code here, but only with one test post, and without linking, because i dont know how to do that:
https://zetterstrand.com/media/