LAPDI Featured Categories icon

LAPDI Featured Categories

LAPDI Featured Categories is a WordPress plugin with the following stats:

  • #12,473 Global Rank
  • 10+ active installs
  • 4/5 4 ratings
  • Since 2013 13 years active

PF Score (About PF Scores)

PF Score is not a quality guarantee. It is a ranking based on available public signals.

Bronze53.4
+24.9 · 30d
Platinum
Gold
Silver
Bronze
Low

Score Breakdown

+24.9 over the last 30 days

16.7
Popularity 40% 10+ active installs
63.3
Reputation 35% 4★ from 4 ratings
98.1
Freshness 25% Updated 18 days ago

No vulnerability history

Download Trends

Loading download data…

Vulnerabilities

No known vulnerabilities

This plugin has no records in the Wordfence Intelligence vulnerability database.

About LAPDI Featured Categories

Featured Categories allows you to add featured categories with images to your blog's website.

Let A Pro Do IT!’s (LAPDI) Featured Categories plugin allows you to add featured categories with images to your blog’s website. Featured categories have three (3) layouts and include category thumbnails and scrolling category gallery.

Shortcodes

Add a Featured Categories to posts and pages by using a shortcode inside your text or evaluated from within your theme. You may override page/post Featured Categories options with shortcode attributes defined on the plugin’s settings page.

  • [tsp-featured-categories] – Will display posts with the default options defined in the plugin’s settings page.
  • [tsp-featured-categories title="Featured Categories" title_pos="below" number_cats="3" taxonomy="category" shrink_fit="Y" cat_ids="5,3,4" cat_type="all" show_text_categories="Y" hide_empty="1" hide_desc="N" max_desc="60" layout="0" parent_cat="3" box_width=500 box_height=300 order_by="count" thumb_width="80" thumb_height="80" before_title="" after_title=""] – Will override all attributes defined on the plugin’s settings page.

Screenshots

Admin area widget settings.

Admin area widget settings.

Featured Categories displayed on the front-end.

Featured Categories displayed on the front-end.

Featured Categories gallery.

Featured Categories gallery.

Admin area shortcode settings area.

Admin area shortcode settings area.

Frequently Asked Questions

What happens when I delete the plugin?

Deleting the plugin removes its widget and shortcode settings, stored category image and featured-category assignments, and any remaining private legacy table. Your WordPress categories, posts, and Media Library attachments are not deleted.

I’ve installed the plugin but my posts are not displaying?
  1. Make sure the folder /wp-content/uploads/ has recursive, 777 permissions
  2. Make sure you are listing all categories and/or parent_cat is empty or the parent_cat has children categories.
What is a taxonomy?

A taxonomy is simply a name given to a group of objects in WordPress. Since this plugin now features multiple taxonomies (other than ‘category’) in version 1.2.8, you can now enter custom taxonomies to display on your web pages.

Which new category taxonomies does the new version 1.2.8 use?

It really depends on how well the plugin author follows protocol. So far we have tested it with WooCommerce product categories and LMS course categories and it works fine. However if the plugin author does not store the course image under the meta_key ‘%thumbnail_id’ you will never be able to display the images for your categories.

I installed the new version 1.2.8 and I entered a category taxonomy but it doesn’t display?

This simply means this category type is not supported.

How do I test different category taxonomies with the new version 1.2.8?
  1. If your preferred plugin has a ‘Categories’ section for items (ie Events, Videos, Products) and it also allows you to add category details (ie images, description, title) there is a good chance its supported.
  2. Click on the category, in the browser you will see “?taxonomy=XXX” where XXX is the new category taxonomy you can use.
  3. Enter this taxonomy in your widget or your shortcode for LAPDI Featured Categories
  4. If #1 was true but it still doesnt work, it means that the author didn’t follow normal protocals when storing category data and it wont be functional.
How can I display category images at run-time?
  1. You can add similar code to your PHP file. This will display the category title, description and thumbnail at runtime. Remember you can use shortcodes to display category information at design time.

            <div class="row" style="margin: 20px 0px;">
                <div class="2u">
                    <?php 
                        // get category ID
                        $cat_id =  get_cat_ID( single_cat_title(null,false) );
    
                        // get options for tsp featured categories
                        $options = get_option('tsp-featured-categories-option-term-data');
    
                        // check to see if the category has term data
                        if ( array_key_exists( $cat_id, $options )):
                            if ( $options[$cat_id]['image'] != null ):
                                // display the image
                    ?>      
                                <img class="image" src="<?php echo $options[$cat_id]['image'];?>" width="125" height="125" border="0">
                    <?php
                            endif;
                        endif;
    
                    ?>
                </div>
                <div class="10u">
                    <h2><?php _e("Browsing category", "site5framework"); ?> / <span><?php single_cat_title(); ?></span></h2>
                    <h4><em><?php echo category_description(); ?></em></h4>
                </div>
            </div>
    

Ratings & Reviews

Recent Reviews

Loading reviews…

View all reviews on WordPress.org (opens in a new tab)

Changelog

1.3.2

  • Cleanup: Permanently deleting the plugin now removes plugin-owned settings, widget instances, category presentation data, and its private legacy table. WordPress categories, posts, and Media Library attachments are preserved.
  • Compliance: Declares Easy Dev as a WordPress dependency and loads it without assuming a folder name.

1.3.1

  • Maintenance. Compatible with WordPress 7.0. Declares PHP 7.4 as the supported runtime floor.

1.3.0

  • Maintenance

1.2.9

  • Enhancement: Requires v2.0.0 of LAPDI Easy Dev

1.2.8

  • Require: LAPDI Easy Dev 1.3.5 or higher
  • Feature: Added in the ability to use featured categories for custom taxonomies
  • Feature: Add ability to hide categories with no images

1.2.7

  • Bug: Required update from version 1.2.6
  • Fix: Fixed issue with SmoothScroll Gallery
  • Fix: Upgraded SmoothScroll Gallery

1.2.6

  • Bug: Working on issue with SmoothScroll Gallery

1.2.5

  • Enhancement: Improved settings UI

1.2.4

  • Enhancement: Using only LAPDI Easy Dev (Pro version no longer available.)
  • Enhancement. Option to turn Shrink Boxes to Fit off

1.2.3

  • Fixed bug: Fixed bug to handle null options

1.2.2

  • Fixed bug: Removed the use of Pro Skeleten which caused pages to default to size of 960px

1.2.1

  • Enhancement: Set max width for horizontal display of categories
  • Enhancement: Include instructions on how to display categories at runtime
  • Enhancement: Allow spaces between commas when listing category IDs
  • Enhancement: Replace shortcode setting with shortcode generator

1.2.0

  • Fixed bug. Correctly locates LAPDI Easy Dev.

1.1.9

  • Fixed bug, incorrect logic with title_pos in readme, config & templates

1.1.8

  • New Feature. Added new attribute title_pos for title placement options.
  • New Feature. Category image is now clickable.

1.1.7

  • Enhancement. Added new attribute cat_ids to support specific categories

1.1.6

  • Enhancement. Updated support link

1.1.5

  • Removed inline function from widget_init hook to support older versions of PHP.

1.1.4

  • Required fix to properly load media upload script.

1.1.3

  • Required fix to properly store new widget/shortcode attributes into database. (Update to Easy Dev 1.2.2).

1.1.2

  • Added back in assets folder

1.1.1

  • Fixed issues with encrypted libraries.

1.1.0

  • Now uses Easy Dev Pro for easy plugin development, #bringbackOOD
  • No longer uses a seperate termsdata table in WP database, all data will be copied over on upgrade
  • Handled all PHP notices
  • Renamed attributes to prevent red spell checks when editing (old attributes still supported)
  • Decreased plugin size by using Easy Dev

1.0.3

  • Updated path for smarty compile and cache directories. User no longer required to change directory permissions.

1.0.2

  • Fixed bug that caused images to not be added to posts.

1.0.1

  • Checks for existence of parent settings menu before overwriting it
  • Added in default images. LAPDI Plugins menu icon missing.

1.0

  • Launch

Alternatives to LAPDI Featured Categories

Other WordPress plugins serving a similar purpose, ranked by relevance and PF Score.

Platinum97.3
Smart Slider 3 icon

Smart Slider 3

Create responsive image sliders, video sliders, and carousels using a visual editor.

★ 4.9/5·800K+ installs·Updated 7 Jul 2026
Platinum94.2
SiteOrigin Widgets Bundle icon

SiteOrigin Widgets Bundle

Adds reusable page building blocks like sliders, buttons, maps, and carousels for custom layouts.

★ 4.9/5·400K+ installs·Updated 24 Jul 2026
Platinum89.7
Media Library Assistant icon

Media Library Assistant

Organize media with taxonomies, generate galleries, and extract image metadata using shortcodes and bulk editing.

★ 4.8/5·70K+ installs·Updated 17 Aug 2026
Platinum88.9
Depicter — Popup & Slider Builder icon

Depicter — Popup & Slider Builder

Build sliders for images, videos, posts, and products with popup functionality.

★ 4.6/5·80K+ installs·Updated 15 Aug 2026
Platinum88.6
List category posts icon

List category posts

Display filtered lists of posts by category, tag, author, or custom criteria using shortcodes.

★ 4.7/5·80K+ installs·Updated 7 Jul 2026
Platinum86.1
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms icon

Tag, Category, and Taxonomy Manager

Organize and assign tags, categories, and custom taxonomies across WordPress and WooCommerce from one interface.

★ 4.6/5·40K+ installs·Updated 22 Jul 2026
Platinum85.7
Interactive Content – H5P icon

Interactive Content – H5P

Create interactive videos, quizzes, timelines, and collages without additional cost or plugins.

★ 4.8/5·40K+ installs·Updated 30 Jul 2026
Platinum85.3
Ultimate Responsive Image Slider icon

Ultimate Responsive Image Slider

Drag-and-drop image slider builder with mobile-responsive design and SEO optimization.

★ 4.5/5·30K+ installs·Updated 10 Aug 2026
Platinum85.1
Category Posts Widget icon

Category Posts Widget

Display recent posts from a category using a configurable widget or block.

★ 4.5/5·40K+ installs·Updated 18 Aug 2026