是否有插件或如何更改由Glype解析的特定网页上的样式表链接?
我需要更改远程托管应用程序的外观和颜色以匹配我的网站主题。
答案 0 :(得分:2)
好的,我找到了办法。步骤进行:
使用preParse
函数对样式表网址进行正则表达式替换。
function preParse($input, $type) {
# Fix thumbnail images
$input = preg_replace(
'<link href="Url_One" type="text/css" rel="stylesheet" />',
'link href="Url_Two" type="text/css" rel="stylesheet" /',
$input);
return $input;
}