I'm trying to edit the loop so if its on category ID 60 it displays "Photos" instead of Blog.. how do I do this?
I'm trying to edit the loop so if its on category ID 60 it displays "Photos" instead of Blog.. how do I do this?
try:
<h1 class="page-title"><?php if( in_category(60) ) { echo 'photos; } else { echo 'blog'; } ?></h1>
You must log in to post.