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...

@patembe
I use Quick Comments plugin LOL :p
mg12blog的博客文章收起功能 能否开源?
@Bruce
嘿嘿.看哈我的博客...收起功能
请问博主,我装了你的AJAX Comment Pager,并且按照要求步骤装的.
但装好设置后博客没有显示没有效果,请问是怎么回事?
博客首页也没有显示有留言页面.
OK.已经搞定```
听说你22号来北京?还是你本来就是北京的? 我24号飞沈阳25号去北京。。。为什么大会不晚一点呢 呜呜呜呜。。。。
抗议抗议、。。。。。我也要去
你好,很喜欢你写的关于inove主题的文章,很实用,但是我还有个问题,想请教一下。
我用inove的主题时发现里面有一个 Current Theme Options
然后进去
在Menubar 后面,有两个选项
1.Show pages as menu.
2.Show categories as menu.
我想把它都选上,也就是,让他们同时出现在Menubar
不知道应该怎么改……
如果改了,又应该怎么调整顺序呢?
@adeshen
我这次也想问这个问题 想让两个同时出现在菜单栏里 能否下个版本添上?
等待你演讲的ppt,正听你的演讲呢,一群人过来说要买T-shirt,结果没听全
老大,你的iNove怎么在首页显示链接啊?
非常感谢提供这么好的主题~
大侠,能不能帮忙看看
http://blog.sky-ec.com/feed/ 故障出在哪?
这个我会.老大把用菜单显示子分类和子页给内置了,实在很爽.新版本建议把那两个单选框改成复选框.但要我自己弄成复选框就比较复杂了,我要用到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 老大.
错了, 抱歉. 是
//页面
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');}
调换顺序的话把两部分换一下先后.
好担心超时, 我是新手改代码好慢的, 老大能不能把这个超时限制为最后一次编辑30分钟以后不可以再编辑,而不是首次发表30分钟以后.
@foolant
你说的 "超时限制" 是什么意思?
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.
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!
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
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.
站长您好:
您的版面设计的非常有水平喔!
我有个小问题想请教一下站长,
就是上面选单点选的时候都会出现一个文字方块,
是否可以请教该如何修改才能让文字方块消失!
图示如下,请站长指点一二,感谢!
http://img139.imageshack.us/img139/8812/wordk.jpg
博主你好,请问,为什么我的google广告放到侧边栏里显示不出来呢?代码加进去了,但感觉跟没加一样
我是新手,正在使用你的inove模板,非常漂亮!但是这里有一小小的问题需要你帮忙解决。
我想把网站文章标题放在网站标题的前面,但是INOVE主题默认的是把博客名字放在前面。
能帮忙看一下吗?
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