HEX
Server: nginx/1.22.1
System: Linux VM-4-16-centos 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User: www (1001)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /www/wwwroot/wen.haoynn.cn/wp-content/themes/ripro/tag.php
<?php
get_header();
$tagName = single_tag_title('',false);
$tagObject = get_term_by('name',$tagName,'post_tag');
$tagID = $tagObject->term_id;

$the_style = get_term_meta($tagID, 'the_style', 'true');
$last_style = ($the_style) ? $the_style : _cao( 'latest_layout', 'grid' ) ;
/////////////
$is_cao_site_list_blog = is_cao_site_list_blog();
if ($is_cao_site_list_blog) {
  $col_class = 'content-column col-lg-9';
  $latest_layout = 'bloglist';
}else{
  $col_class = 'col-lg-12';
  $latest_layout = $last_style;
}
/////////////
?>
<div class="container">
  <?php if (!get_term_meta($tagID, 'is_filter', 'true')) {
    get_template_part( 'parts/filter-bar' );
  } ?>
  <div class="row">
    <div class="<?php echo $col_class;?>">
      <div class="content-area">
        <main class="site-main">
          <?php if ( have_posts() ) : ?>
            <div class="row posts-wrapper">
              <?php while ( have_posts() ) : the_post();
                get_template_part( 'parts/template-parts/content', $latest_layout );
              endwhile; ?>
            </div>
            <?php get_template_part( 'parts/pagination' ); ?>
          <?php else : ?>
            <?php get_template_part( 'parts/template-parts/content', 'none' ); ?>
          <?php endif; ?>
        </main>
      </div>
    </div>
    <?php if ($is_cao_site_list_blog) : ?>
    <!-- 侧边栏 -->
    <div class="sidebar-column col-lg-3">
      <aside class="widget-area">
        <?php dynamic_sidebar( 'blog' ); ?>
      </aside>
    </div>
  <?php endif;?>
  </div>
</div>
<?php
wp_reset_postdata();
get_footer();