2023年02月的文章
限制wordpress前端访问,后台和手机均可访问
只要在将以下代码加入functions.php文件开头最前面即可。 add_filter('template_include', function($template){ if(!minisi_is_mobile()){ if(is_home() || is_single() || is_page() || is_ca...
使用curl测试API速度
// get请求,无输出 curl -o /dev/null -s -w time_namelookup:'\t'%{time_namelookup}'\n'time_connect:'\t\t'%{time_connect}'\n'time_appconnect:'\t'%{time_appconnect}'\n'time_pretransfe...