Plantilla diferente WordPress

¿Cómo usar una plantilla diferente?

Plantillas diferentes Categorias WordPress

En ocasiones o bastante frecuente, necesitamos que el contenido de cada categoría se muestre de forma diferente. A continuación les explicaremos como hacerlo de una manera rápida y sencilla

Abrir archivo single.php
Abrimos el archivo single.php que encontrará en su plantilla y colocamos lo siguiente:

<?php
$post = $wp_query->post;
   if (in_category('Nombre-categoria-1'))
      include(TEMPLATEPATH.'/single_nombre_1.php');
   else if (in_category('Nombre-categoria-2'))
      include(TEMPLATEPATH.'/single_nombre_2.php');
   else if (in_category('Nombre-categoria-3'))
      include(TEMPLATEPATH.'/single_nombre_3.php');
   else
      include(TEMPLATEPATH.'/single-default.php');
?>

Creamos los siguiente archivos en la carpeta de nuestro theme, [single_nombre_1.php, single_nombre_2.php, single_nombre_3 y single-default.php].

Podrás crear tantos archivos por cuantos diseños diferentes quieras por categorías. El single-default.php lo usamos para los post sin categorías asignadas.

Listo!, ya solo tenemos que aplicar CSS y código html según nos convenga a cada categoría de nuestros post, si tienen alguna duda contacta directamente conmigo.

Si quereis tener más información sobre nosotros estas son nuestras redes sociales:

Facebook Vintiset

Instagram Vintiset

Twitter Vintiset

Pinterest Vintiset

Muchas gracias por dedicar tiempo en nosotros.

0 0 votes
Article Rating
Subscribe
Notificar de
guest
0 Comments
Inline Feedbacks
View all comments

Diseño web

Marketing online

0
Would love your thoughts, please comment.x