i need to set a form to put special content to display just for the post that are in a specific category. My not finish idea is:
<? if (have_posts()) : while (have_posts()) : the_post(); ?> <?php if ( is_category( 'profesores' ) ) { ?> Show the special information just for post in the category. <? } else { ?> Show the other posts normal information. <? } ?> <? endwhile; endif;?>
<? if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
if ( is_category( 'profesores' ) ) { ?>
Show the special information just for post in the category.
<? } else { ?>
Show the other posts normal information.
<? }
?>
<? endwhile; endif;?>