Arkadaşlar çözümü buldum
kaynak fakat benim temadaki kodlar biraz karışık wordpress'ten anlayan biri rica etsem düzenlermi.
Entry title sorunu için <!--
The Post Title
~~~ -->
<?php
if (!hmt4_get_option('hmt_hide_post_titles')) {
if (!hmt4_get_option('hmt_assign_h2_post_titles')){ ?>
<h1 class="h1-underline"><?php the_title(); ?></h1>
<?php
} else {
?>
<h2 class="h2-simulate-h1-size-underline"><?php the_title(); ?></h2>
<?php
}
}
?>
yerine
<h1 class="entry-title" /><?php_title(); ?></h1>
Updated hatası için, <?php echo get_the_date();?> <?php _e('at','hmth'); ?> <?php the_time(); /* changed date and time format so that default system date and time is used instead of preset date and time */ ?>
yerine
<span class="updated" style="display:none"><?php the_time('j F Y ') ?><span> Vcard hatası için, <?php if (!$leave_out_details) { ?><?php _e('Kim Hazırladı : ','hmth'); ?>
<?php echo get_the_author(); ?>
<?php /* the_author_posts_link(); */ /*uncomment this if you actually want a link to the authors posts - it reveals the authors username though - or am I being too security concious? */?>
olması gereken,
<span class="author vcard"><span class="fn"><?php the_author(); ?></span></span>