我找到了這個Altering registered symbols (R)的答案,我試圖實現類似的東西。創建插件,以改變整個WordPress站點TM符號
客戶端不希望TM以上標顯示,他們想要顯示爲下標的替代版本。
我試圖創建我的第一個WordPress插件來完成此任務,它將採用任何版本的符號(符號,名稱代碼,十進制代碼或十六進制代碼)並將其替換爲下標風格化版本) 。
這是我這麼遠......
<?php
/*
Plugin Name: Subscript the TM symbol
Plugin URI: TBD
Description: This is my first plugin. Client wants the TM subscript. So I'm figuring it out. :D
Version: 0.1
Author: Sarah Collins
Author URI: http://sarahcollinsweb.design
*/
(function($) {
"use strict";
$(function() {
var replaced1 = $('').html().replace('™', '<sub>™</sub>');
$('').html(replaced1;
});
$(function() {
var replaced2 = $('').html().replace('™', '<sub>™</sub>');
$('').html(replaced2);
});
$(function() {
var replaced3 = $('').html().replace('™', '<sub>™</sub>');
$('').html(replaced3);
});
$(function() {
var replaced4 = $('').html().replace('™', '<sub>™</sub>');
$('').html(replaced4);
});
}(jQuery));
?>
:\我發現了一個致命的錯誤。我究竟做錯了什麼?