PDA

View Full Version : Post in News forum but not on Portal page


theMusicMan
10-10-2004, 06:42 PM
Is there a way via template conditionals that I can create a post in the News category but then for it NOT to appear on the CMPS home page...?

Brian
10-10-2004, 09:06 PM
In your news.php file look for:

$counter++

Right below that add:

if (in_array($news['postid'], array(X,Y,Z)))
{
continue;
}

(Replace X,Y,Z with the postid(s) that you want to exclude.)

Our Sponsors
 

theMusicMan
10-11-2004, 04:10 AM
Thanks Brian.... should the 'continue;' be there?

Brian
10-11-2004, 08:51 AM
Yes... That's telling it that if the postid is in that array to continue to the next one without going any further. ;)

Our Sponsors
 

theMusicMan
10-11-2004, 11:22 AM
Thanks Brian...