WordPress Find Articles By Classifying

Find Articles By Classifying,I hope to help you

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل 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();
    };
})();