WordPress Find Articles By Classifying

Find Articles By Classifying,I hope to help you

当前为 2018-05-05 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         WordPress Find Articles By Classifying
// @name:zh-TW   WordPress通過分類查找文章
// @namespace    http://WWW.NTRSN.CN/
// @version      0.1
// @description:en Find Articles By Classifying,I hope to help you
// @description:zh-TW  引用請注明原作者
// @author       WWW.NTRSN.CN
// @match        */wordpress/wp-admin/edit.php*
// @supportURL   [email protected]
// @contributionURL https://www.paypal.com/cgi-bin/webscr?cmd=_donations&[email protected]&item_name=Greasy+Fork+donation
// @compatible   chrome
// @compatible   firefox
// @compatible   opera 未測試not test
// @compatible   safari 未測試not test
// @description Find Articles By Classifying,I hope to help you
// ==/UserScript==

(function() {
    'use strict';
    var list=document.getElementById('cat').cloneNode(true);
    document.getElementsByClassName('search-box')[0].appendChild(list);
    list.onchange=function(){
        var SelectValue=list.options[list.selectedIndex].textContent.replace(/^\s*|\s*$/g, "");
        document.getElementById('post-search-input').value=SelectValue;
        document.getElementById('search-submit').click();
    };
})();