Skip to content

Commit 17356cd

Browse files
committed
v1.0.1
- 修复文章归档和搜索模板错误
1 parent 2e460f5 commit 17356cd

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Text Only
22

3-
主题介绍: Text Only 是一款 Typecho & WordPress 纯文本极简主题,黑白配色,对程序极简优化,主题无 JS 和图片文件载入。主题支持自定义背景、自定义菜单,保留搜索及评论功能;内置文章归档和搜索模板;已作中文字体优化,内置3种字体方案可选。力求极简,对程序自带功能进行禁用,若对使用有影响,按需删除即可。
3+
主题介绍: Text Only 是一款 Typecho & WordPress 纯文本极简主题,黑白配色,对程序极简优化, JS、图片文件引用。主题支持自定义背景、自定义菜单,保留搜索及评论功能;内置文章归档和搜索模板;已作中文字体优化,内置3种字体方案可选。力求极简,对程序自带功能进行禁用,若对使用有影响,按需删除即可。
44

55
关键词: 极简,博客,纯文本,单栏,自适应,免费
66

@@ -10,7 +10,7 @@
1010

1111
作者网站: https://yayu.net/
1212

13-
最新版本: 1.0.0
13+
最新版本: 1.0.1
1414

1515
授权方式: CC BY-NC-SA 4.0 DEED
1616

@@ -39,4 +39,13 @@ __主题禁用功能和插件冲突怎么办?__
3939

4040
使用代码编辑器打开主题内 functions.php,删除冲突部分的代码,上传文件替换即可。
4141

42-
有问题可随时在作者网站留言交流。
42+
有问题可随时在作者网站留言交流。
43+
44+
45+
## 迭代日志
46+
47+
### Version 1.0.1 (2024-09-07)
48+
- 修复文章归档和搜索模板错误
49+
50+
### Version 1.0.0 (2024-07-08)
51+
- 始发

archives.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
$previous_year = $year; $previous_month = $month;
2727
?>
2828
<li>
29-
<time datetime="<?php the_time('Y年m月d日');?>"><?php the_time('m-d');?></time>&nbsp·&nbsp<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( $title_args ); ?>"><?php the_title_attribute( $title_args ); ?></a>
29+
<time datetime="<?php the_time('Y年m月d日');?>"><?php the_time('m-d');?></time>&nbsp·&nbsp<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
3030
</li>
3131
<?php endforeach; ?>
3232
<?php get_footer(); ?>

search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<ul class="results">
1616
<?php while ( have_posts() ) : the_post();?>
1717
<li>
18-
<?php if ( 'post' == get_post_type()){ echo "[ "; the_category(', '); echo " ] "; } ?><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( $title_args ); ?>"><?php the_title_attribute( $title_args ); ?> <small><time datetime="<?php the_time('Y年m月d日');?>"><?php the_time('(Y/m/d)');?></time></small></a>
18+
<?php if ( 'post' == get_post_type()){ echo "[ "; the_category(', '); echo " ] "; } ?><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?> <small><time datetime="<?php the_time('Y年m月d日');?>"><?php the_time('(Y/m/d)');?></time></small></a>
1919
</li>
2020
<?php endwhile; ?>
2121
</ul>

style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Theme Name: Text Only
33
Theme URI: https://yayu.net/projects/wordpress-textonly
44
Author: Jeff Chen
55
Author URI: https://yayu.net/
6-
Description: Text Only 是一款 Typecho & WordPress 纯文本极简主题,黑白配色,对程序极简优化,主题无 JS 和图片文件载入。主题支持自定义背景、自定义菜单,保留搜索及评论功能;内置文章归档和搜索模板;已作中文字体优化,内置3种字体方案可选。
6+
Description: Text Only 是一款 Typecho & WordPress 纯文本极简主题,黑白配色,对程序极简优化, JS、图片文件引用。主题支持自定义背景、自定义菜单,保留搜索及评论功能;内置文章归档和搜索模板;已作中文字体优化,内置3种字体方案可选。
77
Tags: blog, plaintext, one-column, full-width-template, minimalism, responsive, free
8-
Version: 1.0.0
8+
Version: 1.0.1
99
License: CC BY-NC-SA 4.0 DEED
1010
License URI: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh-hans
1111
*/

0 commit comments

Comments
 (0)