BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Plugin Cards icon
Possibly abandoned Tested up to 4.4.34 #31 in card

Plugin Cards

Plugin Cards lets you display WordPress 4.0 style cards with plugin information for any plugin that lives on the wordpress.org repository. All of the custom queries that are possible using the wordpress.org API are…

Active installs10+10+ tier
Downloads · 30d49▲ +75% vs prev. 30d
Rating4.5/58 reviews
Health score33/100At risk
All-time downloads3.1KSince May 2015
Support resolved—No recent threads
RequiresWP 4.0PHP any
Downloads · 7d17• 0% week over week
Our verdict

Consider an alternative

Plugin Cards shows warning signs in 2026 — compare the alternatives below before installing. It runs on 10+ sites, is rated 4.5/5 and was last updated 11 years ago, and scores 33/100 on our health check.

  • Small user base (10+ active installs)
  • No update in 10 years
  • Only tested up to WordPress 4.4 (latest is 7.1)

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

257Jun 29Aug 12Sep 26
Yesterday2
Daily average (1y)1
Peak day10Sep 15, 2026
Last 12 months360

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Plugin Cards stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
card >100 8,414 Best card plugins →
cards >100 8,415 Best cards plugins →
repo >100 1,120 Best repo plugins →
search >100 10,000 Best search plugins →

Version adoption

Share of active sites per release.

  • 1.2100.0%

Rating breakdown

★★★★★★★★★★ 4.5 from 8 reviews

  • 5★87.5%
  • 4★0.00%
  • 3★0.00%
  • 2★0.00%
  • 1★12.5%

About Plugin Cards

From the official readme · v1.2.2

Description

Plugin Cards lets you display WordPress 4.0 style cards with plugin information for any plugin that lives on the wordpress.org repository. All of the custom queries that are possible using the wordpress.org API are possible with this plugin, including queries for plugins by:

  • Slug
  • Author
  • Tag
  • Search term
  • Brose terms: popular, new, & beta
  • A wordpress.org user’s favorites list
  • Any other custom query you pass in via an included filter

This plugin uses the same wordpress.org API that your wp-admin uses when you are searching for new plugins, and it uses as much of the admin CSS and core functionality as possible to bring you a purposefully stock experience.

I have also included a number of filters in the plugin that allow you to customize everything. You can use a custom query, include custom fields not shown by default, use custom icons, use custom plugin urls, add to or override the information shown in each section of the output, override the entire output with your own, and more.

This plugin is on Github and I encourage feature requests and pull requests.

Features

  • Query the wordpress.org plugin repo by all methods supported by the wordpress.org API, including by slug, author, tag, popular, new, beta, user’s favorites, and search term
  • Cards match the design introduced in WordPress 4.0
  • Uses the wordpress.org API to get plugin information
  • Caches results to minimize hits on the API
  • Default fields include plugin name, icon, description, author link, star rating, active install count, last updated and compatible up to
  • Uses SVG plugin icon if available, then retina icon if available, then regular icon
  • Uses the WP native Dashicons for the star ratings
  • Intelligently Responsive
  • Easily customize the look of the cards with CSS
  • Easily customize the functionality of the entire plugin with provided filters

With Plugin Cards you can easily display a custom list of plugins for any purpose.

Usage

This plugin adds a shortcode [plugin_cards] that you can use to display the plugin cards anywhere on your site.

The following parameters can be used to create your query:

[plugin_cards slug="easy-digital-downloads"]
[plugin_cards author="markjaquith"]
[plugin_cards user="matt"] // Displays user's favorites list
[plugin_cards tag="slider"]
[plugin_cards browse="popular"]
[plugin_cards browse="new"]
[plugin_cards browse="beta"]
[plugin_cards search="gallery"]

Note: The wordpress.org API only supports querying by one parameter at a time, so currently only one parameter can be included in the shortcode to build the query. If this ever changes I will add support for querying by multiple parameters to this plugin.

Note: The parameter is required for the shortcode to work. Simply using [plugin_cards] will result in a silent fail.

You can also set the max number of results using the max_results parameter like this:

[plugin_cards max_results="10" browse="popular"]

Advanced Usage

This plugin includes a number of filters that you can use to customize the display of the cards and add plugin information to the cards. I recommend reading through the code if you really want to understand how the filters can be used. Here are some examples:

Use a custom query

function custom_plugin_cards_query( $custom_query_args, $atts = array(), $fields = array() ) {

    // Show the 10 most popular plugins with only certain fields returned
    $custom_query_args = array(
        'per_page' => 10,
        'browse' => 'popular',
        'fields' => array(
            'banners' => true,
            'icons' => false,
            'reviews' => true,
            'rating' => true,
            'num_ratings' => true,
            'downloaded' => false,
            'active_installs' => false,
            'short_description' => false,
            'sections' => true,
            'downloadlink' => true,
            'last_updated' => true,
            'homepage' => true,
        )
    );

    return $custom_query_args;

}
add_filter( 'plugin_cards_api_query_args', 'custom_plugin_cards_query', 10, 3 );

Then you’d have to use one of the output filters and some CSS to get the new fields to show on the page. There is a lot that is possible with the plugin_cards_api_query_args filter, too much to cover here, but the key is setting the right main query param and setting the fields that you want returned.

Use custom URLs

function custom_plugin_card_urls( $plugin_url, $plugin = null ) {

    // Point URLs to a custom endpoint based on the plugin slug
    $plugin_url = 'https://domain.com/custom-plugins/' . esc_attr( $plugin->slug );

    // Change the URL of a specific plugin
    if ( 'woocommerce' === $plugin->slug ) {
        $plugin_url = 'http://www.woothemes.com/woocommerce/';
    }

    return $plugin_url;

}
add_filter( 'plugin_cards_plugin_url', 'custom_plugin_card_urls', 10, 2 );

The complete list of simple filters that work exactly like plugin_cards_plugin_urls is:

plugin_cards_plugin_url
plugin_cards_plugin_name
plugin_cards_short_description
plugin_cards_plugin_author

There are also some advanced filters that allow you to override the HTML output of entire sections, including:

plugin_cards_plugin_icon
plugin_cards_action_links
plugin_cards_plugin_rating
plugin_cards_last_updated
plugin_cards_install_count
plugin_cards_plugin_compatibility

These filters can be used like this:

Use custom plugin icons

function custom_plugin_card_icons( $plugin_icon, $plugin = null, $plugin_url = '' ) {

    // Replace all plugin icons with kittens
    $plugin_icon = '<a href="' . esc_url( $plugin_url ) . '" class="plugin-icon"><img src="http://domain.com/kittens.jpg" /></a>';

    // Replace the icon for a specific plugin
    if ( 'equal-height-columns' === $plugin->slug ) {
        $plugin_icon = '<a href="' . esc_url( $plugin_url ) . '" class="plugin-icon"><img src="http://domain.com/custom-icon.jpg" /></a>';
    }

    return $plugin_icon;

}
add_filter( 'plugin_cards_plugin_icon', 'custom_plugin_card_icons', 10, 3 );

There is also one special filter plugin_cards_cache_expiration that allows you to set how long you want the results of the API request to be cached. The default is 2 hours (expressed as number of seconds).

If you want a hook added just let me know. Pull requests are welcome on Github.

Installation

Manual Installation

  1. Upload the entire /plugin-cards directory to the /wp-content/plugins/ directory.
  2. Activate Plugin Cards through the ‘Plugins’ menu in WordPress.

Better Installation

  1. Go to Plugins > Add New in your WordPress admin and search for Plugin Cards.
  2. Click Install.

Changelog

Minor CSS improvements for better theme compatibility

1.2.2

  • Minor CSS improvements for better theme compatibility

1.2.1

  • Icon links now open in a new window
  • Minor CSS tweak for better matching core styling
  • JS is now even smaller (2kb)

1.2.0

  • Fixed a bug that was causing the caching to fail if two different queries of the same type were made
  • Improved CSS to incorporate 4.3 core changes and provide better responsive behavior and theme compatibility
  • Reintroduced a “Download” button on the top right of the cards
  • Introduced a new filter plugin_cards_action_links that can be used to hide the “Download” button
  • Changed the default cache expiration to 2 hours
  • Tested with the latest WordPress 4.3

1.1.0

  • Introduced some JS to ensure we are always showing the right number of columns
  • Switched to using Dashicons for the star ratings

1.0.0

  • First Release

Full changelog on WordPress.org →

Screenshots

Output from [plugin_cards browse="popular"]
Output from [plugin_cards browse="popular"]
Small screen single column view
Small screen single column view

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best Plugin Cards alternatives

All card plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 Event Block Event Block Quickly create simple event cards and invitations by Automattic 1K+ ★★★★★★★★★★ 5 (2) 3 years ago 34
2 Virtuaria PagBank / PagSeguro for WooCommerce Virtuaria PagBank / PagSeguro for WooCommerce Credit, Pix, and Boleto in your online store. More security, fewer chargebacks with 3DS… by Virtuaria 1K+ ★★★★★★★★★★ 4.8 (25) 3 months ago 77
3 Wikipedia Preview Wikipedia Preview Wikipedia Preview lets you show a popup card with a short summary from Wikipedia when a… by Wikimedia Foundation 1K+ ★★★★★★★★★★ 4.8 (37) 10 months ago 58
4 Stitch Express Stitch Express Stitch Express is the simplest way for your business to get paid securely online with… by stitchexpress 500+ ★★★★★★★★★★ 5 (1) 1 month ago 61
5 WP Plugin Info Card WP Plugin Info Card Add beautiful, customizable cards to showcase plugins, themes, and projects from… by Brice Capobianco 400+ ★★★★★★★★★★ 5 (23) 4 days ago 87
6 Flipping Cards Flipping Cards Create sexy flipping cards! by manu225 300+ ★★★★★★★★★★ 5 (2) 1 month ago 72
7 GIFT4U – Gift Cards All in One for Woo GIFT4U – Gift Cards All in One for Woo Attract customers by unlocking the potential of gift card products. Easily create, sell… by VillaTheme 200+ ★★★★★★★★★★ 4.7 (3) 1 month ago 60
8 SU Blocks – Blogcard SU Blocks – Blogcard A WordPress plugin that makes it easy to create blog cards. Simply enter a URL and… by Takashi Fujisaki 100+ ★★★★★★★★★★ 5 (2) 2 weeks ago 75
9 Profile Card Block Profile Card Block display profile in card formate in your wordpress-site with custom block. by Chintesh Prajapati 100+ ★★★★★★★★★★ 5 (1) 8 years ago 32
10 Foloosi Payments Foloosi Payments Foloosi Payments plugin to accept credit card and debit payments. by foloosi 100+ ★★★★★★★★★★ No reviews 6 months ago 46

FAQ

Plugin Cards: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 27, 2026

Is Plugin Cards free?

Yes. Plugin Cards is free to download and use from the official WordPress.org plugin directory.

Is Plugin Cards safe to use in 2026?

Plugin Cards shows warning signs in 2026 — compare the alternatives below before installing. It runs on 10+ sites, is rated 4.5/5 and was last updated 11 years ago, and scores 33/100 on our health check.

How many websites use Plugin Cards?

Plugin Cards is active on 10+ WordPress websites and has been downloaded 3,066 times since it launched in May 2015. It was downloaded 49 times in the last 30 days.

Does Plugin Cards work with WordPress 7.1?

Plugin Cards is officially tested up to WordPress 4.4.34, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

When was Plugin Cards last updated?

The latest version, 1.2.2, was released on December 7, 2015 (11 years ago).

Who makes Plugin Cards?

Plugin Cards is developed and maintained by Braad.

What are the best alternatives to Plugin Cards?

The most popular alternatives to Plugin Cards are Event Block (1K+ installs), Virtuaria PagBank / PagSegu… (1K+ installs) and Wikipedia Preview (1K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.