You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
541 B

<?php
/**
Template Name: links
*/
get_header();
?>
<?php while(have_posts()) : the_post(); ?>
<?php if(akina_option('patternimg') || !get_post_thumbnail_id(get_the_ID())) { ?>
<span class="linkss-title"><?php the_title();?></span>
<?php } ?>
<article <?php post_class("post-item"); ?>>
<?php the_content(); ?>
<div class="links">
<?php echo get_link_items(); ?>
</div>
</article>
<div class="have-toc"></div><div class="toc-container"><div class="toc"></div></div>
<?php endwhile; ?>
<?php
get_footer();