Image Browser

Allows you to browse all images on your blog by date and/or category, with the
ability to also search image captions for keywords.
Options
The image browser plugin has 3 places where you can specify options.
- adminstration menu
- shortcode
- url query parameters
These are listed in ascending order of precedence, that is, url query
parameters override any shortcode parameters, which override default options
specified in the administration settings page.
Default options are listed below
$defaults = array(
'limit' => 30,
'cols' => 3,
'size' => 'thumbnail',
'year' => 0,
'month' => 0,
'category' => 0,
'keywords' => '',
'sortby' => 'post_date',
'sortorder' => 'DESC',
'page' => 1
);
-
limit – how many images to display at one time
-
cols – the number of columns for the image browser
-
size – size of picture to display. Available options:
- thumbnail (default)
- medium
- large
- full
-
year – retrieve images from this year
- 0 means all years (default)
- current displays the current year
-
month – retrieve images from this month
- 0 means all months (default)
- current displays the current month
-
category – retrieve images whose post_parent belongs to this category
- 0 means all categories (default)
-
keywords – Search image captions for these keywords
- 0 means all categories (default)
-
sortby – Field to sort by. Available options:
- post_date (The image date) (default)
- post_title (The image title)
- post_excerpt (The image caption)
-
sortorder – Order to sort by. Available options:
- ASC – ascending order
- DESC – descending order
- RANDOM – random order
-
page – which page to show
Example
Here is an example shortcode to display all images from 2009 that belong to
posts with category 10
[imagebrowser year=2009 category=10]
Download & install the zip archive
The plugin package installer can be downloaded from the WP2E project tab called “code”.
1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.
2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.
3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.
- Give a name to your project
- Download the Installer Package
- Install & activate the plugin locally
- Install the suggested dependencies
Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.



