我正在使用默认的WordPress Gallery(以及Cleaner Gallery插件)来显示一些图像。画廊似乎没有的一件事是分页。我想做的是在6张图片之后添加上一个和下一个链接来浏览页面。
话虽如此,有几个插件声称添加了此功能,但它们都是在没有新媒体库的情况下开发的,而新媒体库是WordPress 3.5的标准配置。我不想改变用户的体验。。。我只是想通过函数添加功能。php或循环本身。我可以将同样的东西应用到所有的库中,因此如果修复程序能够以某种方式找到库的短代码,那就太棒了!不知道该怎么做,只是在这里大声思考。
非常感谢您的帮助。
生成的代码如下所示:
<div id=\'gallery-234-1\' class=\'gallery gallery-234\'>
<div class=\'gallery-row gallery-clear\'>
<dl class=\'gallery-item col-3\'>
<dt class=\'gallery-icon\'><a href=\'http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-11.jpg\' title=\'gallery-(11)\'><img width="184" height="184" src="http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-11-184x184.jpg" class="attachment-thumbnail" alt="gallery-(11)" /></a>
</dt>
</dl>
<dl class=\'gallery-item col-3\'>
<dt class=\'gallery-icon\'><a href=\'http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-10.jpg\' title=\'gallery-(10)\'><img width="184" height="184" src="http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-10-184x184.jpg" class="attachment-thumbnail" alt="gallery-(10)" /></a>
</dt>
</dl>
<dl class=\'gallery-item col-3\'>
<dt class=\'gallery-icon\'><a href=\'http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-5.jpg\' title=\'gallery-(5)\'><img width="184" height="184" src="http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-5-184x184.jpg" class="attachment-thumbnail" alt="gallery-(5)" /></a>
</dt>
</dl>
</div>
<div class=\'gallery-row gallery-clear\'>
<dl class=\'gallery-item col-3\'>
<dt class=\'gallery-icon\'><a href=\'http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-4.jpg\' title=\'gallery-(4)\'><img width="184" height="184" src="http://new.joshrodg.com/wp-content/uploads/2012/09/gallery-4-184x184.jpg" class="attachment-thumbnail" alt="gallery-(4)" /></a>
</dt>
</dl>
</div>
</div>
谢谢,乔希