Hola,
Muchas gracias por la ayuda.
La verdad es que pensé que sería sencillo, pensé que no era mucho lo que pedía, pero… creo que me he equivocado 🙁
Mira, he modificado el archivo «single.php»:
El principio:
<?php
/**
* The Template for displaying all single posts.
*
* @package Cryout Creations
* @subpackage mantra
* @since mantra 0.5
*/
get_header(); ?>
<section id=»container»>
<div id=»content» role=»main»>
<?php cryout_before_content_hook(); ?>
La parte que he añadido que aparece bien pero sale en la entrada, en vez de salir en el lateral izquierdo:
<p>
<?php echo get_post_meta($post->ID, «cartel», true); ?>
</p>
<h2>Título original:</h2>
<p>
<?php echo get_post_meta($post->ID, «titulo_original», true); ?>
</p>
<h2>Dirección:</h2>
<p>
<?php echo get_post_meta($post->ID, «direccion», true); ?>
</p>
<h2>Año:</h2>
<p>
<?php echo get_post_meta($post->ID, «ano», true); ?>
</p>
<h2>Duración:</h2>
<p>
<?php echo get_post_meta($post->ID, «duracion», true); ?>
</p>
</br>
El resto:
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id=»post-<?php the_ID(); ?>» <?php post_class(); ?>>
<h1 class=»entry-title»><?php the_title(); ?></h1>
<?php cryout_post_title_hook(); ?>
<div class=»entry-meta»>
<?php mantra_posted_on(); cryout_post_meta_hook(); ?>
</div><!– .entry-meta –>
<div class=»entry-content»>
<?php the_content(); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=»page-link»><span>’ . __( ‘Pages:’, ‘mantra’ ), ‘after’ => ‘</span></div>’ ) ); ?>
</div><!– .entry-content –>
<?php if ( get_the_author_meta( ‘description’ ) ) : // If a user has filled out their description, show a bio on their entries ?>
<div id=»entry-author-info»>
<div id=»author-avatar»>
<?php echo get_avatar( get_the_author_meta( ‘user_email’ ), apply_filters( ‘mantra_author_bio_avatar_size’, 60 ) ); ?>
</div><!– #author-avatar –>
<div id=»author-description»>
<h2><?php printf( esc_attr__( ‘About %s’, ‘mantra’ ), get_the_author() ); ?></h2>
<?php the_author_meta( ‘description’ ); ?>
<div id=»author-link»>
«>
<?php printf( __( ‘View all posts by ‘,’mantra’).’%s <span class=»meta-nav»>→</span>’, get_the_author() ); ?>
</div><!– #author-link –>
</div><!– #author-description –>
</div><!– #entry-author-info –>
<?php endif; ?>
<div class=»entry-utility»>
<?php mantra_posted_in(); ?>
<?php edit_post_link( __( ‘Edit’, ‘mantra’ ), ‘<span class=»edit-link»>’, ‘</span>’ ); cryout_post_footer_hook(); ?>
</div><!– .entry-utility –>
</div><!– #post-## –>
<?php comments_template( », true ); ?>
<?php endwhile; // end of the loop. ?>
Esta parte la he añadido a continuación, para que supuestamente me aparezca la información en el sidebar, pero me sale abajo del todo y encima pegado a la izquierda (esto quizá se solucionaría modificando el CSS):
<?php cryout_after_content_hook(); ?>
</div><!– #content –>
<?php get_sidebar(); ?>
</section><!– #container –>
<h2>Título original:</h2>
<p>
<?php echo get_post_meta($post->ID, «titulo_original», true); ?>
</p>
Y el final:
<?php get_footer(); ?>
Usa la dirección:
http://primeratoma.byethost3.com/parker-critica/
que de momento es sólo donde hay datos.
Muchas gracias, de nuevo.
Un saludo.