开发者 | unclepear |
---|---|
更新时间 | 2010年12月20日 23:19 |
PHP版本: | 3.0 及以上 |
WordPress版本: | 3.0.3 |
For any kind of information or support, feel free to reach us at http://unclepear.com/easygallerymanager
You can provide your own style for prev/next buttons by using css.
/ set an image for next button /
.slideshow .slideshow_controls .slideshow_controls_next {
background: url(here_the_path_to_the_image_file.png) no-repeat;
width: 68px;
height: 68px;
}
/ hide the text /
.slideshow .slideshow_controls .slideshow_controls_next span
{
display: none;
}
= How can I manually include Easy Gallery Manager?
If you choose not to automatically include the gallery into the post/page content, you can use some functions like:
<?php the_easy_gallery_manager() ?>
or
<?php echo get_the_easy_gallery_manager() ?>
If you want to know if the gallery is enabled for the post inside The Loop
<?php if(easy_gallery_manager_is_enabled()) { // gallery enabled } ?>