Limit parameter for gallery shortcode
开发者 |
nboehr
|
更新时间 |
2016年12月9日 05:07 |
PHP版本: |
4.0 及以上 |
WordPress版本: |
4.4.2 |
版权: |
GPLv2 or later |
版权网址: |
版权信息
|
详情介绍:
By default, the gallery shortcode does not allow to limit the number of images displayed. This makes sense when you for example include all images attached to a post like this:
[gallery id="4"]
When this plugin is activated, you may use:
[gallery id="4" limit="3"]
and it will only display three images.
You can also use an offset parameter:
[gallery id="4" limit="3" offset="1"]
Will display at most three images, starting at the second.
Note that this plugin is a little bit of a hack.
安装:
- Upload the
gallery-limit.php
file to the plugin directory.
- Activate the plugin.
- Done.
更新日志:
2.0
Added offset parameter.
1.0
First release.