It's not a stupid question... makes perfect sense!
Try this:
link(__($post['Category']['title'], true),
array('controller' => 'posts', 'action' => 'category',
$post['Category']['id'])); ?>
The only difference from your method is that $post['Category']['id']
isn't getting appended directly to th
Aww sorry, I found the answer. I should write my links with an array:
link(__($post['Category']['title'], true),
array('controller'=> 'posts', 'action'=>'category/'.$post['Category']
['id'])); ?>
thanks for your tolerance of my stupid questions!
Take care,
Neil
On Feb 1, 11:54 am, Neil <[EMAIL