开发者 |
cmmarslender
dillonmccallum envoke |
---|---|
更新时间 | 2017年6月1日 06:00 |
PHP版本: | 3.5.1 及以上 |
WordPress版本: | 4.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/envoke-supersized
directory to the /wp-content/plugins/
directory.You can use as few or as many as you would like when using the Supersized Slides post type. Per post overrides currently only support a single image, but supporting multiple images on a per post basis is a possibility in the future, if enough people want the feature.
Let us know. You can contact us through our website Envoke Design or create an issue using our Issue Tracker
The plugin currently limits the number of slides that will load on any given page to 50. For most people, this is more
than plenty, but if you need to increase this, there is a filter available for this purpose - 'enss-max-images'. For
example, to increase the number of images to 75, you could add the following line to your functions.php file:
add_filter( 'enss-max-images', function( $number ) { return 75; });
By default, only posts and pages have the override meta box available. To add it to other post types, you can use the 'enss-override-post-types' filter. The filter gets passed an array of supported post types. To add one, you can just append the post type to the array, then return the modified array. See this issue for an example of how to implement this.