/
www
/
wwwroot
/
fxdst.com
/
wp-content
/
themes
/
fxdst
/
Upload File
HOME
<?php /* * @Author: iowen * @Author URI: https://www.iowen.cn/ * @Date: 2024-07-30 17:15:18 * @LastEditors: iowen * @LastEditTime: 2024-07-30 20:40:43 * @FilePath: /WebStack/single.php * @Description: */ if ( ! defined( 'ABSPATH' ) ) { exit; } get_header(); include( 'templates/header-nav.php' ); ?> <div class="main-content page"> <?php include( 'templates/header-banner.php' ); ?> <div class="container"> <div class="row mt-5 mt-sm-0"> <div class="col-12 mx-auto"> <div class="panel panel-default"> <?php get_template_part( 'templates/breadcrumb' ); ?> <h1 class="h2"><?php echo get_the_title() ?></h1> <?php $fxdst_article_content = get_post_field('post_content', get_the_ID()); $fxdst_article_plain = trim(preg_replace('/\s+/u', '', wp_strip_all_tags(strip_shortcodes($fxdst_article_content)))); $fxdst_article_length = function_exists('mb_strlen') ? mb_strlen($fxdst_article_plain, 'UTF-8') : strlen($fxdst_article_plain); $fxdst_reading_minutes = max(1, (int) ceil($fxdst_article_length / 500)); ?> <div class="post-meta d-flex align-items-center text-muted text-xs"> <span class="fxdst-post-date"><i class="fa fa-calendar mr-1"></i> <time class="mx-1"><?php echo get_the_time('Y-m-d G:i') ?></time> </span> <span class="fxdst-reading-time"><i class="fa fa-clock-o mr-1"></i>阅读约 <?php echo esc_html($fxdst_reading_minutes); ?> 分钟</span> </div> <div class="panel-body my-3"> <div class="row"> <div class="col-sm-12"> <?php while( have_posts() ): the_post(); ?> <?php the_content();?> <?php edit_post_link(__('编辑','i_theme'), '<span class="edit-link">', '</span>' ); ?> <?php endwhile; ?> </div> </div> </div> </div> <?php if ( comments_open() || get_comments_number() ) : comments_template(); endif; ?> </div> </div> </div> <?php get_footer(); ?>