前言
重要的纪念日,需要开启全站置灰功能。记录一下开机步骤。
设置方法
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)