正在加载...

blog » WordPress / 软硬一本 » 晒G7 v4预览图一张

晒G7 v4预览图一张

算起来差不多两个礼拜没好好睡过觉了,最高记录是一天半没开浏览器。从到单位坐在工位上就开始不停的收信发信打电话开会上楼下楼。

G7v4拖了很久,也变化了N次,差不多固定了,大概一个礼拜的时间陆续在夜里等着领导确认的空闲把图做完,还没code。不承诺最终效果,点缀还是我偏爱的绿色,两栏,黑色底(算是兑现承诺)。

啥时候完成我可不知道,做完了就换上。

Popularity: 54%

延展阅读

RSS 2.0 | leave a response | trackback

130 Responses

  1. Sep 26th, 2008 / 8:50 pm Reply to this comment underone Says:

    可能留言部分某些元素会和G7v6一样。

  2. Sep 26th, 2008 / 9:01 pm Reply to this comment motta Says:

    logo太赞了~~

  3. Sep 26th, 2008 / 9:05 pm Reply to this comment sofish Says:

    不能满足要求,因为....图片,看不到全部!

  4. Sep 26th, 2008 / 9:40 pm Reply to this comment Sivan Says:

    为啥?为啥?以前的V4呢?55555555555555这是盗版T T

  5. Sep 26th, 2008 / 9:59 pm Reply to this comment euphor Says:

    现在分辨率那么大了,能不能把文章正文部分的宽度改大一些呢?

  6. Sep 26th, 2008 / 10:01 pm Reply to this comment ucax Says:

    期待新作 V4

  7. Sep 26th, 2008 / 10:11 pm Reply to this comment 胡戈戈 Says:

    太漂亮了

  8. Sep 26th, 2008 / 10:35 pm Reply to this comment tto Says:

    不错,让我看的很馋

  9. Sep 26th, 2008 / 10:51 pm Reply to this comment Dianso Says:

    漂亮啊

  10. Sep 26th, 2008 / 11:24 pm Reply to this comment NetPuter Says:

    还是很好看,期待~

  11. Sep 26th, 2008 / 11:44 pm Reply to this comment 雀巢 Says:

    快点放出来吧

  12. Sep 27th, 2008 / 12:16 am Reply to this comment Chris.Ro Says:

    真的很赞,支持。快点出吧

  13. Sep 27th, 2008 / 12:18 am Reply to this comment ZZ Says:

    啊,太赞了,期待~

  14. Sep 27th, 2008 / 12:18 am Reply to this comment 虫儿飞 Says:

    左侧区预定宽度有560px吗?

  15. Sep 27th, 2008 / 1:52 am Reply to this comment Black-Xstar Says:

    underone的logo都很漂亮……

  16. Sep 27th, 2008 / 8:53 am Reply to this comment underone Says:

    @sofish: 保持神秘感……
    @Sivan: 哈哈
    @euphor: 我一直不太习惯太宽,因为如果文字少的话就很难看啊
    @虫儿飞: 没算过……我的基础是保证500px的图片能放下
    @all:谢谢大家

  17. Sep 27th, 2008 / 8:54 am Reply to this comment young Says:

    很好的,感觉好看多了,期待哦……

  18. Sep 27th, 2008 / 9:08 am Reply to this comment 锐风 Says:

    貌似一直都一个风格.. 米沙大变化哈..
    还算不错.. 就是日志标题那我不太看得上眼啊..

  19. Sep 27th, 2008 / 9:30 am Reply to this comment kenzen Says:

    很是期待新版本啊,很清爽的一个theme

  20. Sep 27th, 2008 / 9:53 am Reply to this comment fireyy Says:

    两个圆角总觉得有点点的别扭... :)

  21. Sep 27th, 2008 / 10:34 am Reply to this comment 多拉U梦 Says:

    换季咯~!~~~~~秋装小丸子~~

  22. Sep 27th, 2008 / 10:37 am Reply to this comment Chris.Ro Says:

    从 17fav 插件开始的,相关阅读等的代码可以提供一下吗?谢谢。

  23. Sep 27th, 2008 / 10:42 am Reply to this comment underone Says:

    @锐风: 哼。。。。。谁关心你……

  24. Sep 27th, 2008 / 10:45 am Reply to this comment underone Says:

    @fireyy: 还真有点。。。不过更好的我也没想出来,当初其中一个是方的

  25. Sep 27th, 2008 / 10:52 am Reply to this comment underone Says:

    @Chris.Ro: 我觉得我说不清楚
    页面调了个js,这样

    1. <script>
    2. <!--
    3. function setTab(m,n){
    4.  var tli=document.getElementById("menu"+m).getElementsByTagName("li");
    5.  var mli=document.getElementById("main"+m).getElementsByTagName("ul");
    6.  for(i=0;i<tli.length;i++){
    7.   tli[i].className=i==n?"hover":"";
    8.   mli[i].style.display=i==n?"block":"none";
    9.  }
    10. }
    11. //-->
    12.  
    13. </script>

    然后页面中是这样的。single.php中

    1. <div id="moreinfo">
    2.  <ul class="menu0" id="menu0">
    3.   <li onclick="setTab(0,0)" class="hover">相关阅读</li>
    4.   <li onclick="setTab(0,1)" class="noneli">随机阅读</li>
    5.   <li onclick="setTab(0,2)" class="noneli">最新发布</li>
    6.  </ul>
    7.  <div id="main0">
    8.   <?php wp23_related_posts(); ?>
    9. <ul>
    10. <?php wkc_random_posts('length=15&number=7'); ?>
    11. </ul>
    12. <ul>
    13. <?php wkc_recent_posts('number=7&before=<li>&after=</li>'); ?>
    14. </ul>
    15.  </div>
    16. </div>
  26. Sep 27th, 2008 / 10:56 am Reply to this comment underone Says:

    @Black-Xstar: 公开版本肯定就是字了。。

  27. Sep 27th, 2008 / 11:06 am Reply to this comment ray Says:

    赞!!
    标题背景条的倒影很舒服。

  28. Sep 27th, 2008 / 11:30 am Reply to this comment Francis Says:

    老大,怎么祥云都上来了啊?哈哈。

  29. Sep 27th, 2008 / 12:09 pm Reply to this comment underone Says:

    @Francis: 后奥运时代的主题!

  30. Sep 27th, 2008 / 12:48 pm Reply to this comment 菠菜 Says:

    光看缩略图就知道这个主题很赞了。

  31. Sep 27th, 2008 / 3:39 pm Reply to this comment 铁仔 Says:

    希望博主的这个模板默认支持MG12的BLOCKS2上的所有插件

  32. Sep 27th, 2008 / 4:17 pm Reply to this comment underone Says:

    @铁仔: 这要求我未必做得到。。。

  33. Sep 27th, 2008 / 5:04 pm Reply to this comment Delacro Says:

    logo太可爱了!

  34. Sep 27th, 2008 / 6:19 pm Reply to this comment L.E.I Says:

    呵,比较喜欢这种元素。

  35. Sep 28th, 2008 / 2:13 am Reply to this comment dickym Says:

    快点放出来吧。。我一直用g7v6。

  36. Sep 28th, 2008 / 2:15 am Reply to this comment dickym Says:

    抓紧宛城吧。我一直用g7v6。
    http://www.xuedudou.cn
    网站被误判。不能留言

  37. Sep 28th, 2008 / 8:46 am Reply to this comment underone Says:

    现在好了

  38. Sep 28th, 2008 / 12:12 pm Reply to this comment xinyoo Says:

    看起来非常清爽...希望早日发布:)
    另外顺便提个问题,原来主题页脚的链接是
    theme G7 v6 by underone
    我如果喜欢短一点,能否改成Theme by underone(链接不变).

  39. Sep 28th, 2008 / 12:48 pm Reply to this comment lostindream Says:

    不错

  40. Sep 28th, 2008 / 2:23 pm Reply to this comment underone Says:

    @xinyoo: 可以阿

  41. Sep 28th, 2008 / 4:50 pm Reply to this comment Patrick Says:

    能不能告诉我每个留言下面的回复按钮功能是如何实现的,应该是JS调用实现的吧?
    能不能吧comments.php中的调用代码贴出来让我学习一下啊!万分感谢丸子!

  42. Sep 28th, 2008 / 5:31 pm Reply to this comment 蛋卷 Says:

    非常期待~~~~

  43. Sep 28th, 2008 / 5:37 pm Reply to this comment underone Says:

    @Patrick: 那是个插件
    叫@Reply
    http://wordpress.org/extend/plugins/reply-to/

  44. Sep 28th, 2008 / 10:57 pm Reply to this comment freeher Says:

    能否告知侧栏如何显示 gavatar 图标

  45. Sep 29th, 2008 / 12:21 pm Reply to this comment 花果山寨 Says:

    很精美的主题~期待早日推出!

  46. Sep 29th, 2008 / 1:08 pm Reply to this comment Beetle Says:

    到时候能这个此logo的PSD吗?超喜欢~

  47. Sep 29th, 2008 / 3:08 pm Reply to this comment underone Says:

    @freeher: 那是个插件
    http://wordpress.org/extend/plugins/wp-recentcomments/
    @Beetle: 应该可以吧

  48. Sep 29th, 2008 / 3:08 pm Reply to this comment adomit Says:

    能告诉我下你用的是什么主机么?
    我也想换换伯客空间.感觉有点慢...

  49. Sep 29th, 2008 / 3:09 pm Reply to this comment jianqun Says:

    Beautiful !

  50. Sep 29th, 2008 / 3:26 pm Reply to this comment patrick Says:

    @underone: 我按照这个添加,初始情况下为什么显示的只有三个标题,没有内容,只有你点击标题才显示内容

  51. Sep 29th, 2008 / 3:48 pm Reply to this comment aunsen Says:

    终于快出来了,太激动了!

  52. Sep 29th, 2008 / 6:18 pm Reply to this comment underone Says:

    @adomit: 在朋友服务器上,我也不太清楚
    @patrick: 增强版的中文工具箱装了么,CT版的

  53. Sep 29th, 2008 / 7:46 pm Reply to this comment tension Says:

    不错不错~

  54. Sep 29th, 2008 / 7:48 pm Reply to this comment patrick Says:

    @underone: 插件安装了,CSS、js、页面调用代码都无误,进入单独日志页面只有三个标题,下面什么也没有显示出来,只有你点击标题后下面才会显示相应的列表,不像你的博客上,进入日志页直接就是显示“相关阅读”的列表

  55. Sep 29th, 2008 / 10:40 pm Reply to this comment euphor Says:

    WP高手,能帮我一个忙吗?

    我的站点:
    http://www.liukaka.cn

    访问速度非常奇怪,家里同一路由器出来的2台电脑,一台xp+ie6+ff3,访问速度非快,打开只需要3秒,而另一台笔记本vista+ie7+ff3,访问非常慢,时常需要30秒左右。

    我的朋友帮我测试的时候,有的快,有的慢,真是太奇怪了,能帮帮我吗?

    我的邮箱:
    euphor@126.com

    谢谢了

  56. Sep 30th, 2008 / 8:39 am Reply to this comment ice Says:

    看上去不错哦!!期待ing~

  57. Sep 30th, 2008 / 9:23 am Reply to this comment underone Says:

    @patrick: 这我也没概念了。。。。你装了水煮鱼这个插件吗?
    http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/

  58. Sep 30th, 2008 / 9:25 am Reply to this comment underone Says:

    @euphor: 我这里很快。。这是不是WP的问题我也不清楚啊

  59. Sep 30th, 2008 / 10:18 am Reply to this comment 贝壳 Says:

    好漂亮啊···很期待V4

  60. Sep 30th, 2008 / 10:36 am Reply to this comment 东方夜谭 Says:

    来踩踩

  61. Sep 30th, 2008 / 2:33 pm Reply to this comment 小牛倌 Says:

    文字围绕图片的这个效果 实现不了。
    这个问题存在于V1-V6
    我用别的/默认模板就没有问题。

  62. Sep 30th, 2008 / 2:43 pm Reply to this comment 達西 Says:

    做SKIN一直被我认为是一项伟大的事情,就像穿衣,得体大方裁剪合体又不失雅气的主题总能让人眼前一亮。逛遍整个互联网,也就UNDERONE G系列让我有耳目一新有感觉,看着很舒服,一个不简单的简主题。谢谢。

  63. Oct 1st, 2008 / 1:39 am Reply to this comment underone Says:

    @達西: 哪有这么夸张。。。
    @小牛倌: 是有这个问题,我没写这部分的css效果

  64. Oct 1st, 2008 / 8:36 am Reply to this comment 小牛倌 Says:

    能麻烦指导一下,这部分代码的写法吗?
    比较需要。

  65. Oct 1st, 2008 / 8:42 am Reply to this comment underone Says:

    我觉得直接参考默认模版的css就可以了吧

    1. /* Begin Images */
    2. p img {
    3. padding: 0;
    4. max-width: 100%;
    5. }
    6.  
    7. /* Using 'class="alignright"' on an image will (who would've
    8. thought?!) align the image to the right. And using 'class="centered',
    9. will of course center the image. This is much better than using
    10. align="center", being much more futureproof (and valid) */
    11.  
    12. img.centered {
    13. display: block;
    14. margin-left: auto;
    15. margin-right: auto;
    16. }
    17.  
    18. img.alignright {
    19. padding: 4px;
    20. margin: 0 0 2px 7px;
    21. display: inline;
    22. }
    23.  
    24. img.alignleft {
    25. padding: 4px;
    26. margin: 0 7px 2px 0;
    27. display: inline;
    28. }
    29.  
    30. .alignright {
    31. float: right;
    32. }
    33.  
    34. .alignleft {
    35. float: left
    36. }
    37. /* End Images */
  66. Oct 1st, 2008 / 12:47 pm Reply to this comment Annie Xu Says:

    额。。。好豆的风格。

  67. Oct 1st, 2008 / 9:10 pm Reply to this comment 牧狼羊 Says:

    清新漂亮,不错不错,期待!

  68. Oct 1st, 2008 / 9:37 pm Reply to this comment 小牛倌 Says:

    @underone: 果然是好了,谢谢。

  69. Oct 2nd, 2008 / 11:46 am Reply to this comment LD Says:

    不错,什么时候有的下?

  70. Oct 2nd, 2008 / 4:08 pm Reply to this comment 锐风 Says:

    感觉某些地方的设计很眼熟啊.. = =.

  71. Oct 2nd, 2008 / 6:05 pm Reply to this comment underone Says:

    @锐风: 哪里啊。。

  72. Oct 2nd, 2008 / 6:08 pm Reply to this comment xiaoniu Says:

    呵呵不错期待ing

  73. Oct 2nd, 2008 / 10:48 pm Reply to this comment Beetle Says:

    最近翻了N多template,还是期待v4……希望能在me的host被unblock前看到~~

  74. Oct 3rd, 2008 / 1:36 am Reply to this comment dickym Says:

    等死我了...
    最好做出三栏的..嘿嘿

  75. Oct 3rd, 2008 / 6:01 pm Reply to this comment alft Says:

    很期待, 希望仍然是两栏式的.

  76. Oct 3rd, 2008 / 10:39 pm Reply to this comment Tasnik Says:

    你豆瓣的9点是怎么弄的,我的代码和你不一样,差一点:

    要把WWW改成9就显示不出来了,WWW时显示的图片大你一倍。帮帮忙。谢谢。

  77. Oct 3rd, 2008 / 11:24 pm Reply to this comment mg12 Says:

    新的逗号比较好看...

    P.S. 我的 Blog 换域名了... http://www.neoease.com/
    如果能帮忙改一下链接就好了 :mrgreen: ... Thanks a lot.

  78. Oct 3rd, 2008 / 11:40 pm Reply to this comment Tasnik Says:

    OK了,自己的数字ID有点问题.

  79. Oct 4th, 2008 / 3:18 am Reply to this comment Tasnik Says:

    'archives'页面的代码能借我用下吗? 或者你告诉我Simple Archive插件如何使用,水煮鱼写的真是看不懂说得什么意思。

  80. Oct 4th, 2008 / 10:02 am Reply to this comment 伊兹拉莱 Says:

    很漂亮的主题,能共享不?

  81. Oct 4th, 2008 / 7:24 pm Reply to this comment David Says:

    很赞啊

  82. Oct 5th, 2008 / 10:00 am Reply to this comment lulu Says:

    大大说心里话 挺喜欢这个主题的但是我最喜欢的还是大大没能完成的 纯css的v3 不知道大大啥时候完成v3阿

  83. Oct 5th, 2008 / 12:24 pm Reply to this comment nAODI Says:

    请问丸子哥,评论里头那个“@某人”的效果是用什么插件实现的吗?

  84. Oct 5th, 2008 / 4:01 pm Reply to this comment underone Says:

    @mg12: 换好了:)你真下得去狠心啊
    @lulu:V3怎么没完成。。。
    @nAODI: http://wordpress.org/extend/plugins/reply-to/
    这个

  85. Oct 5th, 2008 / 4:08 pm Reply to this comment underone Says:

    @Tasnik: 我用的是这个插件啊
    http://www.viper007bond.com/wordpress-plugins/clean-archives-reloaded/

  86. Oct 5th, 2008 / 11:54 pm Reply to this comment alft Says:

    我用的g7系列的皮肤, 但发现一个问题, 就是在某一个分类中查看日志时, 日志的图片和"read more"之类都不会显示, 但是在查看全部日志时就没有这个问题, 换wp的默认皮肤就没这个问题了, 应该就是皮肤的问题. underone可以看一下这个问题怎么解决吗?

  87. Oct 6th, 2008 / 8:37 am Reply to this comment ernsky Says:

    告知一下,我用了你的主题,但作了修改,配色可能差了点,希望你不要介意。
    此外,我浏览V6 final那个页面,但留言部分,显示不完整,虽然我没有那么多评论,但我不知这是不是BUG,

  88. Oct 6th, 2008 / 9:12 am Reply to this comment underone Says:

    @alft:应该装了中文工具箱就好了吧?
    @ernsky: 你说的我也发现了,但是我也没明白是为什么……

  89. Oct 6th, 2008 / 4:32 pm Reply to this comment 冰水 Says:

    真漂亮,期待中。。。

  90. Oct 6th, 2008 / 6:52 pm Reply to this comment tasnik Says:

    你告诉我的插件已经装上了,只是不知道怎么让它显示在Archives页面里。
    另外,多受累快出V4吧。
    郑重感谢!

  91. Oct 6th, 2008 / 6:57 pm Reply to this comment tasnik Says:

    真是笨到不行,你有介绍如何使用的文章。那就得更加感谢了。不过问题还是有不少,再问一个:怎么控标签云显示的数量?我用的Simple Tagging插件。

  92. Oct 6th, 2008 / 10:58 pm Reply to this comment fansy Says:

    嗯,很好看,等着用,加油啊!!

  93. Oct 7th, 2008 / 12:34 am Reply to this comment harde Says:

    顶顶顶~~~~
    一直跟踪
    目前使用V6
    v4出了
    第一时间换上 HUHU

  94. Oct 7th, 2008 / 9:17 am Reply to this comment underone Says:

    @tasnik: 我建议你去WFANS论坛问问……wfans.org
    那个插件的后台就包括数量的控制了已经。

  95. Oct 7th, 2008 / 10:49 am Reply to this comment houfei Says:

    underone,你好。
    我用G7V6有点问题,之前一直用的好好的,突然有一天。。侧边栏就跑到内容下面去了。
    然后我重新下了一个,再重新安装,就变成现在的效果了(背景不见了)
    http://www.houfei.name/blog
    能帮我看看什么问题么?

  96. Oct 7th, 2008 / 12:35 pm Reply to this comment wangyh Says:

    http://www.pjhome.net/default.asp
    UO看看,似乎没写版权?

  97. Oct 7th, 2008 / 1:55 pm Reply to this comment underone Says:

    @wangyh: 好像还真是……我去提醒一下
    不过不加我也没辙
    @houfei: 侧边栏变动都是因为内容部分超宽了。
    你现在的问题,我在服务器上没法找到可以浏览的背景图片,我也不知道为什么,你看看是不是所有的图片都全?

  98. Oct 7th, 2008 / 4:33 pm Reply to this comment houfei Says:

    都全的,我反复下载上传了好几遍。。。
    背景图片是body_bg.png这个文件么?
    这个文件空间里是有的。

  99. Oct 7th, 2008 / 5:56 pm Reply to this comment dickym Says:

    呵呵。我用的g7v6.经常发文章超出宽度。郁闷。。
    能不能宽点。。随便发图都超

  100. Oct 7th, 2008 / 10:40 pm Reply to this comment rain Says:

    超级喜欢你的主题,所有博客都用你的主题,加油

    继续简约风格哦

  101. Oct 7th, 2008 / 10:41 pm Reply to this comment rain Says:

    哇,默认头像也不错哦,(*^__^*) 嘻嘻……

  102. Oct 8th, 2008 / 9:13 am Reply to this comment underone Says:

    @houfei: 那我真是不理解了。。

  103. Oct 8th, 2008 / 9:13 am Reply to this comment underone Says:

    @dickym: 500.。。。

  104. Oct 8th, 2008 / 10:29 am Reply to this comment Spirit Says:

    G7V6这个主题很帅,这个主题的 Logo 太棒了。。

  105. Oct 8th, 2008 / 12:45 pm Reply to this comment 52youpin Says:

    非常期待啊!谢谢博主!

  106. Oct 8th, 2008 / 11:09 pm Reply to this comment seo Says:

    又见祥云,挺漂亮的

  107. Oct 9th, 2008 / 11:29 am Reply to this comment underone Says:

    @patrick: 你在css里添加
    #main0 ul.related_post {
    display: block;
    }
    再试试

  108. Oct 9th, 2008 / 7:39 pm Reply to this comment wangyh Says:

    pj,作为较火的博客软件在中国,也这么漠视版权啊。
    其实我觉得pj的人品并不好以前discuz.net有个投票,问“MEYU”主机怎么样,就PJ一人投了差,原因就是MEYU有一个叫“TT”的韩国博客软件的中国代理权和PJ的博客软件有“竞争对手”的关系……
    囧一个!

  109. Oct 9th, 2008 / 8:04 pm Reply to this comment fengbjhqs Says:

    好看 加油了哦

  110. Oct 9th, 2008 / 8:11 pm Reply to this comment underone Says:

    @wangyh: 咳,反正我也提醒了一句,就这样了,起码有个underone的名字,那主题应该也是别人修改发布的,不能说有恶意。
    我还是抱着有人用就开心的态度。

  111. Oct 11th, 2008 / 6:39 am Reply to this comment maxsailor Says:

    流口水的说~~

  112. Oct 12th, 2008 / 8:03 am Reply to this comment 土豆网 Says:

    简洁精致,太漂亮了,什么时候出啊,我会经常来看看的

  113. Oct 12th, 2008 / 9:42 am Reply to this comment Semor Says:

    什么时候能出啊

  114. Oct 12th, 2008 / 1:05 pm Reply to this comment zzl Says:

    问下 丸子 用的是什么 广告管理插件 呢??

  115. Oct 13th, 2008 / 9:23 am Reply to this comment underone Says:

    http://mightyhitter.com/main-page/plugins/mightyadsense/
    是这个

  116. Oct 13th, 2008 / 5:36 pm Reply to this comment zzl Says:

    谢谢热心的 丸子 。

  117. Oct 13th, 2008 / 5:42 pm Reply to this comment zzl Says:

    不过链接失效了~

  118. Oct 13th, 2008 / 6:36 pm Reply to this comment underone Says:

    @zzl: 官方插件库里应该有,叫MightyAdsense

  119. Oct 14th, 2008 / 6:09 pm Reply to this comment zzl Says:

    No results found.
    没有撒~
    要不然发到邮箱 zzliam@qq.com 给我吧!

  120. Oct 14th, 2008 / 7:04 pm Reply to this comment underone Says:

    发了

  121. Oct 14th, 2008 / 7:54 pm Reply to this comment SEO Says:

    看了今天博主的日志估计还要等些时日啊,期待发布

  122. Oct 14th, 2008 / 9:21 pm Reply to this comment deeplane Says:

    最好能弄个宽点的,看去大气点

  123. Oct 21st, 2008 / 9:27 am Reply to this comment 醉倚西风 Says:

    期待发布呵呵

  124. Oct 21st, 2008 / 3:45 pm Reply to this comment underone Says:

    这个月估计没戏了

  125. Oct 21st, 2008 / 5:44 pm Reply to this comment zqtai Says:

    我是新手,有些问题不懂,希望能得到解答。
    1.要使用时间的格式~2008/09/26/为日记链接,是否需要开启静态页面才能用?

    2.开启静态是在 后台勾选 好,还是用 插件 好?或是用 插件 也必需 后台勾选 ?

    3.如果我现在有很多日记了,但是动态页面,现在想改静态应该怎么做?

    4.如果直接换静态,那以前的链接将失效吗?那会致使失去搜索引擎的收录吧?

    5.页面静态产生的容量有多大?比如以你现在的日记量占的多大的空间呢?

    希望underone有时间回答

  126. Oct 22nd, 2008 / 9:24 am Reply to this comment underone Says:

    必须后台开启静态链接,还要服务器支持。
    那只是静态链接而已,不是真正的静态页面。
    动态改静态,直接改了就可以,原来的链接会失效,但是有转向插件,你搜搜。
    BTW这样的问题建议你去Wfans.org论坛问问,那边达人多

  127. Oct 22nd, 2008 / 4:34 pm Reply to this comment yanghui Says:

    要是字体大一点就好了 我喜欢这个简洁的风格

  128. Oct 23rd, 2008 / 2:35 pm Reply to this comment utom Says:

    比我的好看多了...

  129. Oct 30th, 2008 / 11:04 am Reply to this comment 小鱼 Says:

    非常棒,期待啊,我用的就一直是您的大作啊,左边栏输入内容的宽度如果可以在多一点点就好啦,嘻嘻!

  130. Nov 2nd, 2008 / 12:08 pm Reply to this comment 李小龙传奇 Says:

    非常期待,什么时候出啊

Leave a Reply