Ahora he conseguido meter la categoría entre la fecha y el nº de comentarios pero me aparecen en 3 líneas.
Código PHP:
Ver original<div class="entry-meta">
<span class="posted-on"><?php _e( 'Posted on', 'graphy' ); ?>
<?php printf( '<a href="%1$s" rel="bookmark"><time class="entry-date published" datetime="%2$s">%3$s</time></a>', esc_url( get_permalink() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
); ?><?php the_category( $separator, $parents, $post_id ); ?>
</span>
<?php if ( ! get_theme_mod( 'graphy_hide_author' ) ) : ?>
<span class="byline"><?php _e( 'by', 'graphy' ); ?>
<span class="author vcard">
<?php printf( '<a class="url fn n" href="%1$s">%2$s</a>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
esc_html( get_the_author() )
); ?>
</span>
</span>
<?php endif; ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link">· <?php comments_popup_link( __( 'Leave a comment', 'graphy' ), __( '1 Comment', 'graphy' ), __( '% Comments', 'graphy' ) ); ?></span>
<?php endif; ?>
</div><!-- .entry-meta -->
La línea de código de la categoría es -> <?php the_category( $separator, $parents, $post_id ); ?>
Pero no se donde colocarla para que me salgan las tres opciones (fecha · categoría · nº de comentarios) en una misma línea.
Gracias