Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/03/2015, 12:18
Avatar de chacabuco
chacabuco
 
Fecha de Ingreso: octubre-2010
Ubicación: Buenso Aires
Mensajes: 85
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: Parse error: syntax error, unexpected $end

Hola Arturo, gracias por responderme.
Yo no se de PHP pero entiendo que en este pedazo de código está la llave que correspode.
Copio mas abajo el código completo para ver si ustedes que saben me pueden decir donde tengo que agregarla.
Desde ya muchas gracias!!

<?php

/**

* @package aThemes

*/

?>



<article id="post-<?php the_ID(); ?>" <?php post_class( 'clearfix' ); ?>>

<header class="entry-header">

<h1 class="entry-title"><?php the_title(); ?></h1>



<div class="entry-meta">

<?php athemes_posted_on(); ?>



<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>

<span class="comments-link"> <?php comments_popup_link( __( 'Escribe un comentario', 'athemes' ), __( '1 Comment', 'athemes' ), __( '% Comments', 'athemes' ) ); ?></span>

<?php endif; ?>

<!-- .entry-meta --></div>

<!-- .entry-header --></header>



<div class="clearfix entry-content">

<?php the_content(); ?>

<?php

wp_link_pages( array(

'before' => '<div class="page-links">' . __( 'Pages:', 'athemes' ),

'after' => '</div>',)

);

?>

<!-- .entry-content --></div>



<footer class="entry-meta entry-footer">

<?php

/* translators: used between list items, there is a space after the comma */

$category_list = get_the_category_list( __( ', ', 'athemes' ) );



/* translators: used between list items, there is a space after the comma */

$tag_list = get_the_tag_list( '', __( ', ', 'athemes' ) );



if ( ! athemes_categorized_blog() ) {

// This blog only has 1 category so we just need to worry about tags in the meta text

if ( '' != $tag_list ) {

$meta_text = __( '<span class="tags-links"><i class="ico-tags"></i> %2$s</span>', 'athemes' );

}



} else {

// But this blog has loads of categories so we should probably display them here

if ( '' != $tag_list ) {

$meta_text = __( '<span class="cat-links"><i class="ico-folder"></i> %1$s</span><span class="tags-links"><i class="ico-tags"></i> %2$s</span>', 'athemes' );

}