• Hola, alguien sabe como puedo solucionar Error: Missing required field “updated” que aparece en WebMaster Tools, utilizo el tema TWENTY TEN y en functions.php tengo el siguiente codigo:

    function twentyten_posted_on() {
    	printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
    		'meta-prep meta-prep-author',
    		sprintf( '<span class="entry-date">%1$s</span>',
    			get_the_date()
    		),
    		sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    			get_author_posts_url( get_the_author_meta( 'ID' ) ),
    			sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
    			get_the_author()
    		)
    	);
    }
    endif;

    Gracias!!

  • El debate ‘Error: Missing required field “updated” WebMaster Tools Twenty Ten’ está cerrado a nuevas respuestas.