在网站根目录,编辑 wp-config.php。 在 /* That’s all, stop editing! Happy blogging. */ 前面填入代码: /* Add any custom values between this line and the "stop editing" line. */ define('ALLOW_UNFILTERED_UP…
内部搭建的博客可能有这么一种情况,组内的大部分博客内容需要保密,但是某些博客需要分享给其他同事查看。 只需要将下面的代码加入到 function.php 文件,即可实现所有用户可以查看带有 public 标签的文章,访问其他文章一律需要管理员用户,其他用户访问均返回 404。 function my_template_redirect() { if ( is_home() && !…
喜欢 docker run 运行命令的朋友经常会遇到的一件事是,忘记之前环境变量设置的什么密码了。如果这个这个容器是很久之前创建的,并且 linux 历史命令也找不到可能就有点束手无策了。 而 runlike 容器能帮助还原之前运行的 docker run 命令,使用方式如下: docker run --rm -v /var/run/docker.sock:/var/run/docker.sock...