I am not migrating, I just have a file show.php with this code:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(__(‘read the rest of this article »’)); ?>
And for headlines.php I just want to show the titles:
<?php if (have_posts() && in_category(’15’)) : while (have_posts()) : the_post(); ?>
” ><?php the_title(); ?>
This code works, but when I switch to permalinks, it doesn’t anymore.
Any idea how I can make this work?