FAQ

[主题] 如何在主题中实现滑动菜单导航栏?
以下是一个在 WordPress 中添加 LavaLamp 菜单的教程:
http://www.neoease.com/lavalamp-for-wordpress-users/

[插件] 使用 WP-PageNavi 插件后, 在 IE 中页码的内边距很大. 为什么会这样? 如何解决?
WP-PageNavi 插件的 2.40 版本在页码链接的文本中加入了特殊字符, IE 不能正常处理, 所以显示成页面内边距很大. 解决办法是使用老版本的插件, 推荐使用 2.31 版.

[主题] 如何在侧边栏显示不同的内容?
请参考以下文章, 内附详细说明.
http://www.neoease.com/show-different-widgets-in-wordpress-sidebar/

[主题] 为什么我使用中文修改代码后页面会出现乱码?
本人发布的所有文件均以 UTF-8 为编码, 请使用支持 UTF-8 编码的编辑器进行编辑. 如果你确实不知道那是什么, 那么请下载 gedit 来进行编辑. gedit 官方网站 (请下载 Windows 版本, 用 Linux 和 Mac 的朋友应该不存在乱码问题)

[主题] 如何在博客 index 页面显示文章摘要, 而非文章的全部内容?
方法有二:
1. 打开 index.php 文件, 找到 the_content, 并将 the_content(...) 改成 the_excerpt().
2. 在撰写文章的时候在文章内加入 标签 (请注意添加位置, 以免造成页面缺失标签), Visual 编辑模式下可以点击 'Insert More tag' 按钮 (快捷键 Alt+Shift+T) 添加.

[主题] 如何将 Google CSE 的搜索结构显示在 WordPress 的内嵌页面?
来自我爱水煮鱼的处理方法:
http://fairyfish.net/2008/04/29/integrate-google-custom-search-into-wordpress/
使用 iNove 主题的朋友可以参考 whisperer 的教程:
http://www.whisperer.name/2009/09/improve-the-google-custom-search-results-of-inove/

to be continued...

  1. patembe | #51
    2009-07-31 14:07
  2. Bruce | #52
    2009-08-03 10:31

    mg12blog的博客文章收起功能 能否开源? :oops:

  3. wanwan | #53
    2009-08-03 12:49

    @Bruce
    嘿嘿.看哈我的博客...收起功能 :razz:

  4. Kn1ght | #54
    2009-08-07 11:00

    请问博主,我装了你的AJAX Comment Pager,并且按照要求步骤装的.
    但装好设置后博客没有显示没有效果,请问是怎么回事?
    博客首页也没有显示有留言页面. :idea:

  5. Kn1ght | #55
    2009-08-07 15:09

    OK.已经搞定```

  6. Masklins | #56
    2009-08-17 16:33

    听说你22号来北京?还是你本来就是北京的? 我24号飞沈阳25号去北京。。。为什么大会不晚一点呢 呜呜呜呜。。。。

  7. Masklins | #57
    2009-08-17 16:33

    抗议抗议、。。。。。我也要去

  8. adeshen | #58
    2009-08-19 10:18

    你好,很喜欢你写的关于inove主题的文章,很实用,但是我还有个问题,想请教一下。

    我用inove的主题时发现里面有一个 Current Theme Options

    然后进去

    在Menubar 后面,有两个选项

    1.Show pages as menu.
    2.Show categories as menu.

    我想把它都选上,也就是,让他们同时出现在Menubar

    不知道应该怎么改……

    如果改了,又应该怎么调整顺序呢?

  9. Masklins | #59
    2009-08-20 18:50

    @adeshen
    我这次也想问这个问题 想让两个同时出现在菜单栏里 能否下个版本添上?

  10. dreamtale | #60
    2009-08-23 12:49

    等待你演讲的ppt,正听你的演讲呢,一群人过来说要买T-shirt,结果没听全

  11. nallan | #61
    2009-09-07 08:18

    老大,你的iNove怎么在首页显示链接啊?

  12. Felix | #62
    2009-09-08 13:04

    非常感谢提供这么好的主题~
    大侠,能不能帮忙看看

    http://blog.sky-ec.com/feed/ 故障出在哪?

  13. foolant | #63
    2009-09-10 18:59

    这个我会.老大把用菜单显示子分类和子页给内置了,实在很爽.新版本建议把那两个单选框改成复选框.但要我自己弄成复选框就比较复杂了,我要用到jQuery的. 或者要是只要两个都显示,添加一个单选项的话就容易多了.

    这里说下简单的, 再加个单选框上去. 要修改两个文件: inove/functions.php 查找 Show categories 找到
    <?php _e('Show categories as menu.', 'inove'); ?>
    这一行,在下一行的</label>后面加上:
    <label>
    <input name="menu_type" type="radio" value="all" <?php if($options['menu_type'] == 'all') echo "checked='checked'"; ?> />
    <?php _e('Show both in menu.', 'inove'); ?>
    </label>

    然后在inove/templates/header.php 里面查找 categories 找到
    if($options['menu_type'] == 'categories') {
    这一行 然后把
    if($options['menu_type'] == 'categories') {
    wp_list_categories('title_li=0&orderby=name&show_count=0');
    } else {
    wp_list_pages('title_li=0&sort_column=menu_order');
    }

    这几行换成..嗯,两种换法, 页面在前面
    if(($options['menu_type'] == 'pages')||($options['menu_type'] == 'all')) {
    wp_list_pages('title_li=0&sort_column=menu_order');
    }
    wp_list_categories('title_li=0&orderby=name&show_count=0');
    }
    分类在前面(一般人不需要的吧,分类可是会长大的吖)
    if(($options['menu_type'] == 'categories')||($options['menu_type'] == 'all')) {
    wp_list_categories('title_li=0&orderby=name&show_count=0');
    }
    wp_list_pages('title_li=0&sort_column=menu_order');
    }

    OK. 收工.以后在后台选上"Show both in menu." 就可以了. 是不是比要给别的什么主题添加个带子菜单的分类菜单还是页面菜单什么的容易多了.当然这要感谢 mg12 老大.

  14. foolant | #64
    2009-09-10 19:35

    错了, 抱歉. 是
    //页面
    if(($options['menu_type'] == 'pages')||($options['menu_type'] == 'all')) {
    wp_list_pages('title_li=0&sort_column=menu_order');}

    //分类
    if(($options['menu_type'] == 'categories')||($options['menu_type'] == 'all')){
    wp_list_categories('title_li=0&orderby=name&show_count=0');}

    调换顺序的话把两部分换一下先后. :|

  15. foolant | #65
    2009-09-10 19:54

    好担心超时, 我是新手改代码好慢的, 老大能不能把这个超时限制为最后一次编辑30分钟以后不可以再编辑,而不是首次发表30分钟以后.

  16. mg12 | #66
    2009-09-11 00:40

    @foolant
    你说的 "超时限制" 是什么意思?

  17. Cuong | #67
    2009-09-17 15:31

    Hi mg12,

    I love your theme.

    I would like to display both categories and pages as menu. Would you please make an option that allows users choose both.

    Thanks

    @ foolant: Is that your comment about this? Sorry I can not read Chinese text now.

  18. Cuong | #68
    2009-09-17 15:40

    Hi,

    Now I can do it with Google Translation. Wow the Foolant's comment is exactly what I wanna do.

    Thanks much!

    Hahaha such a lucky day!

  19. Celi Audi | #69
    2009-09-25 09:05

    Hi, I'm getting an error message when submitting a comment (testing as a subscriber), this is: "sorry, no posts match your criteria". Could you please tell me why? This doesn't happen if I do the same as the administrator role.

    Thank you

  20. chipito | #70
    2009-10-02 03:01

    Hi. I am hoping someone can help me. I am using the iNove theme, and I really like it! But, i have a problem.
    When i make a Page, i cannot see it UNLESS i use the Page without Sidebar template. If i use the default template, i see a post instead.
    I gladly appreciate any help, because I am very new at WordPress.
    Thank you.

  21. kid | #71
    2009-12-07 16:46

    站长您好:

    您的版面设计的非常有水平喔!

    我有个小问题想请教一下站长,
    就是上面选单点选的时候都会出现一个文字方块,
    是否可以请教该如何修改才能让文字方块消失!

    图示如下,请站长指点一二,感谢!

    http://img139.imageshack.us/img139/8812/wordk.jpg

  22. 一路同行 | #72
    2009-12-16 10:54

    博主你好,请问,为什么我的google广告放到侧边栏里显示不出来呢?代码加进去了,但感觉跟没加一样

  23. jerry | #73
    2010-03-08 13:34

    我是新手,正在使用你的inove模板,非常漂亮!但是这里有一小小的问题需要你帮忙解决。
    我想把网站文章标题放在网站标题的前面,但是INOVE主题默认的是把博客名字放在前面。
    能帮忙看一下吗?

  24. dagi | #74
    2010-03-19 16:40

    I try to translate the discussion to English but didn't work .. what kind of fonts you guys using and why I couldn't read in English? inove theme is popular around the world I think the support theme should be in English

  25. 毛球hero | #75
    2010-05-25 22:45

    请问 Reply | Quote 这个用什么插件实现呢? :?: 我的博客上也想加个回复引用

  26. km | #76
    2010-08-06 12:17

    我的网站今天被百度K了,能不能帮我看下是什么原因
    从7月15号起,百度开始不收录我的站了,我也不知道怎么回事,7月15号之后我开始找一些外链,有可能是加入养殖场了。昨天看到了你的模板,就改了下,没想到今天立刻就被K了,

  27. mg12 | #77
    2010-08-19 20:29

    @Celi Audi , @chipito
    Hey, could you please show me your site?

    @kid
    图片打不开, 无法跟进.

    @jerry
    请看以下文章:
    http://www.neoease.com/wordpress-seo-tips/

    @km
    被百度 K 站我表示不知道, 百度人工干预很多, 建议你去问百度工作人员.

  28. 有点蓝 | #78
    2010-09-02 11:41

    很自豪的说:我是来求助的,http://8lu.info/666279.htm,help~

Comment pages
1 2 863
  1. No trackbacks yet.

Twitter Email feed
RSS feed