WBD Logo Carousel
Logo Carousel is the most powerful and beginner-friendly Gutenberg logo block for WordPress. Display client logos, partner brands, and sponsor images in a beautiful animated carousel, responsive grid, masonry layout, or multi-row slider — all without writing a single line of code. Built natively for the WordPress block editor (Gutenberg), Logo Carousel gives you complete control over how your logos look and feel. Choose from 8 stunning themes, customize colors, borders, radius, animation speed, and even add a header with a title and description — all from the sidebar. Whether you’re building a business website, agency portfolio, SaaS landing page, or nonprofit site, Logo Carousel helps you build trust and social proof in minutes. ⭐ Lightweight, fast, and fully responsive — works with every WordPress theme. 🎯 Why Use Logo Carousel? Your visitors decide whether to trust you within seconds of landing on your site. Displaying recognizable client logos and partner brands is one of the fastest ways to build credibility and increase conversions. Logo Carousel makes this effortless — upload your logos, pick a layout and theme, customize the style, and publish. No page builder, no shortcode, no developer needed. What makes Logo Carousel different: Native Gutenberg block — no separate plugin UI to learn 4 layout types: Carousel, Multi-Row, Grid, and Masonry 8 themes including Neon and Glassmorphism Header section with title, description, and full typography control Hover tooltip for each logo (Pro) Full color, border, and radius customization Smooth CSS animations with pause-on-hover Zero bloat — no jQuery, no unnecessary scripts Features ✅ Free & Fully Unlocked Features 2 Beautiful Templates — Classic, Elegant Carousel Layout (Slider) — Continuous seamless auto-scrolling logo slider Hover Tooltips — Show custom text on hover with 4 positioning options (top, bottom, left, right) Smooth Auto-Scroll Animation — Fluid motion with pause-on-hover capability Customizable Logo Size — Adjust from 50px to 300px Clickable Logo Links — Link each logo to any URL Optional Alt Text Display — Show text below each logo Adjustable Animation Speed — Control scroll duration Slide Direction Control — Scroll left or right Custom Background Color — Set wrapper and card background colors Border Controls — Adjust card border color, width, and radius Unlimited Logos — Add as many logos as needed Fully Responsive — Works perfectly on all devices Gutenberg Native — No shortcodes needed Need More Layouts? If you need advanced layout modes (Grid, Masonry, Multi-Row Carousels) and extra premium themes, check out our separate Logo Carousel Pro plugin! 🔥 Pro Features Upgrade to Logo Carousel Pro to unlock: 6 Premium Templates — Luxury, Modern, Minimal, Premium, Neon, Glassmorphism Multi-Row Carousel — Multiple rows with alternating scroll directions (row 1 left, row 2 right, row 3 left) Grid Layout — Display logos in a responsive grid (2–6 columns) Masonry Layout — Pinterest-style masonry grid (2–5 columns) Priority Support — Dedicated help within 24 hours 🏆 Perfect For Agency websites — Showcase your client portfolio SaaS & startup landing pages — Display integration partners or investors Nonprofits — Highlight sponsors and donors eCommerce stores — Show payment providers, shipping partners, or certifications Corporate websites — Feature client brands and business partners Source Code & Build Tools *Source Code: https://github.com/wpbranddigital/logo-slider This plugin is built with modern JS block development tools. The complete, uncompiled, human-readable source code is included directly in the /src/ folder of this plugin, and can be easily verified, studied, or compiled. Dependencies & Build Tools Toolchain: Node.js, Webpack, @wordpress/scripts Key Dev Dependency: @wordpress/scripts How to Compile From Source To compile the minified production assets (build/index.js and build/view.js), follow these steps: 1. Install the build dependencies: npm install 2. Compile/bundle the assets: npm run build 3. Or start the active development watcher: npm run start Usage Add the Logo Carousel block to your page Click “Add Logo” to upload your brand images Add alt text and optional link for each logo Select your preferred Template Style from the sidebar Choose a Layout Mode — Carousel, Grid, or Masonry Enable the Header Section to add a title and description above the logos Adjust logo size, animation speed, colors, border, and radius Enable Hover Tooltip and add tooltip text per logo Publish and enjoy your beautiful logo display!
Top keywords
- logo21×3.11%
- carousel14×2.07%
- logo carousel9×1.33%
- build8×1.19%
- layout8×1.19%
- logos8×1.19%
- add7×1.04%
- grid7×1.04%
- masonry6×0.89%
- block5×0.74%
- display5×0.74%
- text5×0.74%
WP Swiper
WP Swiper Gutenberg Block is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. This powerful plugin is designed to be used in mobile websites, mobile web apps, and mobile native/hybrid apps, providing you with a range of features and customization options to help you create stunning slideshows, image galleries, and more. Features: Use any block available in Gutenberg to create your slider Hardware accelerated transitions for fast and smooth animations Customize every aspect of your slider, including navigation and pagination options, autoplay settings, and more Mobile-first design ensures your sliders look great on any device Multiple slide layouts to choose from, including horizontal and vertical options Dynamic content support, including support for video slides and dynamic image sources Easy to use and beginner-friendly, with a user-friendly interface and intuitive controls Built with performance in mind, ensuring your sliders load quickly and efficiently WP Swiper Gutenberg Block is the ultimate tool for creating visually stunning displays on mobile devices. Whether you’re creating a mobile website, mobile web app, or mobile native/hybrid app, WP Swiper Gutenberg Block has everything you need to create beautiful and engaging slideshows, image galleries, and more. Download WP Swiper Gutenberg Block today and take your mobile displays to the next level! Support my work and fuel my creativity by buying me a virtual coffee on BuyMeACoffee New Features and suggestions Contact Me BETA TESTING We’re actively developing new features and improvements for WP Swiper! Beta versions are available for testing, and we’d love your feedback to help make the plugin even better. How to participate: 1. Download and install the latest beta version 2. Test the new features in your environment 3. Report any issues or provide feedback on our GitHub repository Report Issues & Feedback: Found a bug or have suggestions? Please submit them here: https://github.com/andreyc0d3r/wp-swiper/issues Your feedback is invaluable in helping us improve WP Swiper for everyone! NEW RELEASE WP Swiper version 1.2.0 is now live! This update introduces major changes, including a streamlined configuration with the new data-swiper attribute, a new WP Swiper Settings page, optimized asset loading, and more. Please note that the legacy configuration method will be deprecated in future releases. For more details on what’s new and how to migrate, check out the full update announcement on the WP Swiper Blog. wpswiper_frontend_js_register_args Filter The wpswiper_frontend_js_register_args filter allows users to customize parameters when enqueueing the frontend-js script. This filter enables you to modify the script’s dependencies, control whether it loads in the footer, and specify additional loading strategies such as async or defer. Parameters deps: (array) The script dependencies for frontend-js. Default value is ['wpswiper-bundle']. You can modify this to include additional dependencies or remove existing ones. args: (array|bool) An optional array for additional script loading strategies. If provided, it may be an array with a strategy key (set to either 'async' or 'defer'). If not specified, it defaults to false, indicating that no special loading strategy is applied. For more information, read the WordPress documentation on wp_enqueue_script. Example Usage To modify the default values, add the following code to your functions.php file or your custom plugin: add_filter('wpswiper_frontend_js_register_args', function($args) { // Modify script dependencies $args['deps'] = ['wpswiper-bundle', 'jquery', 'your-custom-dependency']; // Specify an additional loading strategy, such as async or defer $args['args'] = [ 'in_footer' => false, 'strategy' => 'defer' ]; // Options: 'async' or 'defer' return $args; }); This filter provides flexibility in how the frontend-js script is loaded, allowing for optimizations tailored to your specific site needs. API Parameters Loop Parameters loopAddBlankSlides Type: boolean Default: true Description: Automatically adds blank slides if you use Grid or slidesPerGroup and the total amount of slides is not even to slidesPerGroup or to grid.rows loopAdditionalSlides Type: number Default: 0 Description: Allows to increase amount of looped slides !!! IMPORTANT !!! I use this plugin internally to build awesome sliders. At the moment only essential Swiper options are available. More to come!!! If you urgently need a feature, please reach out to me. If you are a designer and have an interface design in mind, let me know. The backend UI is not the prettiest thing at the moment. But it’s very intuitive and does the job! The interface is set up as a series of tabs, each tab controls a slide. Click on the tab and you may upload an image. Click on the WP Swiper block and you can control slider overlay + color overlay. Another note re: backend UI, the original idea was generate the functional slider within the editor. But theres an issue with conteneditable HTML elements. I lodged an issue on official swiper github repo for them to resolve. Leave a comment for them to prioritise the solution. If you want to use the slide with text. Select slide, add image, the image gonna appear as a background on the frontend. If you want to use the slider for images, just add a regular image block. Features: Add image overlay for the whole slider + control opacity Add color overlay for the whole slider + control opacity Add image to the slider Add content (text, headings, anything…) to the slider Position content for each slider More Features to be added: Control height of the slider Animations Other features from the official swiper docs