限制 WordPress 输出的图库项目数量
这是我正在使用的代码,我需要一种方法将其限制为 2 个项目而不是所有项目。我知道没有本地方法可以使用图库短代码来完成此操作,但是有没有我可以使用的插件或替代方法?
<?php echo do_shortcode('[gallery id="25"]'); ?>
That's the code I'm using, I need a way to limit it to 2 items instead of all items. I know there is no native way to do it with the gallery shortcode, but is there a plugin or alternative method I could use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在模板的functions.php中重写图库短代码函数并执行类似的操作
you can rewrite the gallery shortcode function in your template's functions.php and do something like this