Feb 19, 2019 3:18 pm
Is it possible to show tags in alphabetical order on "widget" and "all tags" page?
3 Replies
Feb 20, 2019 10:15 am
Hi @daver,
I'm sorry, but there is no such feature. You should use the js code like this one. Add the code in your active theme js file:
jQuery(function() {
jQuery(".wpf-widget-tags li").sort(function (a, b) {
return (jQuery(a).text() ) > (jQuery(b).text()) ? 1 : -1;
}).appendTo('.wpf-widget-tags');
});