木材页脚 returns svg?
Timber footer returns svg?
我其实是用木头搭建的,下面是我的作曲json:
{
...,
"autoload": {
"psr-4": {
"App\": "src/"
}
},
"require": {
"timber/timber": "1.18",
"hellonico/timber-dump-extension": "^1.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"symfony/var-dumper": "^5.3"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}
我的页脚模板:{{function("wp_footer")}}</body></html>
奇怪的是,这个片段并没有输出注册的脚本,而是输出了一些我不知道它们来自哪里的 svg 标签(下图)footer output。
这里是我注册脚本的方式:
wp_register_script('myjs', APP_DIR_URI .'/dist/js/myjs.js', ['jQuery'], "1.0.0", true); wp_enqueue_script('prono');
能解释一下为什么会出现这个问题吗,是跟timber的版本有关还是其他的?
谢谢
新 WordPress 随附 block themes and specifically theme.json
file. You may find more about this file and how to use it here
File 不仅呈现 svg-filters,而且在每个页面上创建内联全局样式。如果你想“禁用”它(你不能禁用它但你可以用所需的覆盖这种行为)你可以在主题的根目录下创建 theme.json
文件,内容如下
{
"version": 2,
"settings": {
"color": {
"duotone": null,
"palette": null,
"gradients": null
},
"typography": {
"fontSizes": null
}
},
"styles": null,
"variables": null,
"presets": null
}
我其实是用木头搭建的,下面是我的作曲json:
{
...,
"autoload": {
"psr-4": {
"App\": "src/"
}
},
"require": {
"timber/timber": "1.18",
"hellonico/timber-dump-extension": "^1.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"symfony/var-dumper": "^5.3"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}
我的页脚模板:{{function("wp_footer")}}</body></html>
奇怪的是,这个片段并没有输出注册的脚本,而是输出了一些我不知道它们来自哪里的 svg 标签(下图)footer output。
这里是我注册脚本的方式:
wp_register_script('myjs', APP_DIR_URI .'/dist/js/myjs.js', ['jQuery'], "1.0.0", true); wp_enqueue_script('prono');
能解释一下为什么会出现这个问题吗,是跟timber的版本有关还是其他的?
谢谢
新 WordPress 随附 block themes and specifically theme.json
file. You may find more about this file and how to use it here
File 不仅呈现 svg-filters,而且在每个页面上创建内联全局样式。如果你想“禁用”它(你不能禁用它但你可以用所需的覆盖这种行为)你可以在主题的根目录下创建 theme.json
文件,内容如下
{
"version": 2,
"settings": {
"color": {
"duotone": null,
"palette": null,
"gradients": null
},
"typography": {
"fontSizes": null
}
},
"styles": null,
"variables": null,
"presets": null
}