Command Palette

Search for a command to run...

WordPress文章中自动转义"&"成"&038;"

今天发现在文章内用自定义html写js时,&号会被自动转义成 &038; 。 html元素转义不要紧,但是js转义就直接报错了。 网上说在 function 里加各种代码都不行。 分享一个官方的解决方法: <https://codex.wordpress.org/Using_Javascript> 在自定义html内写入: <script type="text/javascript"> <!-- ...

WordPress后台顶部添加显示选项和帮助选项卡

如何在后台顶部右上角添加 显示选项卡 和 帮助选项卡 。 通过wordpress提供的接口可以轻易实现该功能。 在 add_action('admin_menu', '') 创建菜单中,添加以下内容: add_action('admin_menu', function () { $krjojo_tool = add_submenu_page( 'krjojo_slug', '插件完整标题', '插...

Code-Server 提示 This is likely because the editor is not running in a secure context

今天在code-server遇到一个错误提示 如下: crypto.subtle' is not available so webviews will not work. This is likely because the editor is not running in a secure context (https://developer.mozilla.org/en-US/docs/Web...

Html5 鱼儿游动态背景特效

示例: var ifr = document.getElementById('id1298'); ifr.onload = function() { var oHeight = Math.max(ifr.contentWindow.document.documentElement.offsetHeight, ifr.contentWindow.document.body.offsetHeight)...

冷门的css属性:initial

分享一个比较强硬的属性, 可以把几乎所有css属性进行重置。前端在 ctrl + c 时就不用这么痛苦检查样式了,虽然没办法像 <iframe src="..."></iframe> 那样彻底隔离 css 和 js 。 一键隔离所有父级css属性: all: initial; 还可以单独还原css属性默认值: color: initial; background-color: initial; b...

2024纯代码美化WordPress登录页

内容来自:<https://www.iowen.cn/chundaimameihuawordpressmorendengluye/> PHP源代码: / 美化Wordpress登录页 By 一为 原文地址:https://www.iowen.cn/chundaimameihuawordpressmorendengluye/ / function io_login_header(){ echo '<...