Popup Maker
94Want to boost sales & marketing efforts? Use your favorite forms & builder. Unlimited popups & imp...
Easily feature your downloads
Easy Digital Downloads Featured Downloads is a WordPress plugin designed for users of Easy Digital Downloads (EDD). It allows you to showcase a list of featured downloads on your website, which can be useful for highlighting specific products or services.
The plugin provides a shortcode and a template tag for easy integration into your theme. It also includes an interface for managing featured downloads directly from the WordPress admin area, enabling you to quickly identify which downloads are featured.
Best for: This plugin suits developers or clients using Easy Digital Downloads who want to highlight specific downloads.
What it does well
Where it falls short
While this plugin provides useful features for managing featured downloads, its functionality is now integrated into the core EDD, making it less essential for new users.
Andrew Munro / AffiliateWP's own description of Easy Digital Downloads Featured Downloads, lightly tidied.
As of Easy Digital Downloads 3.5.1, the Featured Downloads addon is included in Easy Digital Downloads. You no longer need this addon to use the Featured Downloads feature.
This plugin requires Easy Digital Downloads. It’s aimed at developers/clients who need to show a list of featured downloads.
Add the “featured” attribute to the existing [downloads] shortcode provided by Easy Digital Downloads:
[downloads featured="yes"]
The following code can be used to show the featured downloads anywhere in your theme:
echo do_shortcode( '[downloads featured="yes"]' );
You can include any other attributes supported by the [downloads] shortcode.
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(); ?>
Other plugins for selling digital goods.
Want to boost sales & marketing efforts? Use your favorite forms & builder. Unlimited popups & imp...
Captcha protection against spam comments & brute force login attacks using Google reCAPTCHA.
Make ecommerce easy with a simple-to-use, all-in-one platform that anyone can set up in just a few minutes!
The #1 eCommerce plugin to sell digital products & subscriptions. Accept payments with Stripe & PayPal...
Automatically displays a shopping cart in your menu bar. Works with WooCommerce and Easy Digital Downloads (ED...
Google Tag Manager and GA4 integration. Including WooCommerce data for Google Analytics 4 and support for serv...