Usando the_expert para categorías específicas en WordPress

  • Autor Autor sebasxnco
  • Fecha de inicio Fecha de inicio
nada señores ninguno funciona

de-pronto alguien tiene idea si se puede hacer desde el archivo funtions.php y que en el index ponga algo como el siguiente código

PHP:
<div class="contenido-principal">



<div class="minipost">

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Leer El Resto De: <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
	</h2>
	<span class="custom_image">
	<a href="<?php the_permalink() ?>" rel="bookmark" title="Leer El Resto De: <?php the_title_attribute(); ?>"><img src="<?php echo get_post_meta($post->ID, "Image", true);?>" /></a>	
	</span>

	
	<span class="content1">
<?php if(in_category('Destacados'))  
      the_excerpt(); 
?>
		</span>

</div> 


<div class="post-normal">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Leer El Resto De: <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
	</h2>
    
    <div class="post_date">Autor <strong><?php the_author_posts_link(); ?></strong> | <span class="view"><?php the_views(); ?></span>

	<span class="content2">
    
	<?php the_content('Leer Completo'); ?>
    
    
	</span>
    
    	<div class="allinfos">
	<span class="metas">
	[<a href="<?php the_permalink() ?>" rel="bookmark" title="Leer el resto De <?php the_title(); ?>"> Leer Completo </a>]
	</span>
	<span class="date"><?php the_time('F jS, Y') ?></span> | <span class="comments"><?php comments_popup_link('No Hay Comentarios', '1 Comentario', '% Comentarios'); ?> </span> | <span class="category">Alojado En </span><?php the_category(', ') ?> | <?php edit_post_link('editar', '', ''); ?> 


	</div>

</div> 


</div>
 
Última edición:
Tienes que poner todo el contenedor minipost tal como te dijo el usuario Alan Medina
 
bueno me dieron el siguiente codigo alguien me podria ayudar a integrar a mi sitio

PHP:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); 
in_category('9') { // si el post es de la categoria 9.. ?>
<div class="cat9">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>

<?php } elseif in_category('10') { ?>
<div class="cat10">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>

<?php } else { ?>
<div class="cualquiera">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>
<?php } ?>

<?php endwhile; else: ?>
Lala  
<?php endif; ?>
 
Atrás
Arriba