>
Download This Plugin | |
Download Elegant Themes | |
Name | EDD Featured Downloads |
Version | 1.0 |
Author | Andrew Munro - Sumobi |
Rating | 100 |
Last updated | 2013-05-17 01:57:00 |
Downloads |
5734
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
EDD Featured Downloads plugin added 2 bytes of resources to the Home page and 15 bytes of resources to the sample Post page.
EDD Featured Downloads plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! EDD Featured Downloads plugin ads no tables to your Wordpress blog database.This plugin requires Easy Digital Downloads. It's aimed at developers/clients who need to show a list of featured downloads.
In true EDD fashion, hooks are provided for developers to fine tune the HTML if needed.
The following shortcode is available to display your featured images. Most of the shortcode attributes from the main [downloads] shortcode are available to use
[edd_featured_downloads]
The following template tag is available for showing the featured downloads anywhere in your theme.
if( function_exists( 'edd_fd_show_featured_downloads') ) {
edd_fd_show_featured_downloads();
}
The template tag uses the exact same HTML as the shortcode so can be modified accordingly by overriding the EDD templates.
To build your own query using WP_Query you can use the meta_key
parameter with a value of edd_feature_download
. The following example builds a simple unordered list with all the featured downloads.
<?php
$args = array(
'post_type' => 'download',
'meta_key' => 'edd_feature_download',
);
$featured_downloads = new WP_Query( $args );
if( $featured_downloads->have_posts() ) : ?>
<ul>
<?php while( $featured_downloads->have_posts() ) : $featured_downloads->the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a>
</li>
<?php endwhile; ?>
</ul>
<?php endif; wp_reset_postdata(); ?>
Looking for a free theme for Easy Digital Downloads?
http://sumobi.com/shop/shop-front/
Shop Front was designed to be simple, responsive and lightweight. It has only the bare essentials, making it the perfect starting point for your next digital e-commerce store. It’s also easily extensible with a growing collection of add-ons to enhance the functionality and styling.
Stay up to date
Become a fan on Facebook http://www.facebook.com/pages/Sumobi/411698702220075
Follow me on Twitter http://twitter.com/sumobi_