1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- Template Name: 友情链接模版
- */
- get_header();
- ?>
- <?php while(have_posts()) : the_post(); ?>
- <?php $post = get_post(); ?>
- <?php if(!iro_opt('patternimg') || !get_post_thumbnail_id(get_the_ID())) { ?>
- <span class="linkss-title"><?php the_title();?></span>
- <?php } ?>
- <article <?php post_class("post-item"); ?>>
- <?php if (iro_opt('article_auto_toc', 'true') && check_title_tags($post->post_content)) { //加载目录?>
- <div class="has-toc have-toc"></div>
- <?php } ?>
- <div class="entry-content">
- <?php the_content( '', true ); ?>
- </div>
- <div class="links">
- <?php echo get_link_items(); ?>
- </div>
- </article>
- <?php get_template_part('layouts/sidebox'); //加载目录容器?>
- <?php endwhile; ?>
- <?php
- get_footer();
|