分类 碎语札记 下的文章

GeneratePress主题文章摘要设置。中型博客设置150字左右即可。

// 修改碎语摘要字数
function zr_custom_excerpt_length($length) {

    if (is_post_type_archive('micropost')) {
        return 120; // 这里改成你想要的字数
    }

    return $length;
}
add_filter('excerpt_length', 'zr_custom_excerpt_length', 999);

 

标签美化CSS代码,复杂粘贴到自定义CSS,保存即可。

/* 美化标签方框 */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;                    /* 标签之间适度间距 */
}

.tagcloud a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E5F1FB;    /* 精致的浅金色边框 */
    color: #3C82DC !important;     /* 深灰色字体 */
    padding: 6px 14px !important;  /* 较小的内边距 */
    margin: 0 !important;
    border-radius: 2px !important; /* 圆角效果 */
    font-size: 13px !important;    /* 小巧的字体 */
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 80px;               /* 较小的最小宽度 */
    height: 45px;                  /* 较小的高度 */
    box-sizing: border-box;
}

.tagcloud a:hover {
    background-color: #247BFF !important; /* 悬停时浅金色背景 */
    color: #fff !important;               /* 悬停时文字颜色变为白色 */
    transform: scale(1.05) !important;    /* 放大效果更温和 */
}

 

正月初二
回娘家拜年:大年初二,最重要的活动就是回娘家。出嫁的女儿会带着丈夫和孩子,穿上漂亮的民族服装,备好礼品回娘家探望,亲戚之间也趁此时互相走动拜年,共享团圆。

GeneratePress(免费版已足够)
目前公认最轻量的主题之一(主体<30KB),代码规范干净,支持高度自定义。搭配简单CSS或Gutenberg块,即可做出非常日式或中式简约风格。无数中文博客使用它实现极简效果。
适合:想自己微调成日式/中式风格的用户。