yyymf-摸鱼茶话会
yyymf的头像-摸鱼茶话会
UID:1681 已加入MOYU网183天 总消费:0
这家伙很懒,什么都没有写...
// 将以下代码添加到【自定义PHP代码】中 function zib_add_content_filter_to_header() { // 获取当前 Cookie 状态 $current_mode = isset($_COOKIE['site_content_mode']) ? $_COOKIE['site_content_mode'] : 'all'; // 定义文案和图标 $mode_label = '全部'; $mode_icon = 'fa-globe'; if ($current_mode === 'sfw') { $mode_label = '全年龄'; $mode_icon = 'fa-leaf'; } elseif ($current_mode === 'nsfw') { $mode_label = '限制级'; $mode_icon = 'fa-warning'; } // 状态点(如果有过滤,显示一个小红点) $status_dot = ($current_mode !== 'all') ? '' : ''; // 输出 HTML (适配子比原生结构) echo ''; // end container } // 【关键】挂载到子比主题的导航栏右侧 // zib_header_action_prepend: 放在搜索/夜间模式按钮的前面 add_action('zib_header_action_prepend', 'zib_add_content_filter_to_header'); // 如果你也想在手机端侧边栏或者顶部显示,可以用这个钩子(可选) // add_action('zib_mobile_header_action_prepend', 'zib_add_content_filter_to_header');