page-links.php 550 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. Template Name: 友情链接模版
  4. */
  5. get_header();
  6. ?>
  7. <?php while(have_posts()) : the_post(); ?>
  8. <?php if(!iro_opt('patternimg') || !get_post_thumbnail_id(get_the_ID())) { ?>
  9. <span class="linkss-title"><?php the_title();?></span>
  10. <?php } ?>
  11. <article <?php post_class("post-item"); ?>>
  12. <?php the_content(); ?>
  13. <div class="links">
  14. <?php echo get_link_items(); ?>
  15. </div>
  16. </article>
  17. <div class="have-toc"></div><div class="toc-container"><div class="toc"></div></div>
  18. <?php endwhile; ?>
  19. <?php
  20. get_footer();