🚀 Overview
DesignDrop is a powerful WordPress plugin that empowers you to create, manage, and deploy custom UI components across your entire website using simple shortcodes. Whether you’re a developer looking to streamline component management or a content creator wanting to add beautiful design elements, DesignDrop makes it effortless.
✨ Features
🎨 Visual Component Builder
- Live Preview: See your changes in real-time as you build
- HTML/CSS Editor: Clean, syntax-friendly code editors
- Instant Updates: Watch your components come to life instantly
🔗 Easy Implementation
- Shortcode Generator: Automatic shortcode creation for each component
- One-Click Embed: Copy-paste shortcodes anywhere in your site
- Universal Compatibility: Works with posts, pages, widgets, and custom post types
🛡️ Professional Grade
- Secure Sanitization: All code is properly sanitized for security
- SVG Support: Full support for vector graphics and icons
- Scoped CSS: Automatic CSS scoping prevents style conflicts
- Database Optimized: Efficient storage and retrieval system
⚡ Performance Focused
- Lightweight: Minimal impact on site performance
- No Bloat: Clean code without unnecessary features
- Fast Loading: Optimized for speed and efficiency
📋 What You Can Create
- Animated Loaders & Spinners
- Custom Buttons & CTAs
- Icon Sets & SVG Graphics
- Notification Badges
- Progress Bars
- Pricing Tables
- Testimonial Blocks
- Social Media Widgets
- Countdown Timers
- And much more!
🎯 Perfect For
- Web Developers who want to create reusable components
- Design Agencies maintaining consistent branding across client sites
- Content Creators adding visual elements without coding
- WordPress Professionals streamlining their workflow
- Business Owners maintaining design consistency
🚀 Quick Start
Installation
- Upload Plugin:
- Download DesignDrop from the WordPress repository
- Go to WordPress Admin → Plugins → Add New
- Upload and activate the plugin
- Or Install via WordPress:
- Go to Plugins → Add New
- Search for “DesignDrop”
- Install and activate
Creating Your First Component
- Access DesignDrop:
- Navigate to “DesignDrop” in your WordPress admin menu
- Click “Add New Element”
- Build Your Component:
- Enter a descriptive name for your component
- Add your HTML code in the HTML editor
- Add your CSS styles in the CSS editor
- Watch the live preview update automatically
- Save & Implement:
- Click “Save Element”
- Copy the generated shortcode
- Paste it anywhere in your WordPress site
Example Usage
Create a custom button:
html
<!-- HTML -->
<button class="custom-btn">Click Me</button>
<!-- CSS -->
.custom-btn {
background: linear-gradient(45deg, #0073aa, #00a0d2);
color: white;
padding: 12px 24px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: transform 0.2s;
}
.custom-btn:hover {
transform: translateY(-2px);
}
Shortcode: [ui_element id="1"]