how exaclty would i implement that into the following code?
`<?php
$page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(“cat=-3,-4&paged=$page&posts_per_page=5”); ?>`
at the moment i discarded the headline and another category completely (-3,-4). How would i have to change this if i wanted to still discard category 3 and show the 4th category with an offset of 1 ?
from what i understand from your link, it would use the offset for every single category, while i only want it for a specific one (the 4th category).