上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页
摘要: 在父窗体中,将控件的Modifiers设置为Protected,子窗体就能修改父窗体的控件信息http://social.msdn.microsoft.com/Forums/zh-CN/visualcshartzhchs/thread/c2d820a6-4d1c-4ff4-a82e-90792b778713 阅读全文
posted @ 2012-04-23 13:53 HTL 阅读(3222) 评论(0) 推荐(0) 编辑
摘要: <?php $sticky = get_option('sticky_posts');rsort( $sticky );$sticky = array_slice($sticky, 0, 9);query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );while (have_posts()) : the_post(); php endwhile;?> 阅读全文
posted @ 2012-04-17 15:38 HTL 阅读(668) 评论(0) 推荐(0) 编辑
摘要: cms tree page view 阅读全文
posted @ 2012-04-17 15:36 HTL 阅读(1576) 评论(0) 推荐(0) 编辑
摘要: Url:http://www.girlcoding.com/2011/08/wordpress-database-design/WordPress一共有以下11个表。这里加上了默认的表前缀 wp_ 。wp_commentmeta:存储评论的元数据wp_comments:存储评论wp_links:存储友情链接(Girl is coding)wp_options:存储WordPress系统选项和插件、主题配置wp_postmeta:存储文章(包括页面、上传文件、修订)的元数据wp_posts:存储文章(包括页面、上传文件、修订)wp_terms:存储每个目录、标签、分类wp_term_relati 阅读全文
posted @ 2012-04-17 15:35 HTL 阅读(2003) 评论(0) 推荐(0) 编辑
摘要: 更改编码为Utf-8保存 阅读全文
posted @ 2012-04-16 16:50 HTL 阅读(246) 评论(0) 推荐(0) 编辑
摘要: using System.Runtime.InteropServices;[DllImport("mydll.DLL", SetLastError = true)]//引用组件private static extern bool MyModel(string myparents);//声明要调用的方法,extern 必须加上private static test(){MYModel("");//调用 } 阅读全文
posted @ 2012-04-13 13:42 HTL 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 代码:wp_link_pages('before=<div class="post-pagenavi">&after=</div>&next_or_number=next&link_before=<span >&link_ofter=</span>');Css;.post-pagenavi{ text-align:right;}.post-pagenavi span {padding: 2px 7px; margin:0 1px; border: 1px solid #aaa;t 阅读全文
posted @ 2012-03-31 19:15 HTL 阅读(1395) 评论(0) 推荐(1) 编辑
摘要: function pagination($query_string){ global $posts_per_page, $paged; $my_query = new WP_Query($query_string ."&posts_per_page=-1"); $total_posts = $my_query->post_count; if(empty($paged))$paged = 1; if($paged<=1)$prev = $paged - 1; $next = $paged + 1; $range = 2; // only edit this 阅读全文
posted @ 2012-03-29 18:56 HTL 阅读(924) 评论(0) 推荐(0) 编辑
摘要: wordpress有个很讨厌的功能,叫Post Revisions,保存博文日志的不同版本,同样的内容多次占用数据库,多人用户维护一个blog用这个有用处,单一维护的blog基本是数据库浪费空间。禁用Post Revisions的方法是,在wp-config.php文件中增加一行define(‘WP_POST_REVISIONS’, false);那么如何讨回原来被Post Revisions占用的数据库空间呢?很简单,先登录phpmyadmin,在执行sql语句处,贴上下面的语句。执行此语句前请备份数据库。DELETE FROM wp_posts WHERE post_type = “rev 阅读全文
posted @ 2012-03-29 15:51 HTL 阅读(462) 评论(1) 推荐(0) 编辑
摘要: 参数直接赋值法:<script type="text/javascript"> new Marquee("Marquee",0,1,760,104,50,5000,3000,52) new Marquee("Marquee",null,null,760,104,null,5000,null,-1)</script>参数动态赋值法:<script type="text/javascript"> var Marquee1 = new Marquee("Marquee&quo 阅读全文
posted @ 2012-03-29 14:03 HTL 阅读(11681) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页
htl