Hi
thanks for the link, I have used the template at the end of that link.
I am trying to edit the following
<?php
// page id 12 will get category ID 12 posts, page 16 will get category 32 posts, page 28 will get category 17 posts
if (is_page('12') ) {
$cat = array(our-videos);
} elseif ( is_page('16') ) {
$cat = array(32);
} elseif ( is_page('28') ) {
$cat = array(17);
} else {
$cat = '';
}
to match my page and category IDs, I have been able to change the page IDs to the correct ones, but on looking I do not seem to have any category IDs.
I am using the rakalap theme by the way