Plugin Name
开发者 |
dutchguys
|
更新时间 |
2010年10月27日 01:55 |
PHP版本: |
2.5 及以上 |
WordPress版本: |
3.0.1 |
详情介绍:
In my blog I use pages for the gallery. I have a main index Gallery that has children for each year which contain the actual gallery pages.
I wanted to display a random image from this gallery and couldn't find a plugin to do it so I wrote my own. Usage is really simple:
The following line in your template <?php echo DG_Random_Image(array('title' => 'Gallery', 'class' =>'alignleft', 'x' => 125, 'y' => 125)); ?>
or just use the widget.
title is the name of the index page, no pictures will be taken from this page, only from childpages.
class is an optional class to assign to the image
x is the width to assign to the thumbnail
y is the height to assign to the thumbnail
It will output the thumbnail for this picture with the given dimensions, linked to the page it belongs to.
安装:
Installation is easy:
- Upload
DG_Random_Image
folder and it's contents to /wp-content/plugins/
directory
- Activate the plugin through the 'Plugins' menu in WordPress
- Place
<?php echo DG_Random_Image(array('title' => 'Gallery', 'class' =>'alignleft', 'x' => 125, 'y' => 125)); ?>
in your templates
更新日志:
1.01 =
- Cleanup of extra folder
- Even easier to use with a widget
= 1.0 = Initial Release