jokerliang.com
蜕变、重生 | 良虎博客
http://jokerliang.com/tui-bian-chong-sheng.html
联系到我自身,这则引用老鹰蜕变、重生的段子 尽管老鹰不可能经历这样的蜕变过程,可参考流言百科 老鹰活到40岁的时候会拔毛断喙,然后重生 ,给步入不惑之年的我提了个醒,蜕变、重生或已迫在眉睫. 2014 年 11 月 17 日. 生活是无法超越的剧本 – 推荐历时56年之记录片 成长. 2014 年 11 月 28 日10:30. A href= title= abbr title= acronym title= b blockquote cite= cite code del datetime= em i q cite= s strike strong. Windows 2012 R2 DataCenter 有效激活方式推荐. Sublime Text插件 HTML CSS JAVASCRIPT JSON快速格式化. Sublime Text 如何安装Package Control和插件.
jokerliang.com
wordpress中如何获取指定的文章格式? | 良虎博客
http://jokerliang.com/wordpress-get-post-format-with-wp_query.html
Wordpress 自带的有文章形式功能,如链接,聊天,标准.日志等. 想获取指定分类下的某一个文章形式文章,比如获取未分类下的 所有日志文章,并且控制显示条数. 上面代码功能可以实现,但不完善,检索出500篇或更多文章后,才去匹配文章形式为日志aside的内容,有匹配的则输出.感觉太烂了,查询次数太多,而且无法控制最终输出的数量. The title(); echo '. Endwhile; }else { echo 'no posts in current category! 问题连接 http:/ zhidao.baidu.com/question/497184422143944724.html. 2014 年 12 月 09 日. Sublime Text 如何安装Package Control和插件 →. A href= title= abbr title= acronym title= b blockquote cite= cite code del datetime= em i q cite= s strike strong.
jokerliang.com
利用Snoopy.class.php获取目标网站的META信息 | 良虎博客
http://jokerliang.com/get-web-site-meta-information-with-snoopy.html
Header("Content-Type:text/html; charset=".C('OUTPUT CHARSET') ; import('@.Util.Snoopy'); $get data www = new Snoopy; if( $get data www- fetch('http:/ www.imyike.com/') ){ $contents = $get data www- results; while(list($key,$val) = each($get data www- headers) echo $key.": ".$val." br / n"; preg match('/ [s]*meta[s]*http-equiv *? 以上实现过程是建于ThinkPHP框架的基础之的.内容首发于: http:/ bbs.thinkphp.cn/viewthread.php? 支持设置 user agent, referer(来路), cookies 和 header content(头文件). 抓取的结果被存储在 $this- results 中。 2008 年 12 月 01 日.
jokerliang.com
设计艺术 | 良虎博客
http://jokerliang.com/category/art
2014 年 10 月 13 日. 至简油画, 无题 值1.2亿. 艺术家本人也花了很多时间去创作每一幅作品 ,鲁特 苏富比全球当代艺术部门联席主席亚历山大 鲁特 表示, 有些事是市场机制决定的,这就是为什么它的价值会这么高。 我不是收藏家,也不是艺术家,我只是个对艺术层面的东西存在一定的兴趣 继续阅读 →. 2014 年 10 月 11 日. 原教程内容 http:/ www.zcool.com.cn/article/ZNzA0MDQ=.html. 2014 年 04 月 08 日. 2013 年 10 月 30 日. 这组作品来自于波兰摄影者Mac Oller,并于Behance组织的 Bring Your Photography To Life”活动中获取奖励。 Http:/ www.behance.net/competitions/Bring-Your-Photography-to-Life/2413364/630467. Http:/ www.macoller.com. 2013 年 07 月 26 日. Windows 2012 R2 DataCenter 有效激活方式推荐.
jokerliang.com
实用的 | 良虎博客
http://jokerliang.com/tag/utility
故障从wamp wamp server 2.5 服务无法正常启动开始,查apache错误日志和mysql日志以及计算机事务日志,找到关键提示. InnoDB: We do not continue the crash recovery, because the table may become. InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it. InnoDB: To fix the problem and start mysqld:. InnoDB: 1) If there is a permission problem in the file and mysqld cannot. InnoDB: open the file, you should modify the permissions. InnoDB: 2) If the table is not needed, or you can restore it from a backup,. 2016 年 08 月 19 日.
jokerliang.com
几招搞定wordpress自由获取指定分类中的日志 | 良虎博客
http://jokerliang.com/get-posts-from-specific-category-in-wordpress.html
分类ID:61 分类名称 技术前端 需要获取10条记录. Php / The args $args = 'cat=61&posts per page=10'; / The Query query posts( $args ); / The Loop while ( have posts() ) : the post(); echo ' li '; the title(); echo ' /li '; endwhile; / Reset Query wp reset query();? 中,这样强调 如果我们不得不用到query posts(),必须确保每次使用query posts()后同时执行wp reset query();。 具体可移步至” Right Way to Use Query Posts. 按我个人的习惯和对wordpress的浅显认识,建议放弃烂用query posts(),而改用WP Query().尽管看上去有一点点烦。 Http:/ codex.wordpress.org/Function Reference/query posts. Http:/ wp.smashing...
jokerliang.com
wordpress经验分享 | 良虎博客
http://jokerliang.com/tag/wordpress经验分享
Http:/ zhidao.baidu.com/question/810859304090448132. Add action( 'pre get posts', 'wpdit pre get posts' ); function wpdit pre get posts( $wp query ) { if ( is home() is front page() ){ $wp query- set( 'category not in', array(1) ); / 1为不想显示的分类ID } return $wp query; }. 2015 年 12 月 04 日. Authorid = get current user id(); $args = array( 'post type' = 'post', 'post status' = 'publish', 'author' = $authorid, ); $query = new WP Query($args); $count = $query- found posts; wp reset query(); return $count;.
jokerliang.com
HTML5速查表 | 良虎博客
http://jokerliang.com/html5-cheat-sheet.html
Http:/ www.mhtml5.com/. Http:/ www.html5cn.org/. Http:/ www.html5china.com/. Http:/ www.inmotionhosting.com/infographics/html5-cheat-sheet/. 2012 年 06 月 26 日. A href= title= abbr title= acronym title= b blockquote cite= cite code del datetime= em i q cite= s strike strong. Windows 2012 R2 DataCenter 有效激活方式推荐. Sublime Text插件 HTML CSS JAVASCRIPT JSON快速格式化. Sublime Text 如何安装Package Control和插件.