feat: Argon WordPress主题完整版本

- 基于Argon主题的WordPress博客主题
- 支持响应式设计和暗色模式
- 包含完整的文章管理和评论系统
- 集成友情链接管理功能
- 支持多种自定义设置选项
- 优化的用户界面和交互体验
This commit is contained in:
2026-01-11 19:48:02 +08:00
commit 31d8fde308
547 changed files with 147669 additions and 0 deletions

64
msgboard.php Normal file
View File

@@ -0,0 +1,64 @@
<?php
/*
Template Name: 留言板 (请打开页面的评论功能)
*/
?>
<?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', 'page' );
if (get_option("argon_show_sharebtn") != 'false') {
get_template_part( 'template-parts/share' );
}
if (comments_open() || get_comments_number()) {
comments_template();
}
endwhile;
?>
<style>
#main article {
display: none !important;
}
#share_container {
display: none;
}
.comments-area .comments-title {
font-size: 0px;
}
.comments-area .comments-title:after {
content: '<?php _e("留言板"); ?>';
font-size: 20px;
}
.comments-area .comments-title i {
font-size: 20px;
margin-right: 10px;
}
.post-comment-title {
font-size: 0px;
}
.post-comment-title:after {
content: '<?php _e("发送留言"); ?>';
font-size: 20px;
}
.post-comment-title i {
font-size: 20px;
margin-right: 10px;
}
</style>
</main>
</div>
<?php get_footer(); ?>
<?php get_footer(); ?>