HEX
Server: nginx/1.28.3
System: Linux VM-0-7-opencloudos 6.6.117-45.oc9.x86_64 #1 SMP Thu Dec 4 10:26:39 CST 2025 x86_64
User: www (1000)
PHP: 8.2.28
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.213n.cn/wp-content/themes/rk-blogger/template-parts/content.php
<?php

/**
 * The template part for displaying content
 *
 * Author: wbolt team
 * Author URI: https://www.wbolt.com
 */

?>
<article class="post">
  <div class="inner">
    <a class="media-pic" href="<?php echo get_permalink(); ?>">
      <?php wbolt_post_thumbnail(); ?>
    </a>
    <div class="post-cate">
      <?php
      $cate = get_the_category();
      foreach ($cate as $key => $cateItem) {
        if ($key < 4) { ?>
          <a class="cate-tag" href="<?php echo get_category_link($cateItem->cat_ID); ?>"><?php echo $cateItem->cat_name; ?></a>
      <?php
        }
      }
      ?>
    </div>
    <div class="media-body">
      <?php the_title(sprintf('<a class="post-title" href="%s">', esc_url(get_permalink())), '</a>');
      ?>
      <div class="summary">
        <?php
        the_excerpt();
        ?>
      </div>
      <div class="post-metas">
        <span class="meta-item primary">
          <?php echo wbolt_svg_icon('wbsico-time'); ?>
          <em><?php the_time('Y.m.d') ?></em>
        </span>
        <span class="meta-item">
          <?php echo wbolt_svg_icon('wbsico-views'); ?>
          <em><?php echo wb_get_post_views(get_the_ID()); ?></em>
        </span>
        <a class="meta-item" href="<?php comments_link(); ?>">
          <?php echo wbolt_svg_icon('wbsico-comment'); ?>
          <em><?php comments_number('0', '1', '%'); ?></em>
        </a>
      </div>
    </div>
  </div>
</article>