Envato Marketplace Search

Retrieves items from Envato Marketplace's using the search API and displays the results as an unordered lists of linked 80px thumbnails.

Author:Derek Herman (profile at wordpress.org)
WordPress version required:3.0
WordPress version tested:3.1.4
Plugin version:1.0.1
Added to WordPress repository:29-03-2011
Last updated:30-03-2011
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:3
Plugin URI:http://wordpress.org/extend/plugins/envato-ma...
Total downloads:732
plugin download
Click to start download

The Envato Marketplace Search plugin retrieves items from one or all Envato Marketplace's using the search API and displays the results as an unordered lists of linked 80px thumbnails. On your blogs search page add <?php if ( function_exists( 'envato_marketplace_search' ) ) { envato_marketplace_search(); } ?>. The function takes in 8 optional arguments ( limit, site, type, query, referral, search, cache, & echo ). Query is automatically built using the get_search_query() function but you could pass in your own query if you really felt the need. Search defaults to true and means that you want results only on search pages (advanced use for those who understand the application). Cache is for situations where you plan on setting the query manually and want to limit the API calls. Use cache with CAUTION, each query will be cached in your database if set to true (default is false). Below are examples of how you would use the plugin to return search results.

These two are equivalent to each other:

envato_marketplace_search( 'limit=2&site=themeforest&type=site-template&referral=valendesigns' );
envato_marketplace_search( array( 'limit' => 2, 'site' => 'themeforest', 'type' => 'site-template', 'referral' => 'valendesigns' ) );