Programación y sistemas

WordPress 3.x para desarrolladores: Temas y plantillas, category.php, author.php, archive.php y 404.php

Estas son las últimas plantillas que crearemos para nuestro tema.   CATEGORY.PHP Creamos el archivo category.php y añadimos el siguiente código: [codesyntax lang=»php»] <?php /** * The template for displaying Category Archive pages. * * @package WordPress * @subpackage New_Theme */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?>

Leer más