123456789101112131415161718192021222324252627282930 |
- <?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 echo esc_html(get_the_title()); ?></span>
- <?php endif; ?>
- <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 endif; ?>
- <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();
- ?>
|