最新发布第40页
PHP/JS一行代码解决底部年份自动获取-阿宅学院

PHP/JS一行代码解决底部年份自动获取

前言 网站底部的版权之前的年份你还在手动更新吗?快来使用代码自动获取吧。 JS代码: <script type='text/javascript'>document.write((new Date()).getFullYear());</script> PHP代码:...
不是宅宅的头像-阿宅学院不是宅宅2023年1月17日
0893
最有效 python 镜像源-阿宅学院

最有效 python 镜像源

以 python-telegram-bot python3 -m pip install -i https://pypi.python.org/simple python-telegram-bot==13.7 -t . #官方 python3 -m pip install -i https://pypi.python.org/simple p...
不是宅宅的头像-阿宅学院不是宅宅2022年9月7日
0891
解决谷歌 Google AdSense 广告导致网站加载慢优化方法-阿宅学院

解决谷歌 Google AdSense 广告导致网站加载慢优化方法

前言 相信很多做网站的朋友网站有了一部分流量后就会挂上 Google AdSense 谷歌广告以维持服务器的运营需要,但是国内对于谷歌的网络优化并不是很好,很多网站在挂上Google AdSense 谷歌广告后网...
不是宅宅的头像-阿宅学院不是宅宅2022年6月4日
0893
为WordPress 搜索添加人机验证-阿宅学院

为WordPress 搜索添加人机验证

不多废话,直接上 function esc_search_captcha( $query, $error = true ) { if ( is_search() && !is_admin() ) { if ( ! isset( $_COOKIE['esc_search_captcha'] ) ) { $query->is_se...
不是宅宅的头像-阿宅学院不是宅宅2022年9月19日
1880
服务器Ubuntu配置ftp-阿宅学院

服务器Ubuntu配置ftp

安装 更新软件 sudo apt upgrade 安装 vsftpd sudo apt-get install vsftpd ftp 启动,停止,重启,查看状态指令 systemctl start vsftpd #启动 systemctl stop vsftpd #停止 systemctl restart...
不是宅宅的头像-阿宅学院不是宅宅2022年11月29日
0872