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.
24 lines
1.1 KiB
24 lines
1.1 KiB
<?php
|
|
/**
|
|
* 文章内容模板
|
|
*/
|
|
?>
|
|
<?php get_header();?>
|
|
|
|
<div class="page-full-width">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<?php echo do_shortcode('[nenghui_banner_title title="NEWS" bg_image="https://nenghui.com/wp-content/uploads/2025/07/News-top-bg.webp" description="Nenghui-related news, providing you with the latest industry information." overlay_opacity="0.5"]'); ?>
|
|
<div class="article-content">
|
|
<h1 style="margin-bottom: 20px;"><?php the_title(); ?></h1>
|
|
<div class="article-meta" style="color: #666; font-size: 14px; margin: 10px 0; padding: 8px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; line-height: 1.6;">
|
|
<span class="posted-on" style="margin-right: 20px;">Posted on <time datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y-m-d'); ?></time></span>
|
|
<span class="post-views" style="margin-right: 20px;">Post Views: <?php echo nenghui_get_post_views(get_the_ID()); ?></span>
|
|
</div>
|
|
<?php the_content();?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer();?>
|