至于原因,是因为方便折腾各种wordpress编辑器。
wordpress
wordpress文章隐藏发表日期和作者的办法
不想让用户看到文章或日志的发表日期和作者,然后Google搜索了一堆,都是说改什么函数的,结果我研究半天还是搞不定,后来灵光一现,直接用css给display:none了,挺好
.below-title-meta{
display:none;
}
LNMP下wordpress后台在线编辑主题提示”文件不存在请重试”
> Oops, no such file exists! Double check the name and try again, merci.
# 打开php.ini
vim /usr/local/php/etc/php.ini
# 查找disable_functions,删除scandir
# 保存并退出,按ESC然后输入下面的再确认
:wq
# 重启PHP
/etc/init.d/php-fpm restart
any question pls Google it.