12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- Template Name: 哔哩哔哩追剧模板
- */
- get_header();
- ?>
- <meta name="referrer" content="same-origin">
- <style>
- .site-content{max-width:1280px}
- .comments{display: none}
- </style>
- </head>
- <?php while(have_posts()) : the_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 the_content( '', true ); ?>
- <section class="bangumi">
- <?php if (iro_opt('bilibili_id') ):?>
- <div class="row">
- <?php
- $bgm = new \Sakura\API\Bilibili();
- echo $bgm->get_bfv_items();
- ?>
- <?php else: ?>
- <div class="row">
- <p> <?php _e("Please fill in the Bilibili UID in Sakura Options.","sakurairo"); ?></p>
- </div>
- <?php endif; ?>
- </section>
- </article>
- <?php endwhile; ?>
- <?php
- get_footer();
|