Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php if ($meta_values = get_post_meta($post->ID, aside, $single)) { ?>
<?php echo "Hejsan" ?>
<?php } else { ?>
<div class="entry-meta"><?php
          $postlink_values = get_post_custom_values('postlink');
          foreach ( $postlink_values as $key => $value ) {
            echo "<span class=\"entry-date\"><abbr><a href=\"$value\" title=\"Länken tillhörande inlägget\">Klicka här</a></abbr></span><span class=\"meta-sep\"> | </span>"; 
          }
        ?><span class="author vcard"><?php $author = get_the_author(); ?><?php _e('By ', 'thematic') ?><span class="fn n"><?php _e("$author") ?></span></span>
<span class="meta-sep">|</span>
<span class="entry-date">Publicerat <abbr class="published"><?php the_time('j F Y') ?></abbr></span>
<?php if (current_user_can('edit_posts')) {
    echo ' <span class="meta-sep meta-sep-edit">|</span> ' . $posteditlink;
} ?>
</div><!-- .entry-meta -->
<?php } endif ?>