10 2014 档案

摘要:PHP header()the function declaration: void header ( string string [, bool replace [, int http_response_code]])The optional replace parameter indicates... 阅读全文
posted @ 2014-10-23 22:14 前度天下 阅读(1079) 评论(0) 推荐(0) 编辑
摘要:CSS3 @keyframes 规则创建css3动画可以用from或者to或者%@keyframes myfirst{}@-moz-keyframes myfirst{ /* Firefox */}@-webkit-keyframes myfirst {/* Safari 和 Chrome */}@... 阅读全文
posted @ 2014-10-23 19:05 前度天下 阅读(181) 评论(0) 推荐(0) 编辑
摘要:1、下载Font Awesome 4.0.3兼容包,http://www.thinkcmf.com/index.php?m=font2、解压,并放到自己网站系统合适的位置(如果你的站已使用Font Awesome 4.0.3,只需拷出当中font-awesome-ie7.css)3、引用代码 基本... 阅读全文
posted @ 2014-10-23 11:06 前度天下 阅读(981) 评论(0) 推荐(0) 编辑
摘要:Auth权限认证本例采用auth权限认证,用户和用户组采用多对多关系处理,自动添加rule规则,带有jquery-validator插件,自动控制菜单显示或隐藏。config.php中的配置'AUTH_CONFIG'=>array('AUTH_ON'=>true,//认证开关'AUTH_TYPE'=... 阅读全文
posted @ 2014-10-22 12:48 前度天下 阅读(3447) 评论(1) 推荐(1) 编辑
摘要:1. 在 Wordpress主题中显示最热文章的 PHP代码get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 10"); foreac... 阅读全文
posted @ 2014-10-19 14:11 前度天下 阅读(652) 评论(0) 推荐(0) 编辑
摘要:1. 最新文章Wordpress最新文章的调用可以使用一行很简单的模板标签 wp_get_archvies来实现. 代码如下: (显示 10篇最新更新文章) 或 后面这个代码显示你博客中最新的 20篇文章,其中 format=custom这里主要用来自定义这份文章列表的显示样式。具体的参数和使... 阅读全文
posted @ 2014-10-19 14:07 前度天下 阅读(445) 评论(0) 推荐(0) 编辑
摘要:显示最新文章 最新文章 " id="post-"> 显示最新评论 最新评论 comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->po... 阅读全文
posted @ 2014-10-19 14:01 前度天下 阅读(251) 评论(0) 推荐(0) 编辑
摘要:1.Loop循环(成功) // the code inside the loop //插入Loop 中的代码 2.在WordPress的第一篇文章中插入Google广告 // Insert your Google AdSense code here 你同样可以改变 count值来让广... 阅读全文
posted @ 2014-10-19 13:52 前度天下 阅读(291) 评论(0) 推荐(0) 编辑
摘要:1.获取博客信息 // 显示博客的信息/* 部分常用参数: default:默认 name:名称 description:说明 url、home、siteurl:网址 charset:网页的编码方式 stylesheet_url:css 文件地址 version:博客所使用的 WordPress ... 阅读全文
posted @ 2014-10-19 13:34 前度天下 阅读(1158) 评论(0) 推荐(0) 编辑