Joe主题开启全站置灰功能

行云流水
2022-12-01 / 0 评论 / 183 阅读 / 正在检测是否收录...

前言

重要的纪念日,需要开启全站置灰功能。记录一下开机步骤。

参考: 纪念日网页变灰的Joe主题设置方式

设置方法

functions.php

    // 全站置灰
    $websiteChgGray = new Typecho_Widget_Helper_Form_Element_Select(
        'websiteChgGray',
        array(
            'off' => '关闭(默认)',
            'on' => '开启',
        ),
        'on',
        '是否启用全站置灰',
        '介绍:开启后,网站所有信息全部变成黑白'
    );
    $websiteChgGray->setAttribute('class', 'joe_content joe_global');
    $form->addInput($websiteChgGray->multiMode());

public/include.php

<?php if ($this->options->websiteChgGray === 'on') : ?>
    <style>html { filter: grayscale(1); }</style>
<?php endif; ?>

评论 (0)

取消
只有登录/注册用户才可评论