wordpress后台外观没有菜单怎么办?
1, 登录FTP,进入/web/wp-content/themes/XXXXX [注:XXXXX为当前启用的主题模版]下载 functions.php 2,将下载的functions.php,用Dreamweaver打开。 3, <?phpif ( function_exists(‘register_sidebar’) )register_sidebar(array(…
948 2016-01-10 去围观wordpress禁用无用的功能优化提升速度
我的wp优化 wordpress 禁用 wordpress_up 1,禁止wp更新 : open file "wordpress\wp-includes\update.php". add_filter('pre_site_transient_update_core', create_function('$a', 'return null;')); // 关闭核心提示 add_filter('pre_site_tran…
543 2016-01-09 去围观Node.js http模块 使用详解
直接通过http对象使用的有: 一、http.STATUS_CODES 二、http.createServer 三、http.request(http.ClientRequest) 四、http.get 五、http.globalAgent 六、http.IcomingMessage 作为回调参数使用的对象有: 1.http.serverRequest 2.http.s…
529 2016-01-07 去围观nodejs爬虫-cheerio
nodejs采集 php采集使用的是phpQuery参考《php采集》 nodejs采集的效率远远高于php推荐模块cheerio。使用方法跟jquery类似就像操作DOM一样。 安装npm install cheerio cheerio 是一个为服务器特别定制的,快速、灵活、封装jQuery核心功能工具包。Cheerio包括了…
493 2016-01-06 去围观