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);
测试可以,没发现啥异常。先用着吧。
Popularity: 38%








