WordPress 3.x para desarrolladores: Temas y plantillas, content-image.php, content-link.php, content-quote.php y content-status.php
CONTENT-IMAGE.PHP Creamos el archivo content-image.php y añadimos el siguiente código: [codesyntax lang=»php»] <?php /** * The template for displaying posts in the Image Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage New_Theme */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>> <header class="entry-header">
WordPress 3.x para desarrolladores: Temas y plantillas, single.php y comments.php
Vamos con dos plantillas más, esta vez las que generan la página del post (single.php) y la de los comentarios (comment.php). SINGLE.PHP Creamos el archivo single.php y añadimos el siguiente código: [codesyntax lang=»php»] <?php get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <nav id="nav-single"> <h3 class="assistive-text"><?php _e(