WordPress关闭rel =”noreferrer noopener”

使用古腾堡编辑器时,如果链接设置新窗口打开,会自动添加上rel =” noreferrer noopener”,手动删除后会自动添加rel =” noopener”,把以下代码放入functions.php中,此后在编辑链接时删除rel属性,不再添加rel =”noopener”。/** *关闭古腾堡自动添加rel */ add_filter('wp_targeted_link_rel', '

- 阅读全文 -

python bs4 清理html标签

python 通过bs4 处理html中不需要的文字和代码。导入bs4模块from bs4 import BeautifulSoup ... ... soup = BeautifulSoup(a, 'lxml')删除html中的style和script:[s.extract() for s in soup("style")] [s.extract() for s in soup

- 阅读全文 -

oneinstack英文改中文

oneinstack会根据ip判断使用英文还是中文,当使用海外主机时会默认使用英文。修改成中文的方法:cp ~/oneinstack/config/index_cn.html /data/wwwroot/default/index.html

- 阅读全文 -