Thanks a lot for your link.
I use the Montezuma Theme with the newest updates.
I try to correct this, but it doesn´t work.
I add in the single.php "the entry title"
PHP Code:
<h1>
<a href="<?php the_permalink(); ?>" title entry-title ="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php bfa_comments_number(); ?>
</h1>
and in the postformat.php I added the author card:
PHP Code:
<h2>
<span class="post-format"></span>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php bfa_comments_popup_link( '0', '1', '%' ); ?>
<span class="vcard author">
<span class="fn"><?php the_author_posts_link(); ?></span>
</span>
</h2>
and at the last I added the "date updated" in the postformat.php
PHP Code:
<div class="post-bodycopy cf">
<div class="post-date date updated">
<p class="post-month"><?php the_time( 'M' ); ?></p>
<p class="post-day"><?php the_time( 'j' ); ?></p>
<p class="post-year"><?php the_time( 'Y' ); ?></p>
</div>
I´m sorry I´m not an expert in code.
Please help me.