This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
kspace-wordpress-theme/js/prettylinks.js

6 lines
160 B
JavaScript
Raw Permalink Normal View History

2022-12-18 19:19:04 +01:00
var length = 35;
document.querySelectorAll('.pretty-link').forEach(function (i) {
var str = i.textContent.replace('https://', '');
i.textContent = str;
});