NextGEN gallery是个很不错的wordpress相册插件。
新版本的wordpress有了一个the_excerpt的方法可以用,原来就有?不知道。
the_excerpt主要是调用原来的摘要部分,供模板调用。但是和the_content的区别是,the_excerpt里面不支持nextgen-gallery(NGG)的singpic,gallery等标签不能用。如果在模板里面用了the_excerpt,但是又想显示图片就不方便了。
用的是1.1.0版本,查了一下代码,找到
lib\shortcodes.php
的
class NextGEN_shortcodes
大概在18行,看到一行注释,说如果在the_excerpt里面用会有不期望的输出。如果你高兴就去掉下面的注释。
// add_filter('the_excerpt', array(&$this, 'convert_shortcode')); // add_filter('the_excerpt', 'do_shortcode', 11);
改成
add_filter('the_excerpt', array(&$this, 'convert_shortcode')); add_filter('the_excerpt', 'do_shortcode', 11);
测试可以,没发现啥异常。先用着吧。
——————–
新的版本已经去掉了这2行,要自己加进去。
《 “如何在wordpress的the_excerpt中使用nextgen-gallery(NGG)图片” 》 有 7 条评论
very good info.
That’s a good intro!
the_excerpt 是怎么用的?
就是摘要,有些模板里面会调用发布blog里面的摘要。ngg的代码默认是不能用的
恩,长见识了,收藏收藏!
你的站我已经添加连接。
好代码!!