text Tampermonkey隐藏特定类别的帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Tampermonkey隐藏特定类别的帖子相关的知识,希望对你有一定的参考价值。

// ==UserScript==
// @name         Wordpress Hide Archive – Månadsmail
// @namespace    http://info.stampen.com/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://info.stampen.com/wp-admin/edit.php?post_type=manadsmail
// @include      http://info.stampen.com/*
// @include      https://info.stampen.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
var style = document.createElement('style');
style.setAttribute('type', 'text/css');
style.appendChild(document.createTextNode('tr.titeltyp-gemensamt-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-goteborgs-posten-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-stromstads-tidning-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-bohuslaningen-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-hallands-nyheter-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-hallandsposten-arkiv {display: none !important;}'));
style.appendChild(document.createTextNode('tr.titeltyp-ttela-arkiv {display: none !important;}'));
document.head.appendChild(style);
})();

以上是关于text Tampermonkey隐藏特定类别的帖子的主要内容,如果未能解决你的问题,请参考以下文章

Magento-打印一个类别navi,隐藏特定的类别

从特定类别获取 WooCommerce 产品

text WIX将页眉和页脚隐藏在特定页面上

在 WooCommerce 中为特定产品类别自定义“添加到购物车”按钮

如何将 wordpress/php 功能应用于特定的产品类别

获取 Tampermonkey 上的可用功能列表 [重复]