tpl_default.php 768 B

12345678910111213141516171819202122232425
  1. <!-- tpl_deault.php -->
  2. <?php get_template_part('content', 'single');?>
  3. <?php /*$image = post_image_($post->ID,'medium'); */
  4. $post_images = post_images($post->ID);
  5. $imageurl = get_the_post_thumbnail_url($post->ID);
  6. ?>
  7. <article id="post-<?php the_ID();?>">
  8. <div class="image">
  9. <?php post_badge();?>
  10. <a href="<?php the_permalink()?>" title="<?php the_title_attribute();?>"><img src="<?php echo $imageurl ? $imageurl : $post_images[0]['large'][0]; ?>" alt="<?php the_title_attribute();?>"></a>
  11. <h2><a href="<?php the_permalink()?>" rel="bookmark" title="Permanent link til <?php the_title_attribute();?>"><?php the_title();?></a></h2>
  12. </div>
  13. <div class="content">
  14. <?php echo (is_single() . "LL"); ?>
  15. xxx<?php the_content();?>xxx
  16. </div>
  17. </article>