feat: Argon WordPress主题完整版本
- 基于Argon主题的WordPress博客主题 - 支持响应式设计和暗色模式 - 包含完整的文章管理和评论系统 - 集成友情链接管理功能 - 支持多种自定义设置选项 - 优化的用户界面和交互体验
This commit is contained in:
25
single-shuoshuo.php
Normal file
25
single-shuoshuo.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php get_header(); ?>
|
||||
|
||||
<div class="page-information-card-container"></div>
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
<?php
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
|
||||
get_template_part( 'template-parts/content', 'shuoshuo-details' );
|
||||
|
||||
if (get_option("argon_show_sharebtn") != 'false') {
|
||||
get_template_part( 'template-parts/share' );
|
||||
}
|
||||
|
||||
if (comments_open() || get_comments_number()) {
|
||||
comments_template();
|
||||
}
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user