wordpress
amaicsdn
For life goes not backward or tarries with yesterday
展开
-
安装FTP传输工具 FileZilla client(linux系统)
1.下载FileZilla2.解压之后,可执行文件是 /bin/filezilla./filezilla 报错./filezilla: error while loading shared libraries: libpng16.so.16: cannot open shared object file: No such file or directory3.下载libpng16...原创 2019-04-15 16:23:22 · 2237 阅读 · 1 评论 -
本地安装wp
1.LAMP环境L:ubuntuA:sudo apt-get install apache2M: sudo apt-get install mysql-serverP: sudo apt-get install php7.0版本下载最新的即可可能需要Apache-php 工具链sudo apt-get install libapache2-mod-php2. 下载p...原创 2019-04-16 10:57:00 · 301 阅读 · 0 评论 -
[wordpress]如何为plugin添加css文件
add_action( 'wp_enqueue_scripts', 'zelon_add_style' );function zelon_add_style() { wp_enqueue_style( 'your-style-name', plugins_url('your-style-path', __FILE__) );}wp_enqueue_scripts :是一个a...原创 2019-04-19 10:22:38 · 622 阅读 · 0 评论