Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code
Copy Anything to Clipboard helps visitors copy text, links, coupon codes, commands, email addresses, AI prompts, and code snippets in one click—no awkward text selection on mobile, no broken formatting in the clipboard. Use it on blogs, docs, WooCommerce and deal sites, SaaS landing pages, tutorials, and support hubs where you want fewer “how do I copy this?” questions and smoother sharing of URLs, promos, and technical steps. Why site owners install it Better UX – Especially on touch devices, a dedicated copy control beats “long-press to select.” Higher intent actions – Coupon codes, affiliate links, and checkout snippets convert better when copying is frictionless. Flexible placement – Target elements automatically, or drop shortcodes/blocks only where you need them. Integration options Global Injector – Rules that match CSS selectors (e.g. pre, code, .coupon) plus display conditions and live preview. Classic CSS selector rules – Site-wide automatic copy buttons for matching markup. Shortcodes – [copy] (alias: [ctc]) for precise placement in the editor, widgets, and templates. Elementor – 25+ widgets for common patterns (code, coupon, email, prompt, deal link, and more). Gutenberg – Native blocks for the block editor. Highlights Button, Icon, and Cover presets; copy as plain text or HTML where supported. Performance-minded – Combine display conditions with how you publish rules so assets run where copy UI is actually used. Works with typical WordPress stacks – Themes, builders, and caching setups; mobile and modern desktop browsers. How to use You can add copy buttons anywhere on your WordPress site using one of the following methods: EASY: Shortcodes Manually add copy controls with [copy] anywhere in your content. AUTOMATIC: Global Injector Automatically inject copy buttons into any element using CS selectors like pre, code, blockquote, or any custom selector with advanced display conditions. Elementor Widgets Add copy buttons visually using dedicated Elementor widgets. Gutenberg Blocks Insert copy buttons directly inside the WordPress block editor using Gutenberg blocks. METHOD 3 – Manually with “Shortcodes” Use [copy] anywhere you want an explicit copy control (Classic editor, Shortcode block, widget areas, patterns, or PHP templates via do_shortcode()). [ctc] is the same shortcode with a shorter name—use either. How it works (matches the plugin code) Default layout is the inline preset (clickable text + icon). Switch with preset="button", preset="icon", or preset="cover". text="…" (or text wrapped between [copy] and [/copy]) is what lands on the clipboard. display="…" overrides the visible label when it must differ from the copied string (masked secrets, mailto links, etc.). Legacy pair: text="…" + content="…" — content is copied, text is what visitors see (handy for hiding long URLs behind a short CTA). Try it on a fresh install — add a Shortcode block (or switch the block editor to Code editor), paste one snippet, Update, view the page, and tap the control. Example 1 – Datetime inside a sentence Next live workshop: [copy]2030-03-19 10:00 America/New_York[/copy] — copy the full value for your calendar tool. Example 2 – Email inside a sentence Billing questions? Email [copy]
[email protected][/copy] and include your order ID. Example 3 – Show the mailbox, copy a ready-made mailto link [copy display="
[email protected]"]mailto:
[email protected]?subject=Question%20from%20website[/copy] Visitors see
[email protected]; the clipboard receives the full mailto: string with the subject line. Example 4 – Mini support block (swap in your real IDs) Before you open a ticket, include: - Order ID: [copy]WC-104592-UK[/copy] - Line item SKU: [copy]BM-HOODIE-M-NVY[/copy] - Return auth: [copy]REF-88C0A921[/copy] Example 5 – Coupon inside marketing copy Launch week only — use [copy]SPRINGLAUNCH26[/copy] at checkout for 25% off your first year. Example 6 – Long store URL, short friendly label [copy text="https://www.amazon.com/dp/B0D1EXAMPLE/ref=nosim?tag=clipboard0d-20"]Copy our Amazon pick[/copy] The visitor reads Copy our Amazon pick; the clipboard gets the full tagged URL. Example 7 – Carrier-style tracking number Track this shipment: [copy]1Z999AA10123456784[/copy] Example 8 – Developer onboarding (framework installer) Run this once: [copy]npx create-next-app@latest my-shop --typescript --eslint --tailwind --app[/copy] Example 9 – One-line WP-CLI maintenance Safe cache flush: [copy]wp cache flush && wp rewrite flush[/copy] Example 10 – API key visible on screen vs clipboard Production key (rotate after testing): [copy text="sk_live_51QxYzAbCdEfGhIjKlMnOpQrStUvWx0123456789" display="sk_live_…6789"] Visitors only see the shortened mask; the full secret is still copied once for trusted teammates. Example 11 – Guest Wi‑Fi card SSID: [copy]Guest-Office-5G[/copy] · Passphrase: [copy text="WinterLake#2026!" display="••••••••••••"] Example 12 – Teams / Meet style link Join the stand-up: [copy]https://teams.microsoft.com/l/meetup-join/19%3ameeting_EXAMPLE%40thread.v2/0?context=%7b%22Tid%22%3a%22...%7d[/copy] Example 13 – Conference hashtag or emoji drop Share photos with [copy]#ClipboardAgencyLive2026[/copy] — we monitor that tag all week. Example 14 – Button preset (big tap target, copies a long shell line) [copy preset="button" button-text="Copy Docker install" text="curl -fsSL https://get.docker.com | sh"] Example 15 – Icon-only control in a tight layout Docker CE (Ubuntu): [copy text="sudo apt-get install docker-ce docker-ce-cli containerd.io" preset="icon" tooltip="Copy apt install line"] Example 16 – Optional open-after-copy URL (great for coupons) [copy preset="button" text="SAVE20" button-text="Copy code & checkout" redirect="https://clipboard.agency/checkout/?coupon=SAVE20"] Example 17 – Cover preset for a code/card preview [copy preset="cover" text="body { margin: 0; font-family: system-ui, sans-serif; }" button-text="Copy CSS"]body { margin: 0; … }[/copy] The visible card shows the shortened preview; the overlay copies the full CSS string. Example 18 – Legacy `text` + `content` pair (same idea as Example 6) [copy text="Open the parking map" content="https://maps.app.goo.gl/dQw4w9WgXcQ"] Example 19 – Bank-style reference (dummy data) SEPA reference: [copy]RF18539007547034[/copy] Example 20 – Plain JSON snippet for API testers Paste this body: [copy]{ "event": "signup", "plan": "pro", "trial_days": 14 }[/copy] METHOD 2 – Global Injector (NEW in v5.0.0) The Global Injector is the most powerful way to automatically add copy buttons anywhere on your website. It allows you to target elements using CSS selectors and control exactly where the copy buttons appear. Key Capabilities Display Conditions – Show copy buttons only on specific pages, posts, categories, or custom conditions. Multiple Style Presets – Choose from Button, Icon, or Cover styles with live preview. Advanced Targeting – Precisely target elements using CSS selectors such as pre, code, blockquote, and more. Performance Optimized – Plugin assets load only on pages where copy buttons are used. How to Use Global Injector Go to Copy to Clipboard → Global Injector in your WordPress dashboard. Click Add New Injector. Enter the CSS selector you want to target (for example: pre, code, or blockquote). Select a style preset – Button, Icon, or Cover. (Optional) Configure Display Conditions to control where the copy button appears. Click Save and preview the changes on your site. METHOD 2 – Automatically with “CSS Selector” This is the quickest and most commonly used method. It automatically adds copy buttons to all elements that match a specific CSS selector. Use this method when you want copy buttons to appear automatically across your entire website without manually adding them to each element. Examples Example 1 – Code Snippets If your posts contain code snippets inside the tag, simply set the selector to pre (without the angle brackets ). The plugin will automatically add a copy button to every element, allowing visitors to copy code snippets with one click. Example 2 – Blockquotes If you want users to copy quotes from your blog posts, set the selector to blockquote (without the angle brackets ). A copy button will automatically appear for all blockquote elements on your site. You can target any HTML element or custom class using CSS selectors such as: pre – If your posts contain code snippets inside the tag. code – If your posts contain code snippets inside the tag. blockquote – If you want users to copy quotes from your blog posts. .coupon-code – If your posts contain coupon codes. .email-address – If your posts contain email addresses. .copy-this – If you want to copy specific content. How to Use with CSS Selector Go to Copy to Clipboard in your WordPress dashboard. Click the Add New button. Enter the CSS selector you want to target (for example: pre or blockquote). Click Create to save the selector. Visit your page and you will see the copy button automatically added to the targeted elements. For more detailed guides: Add copy buttons to blockquotes Add copy buttons to code snippets METHOD 4 – Manually with “Elementor Widgets” The plugin includes multiple Elementor widgets that allow you to easily add copy buttons to specific content on your page. Simply drag and drop a widget and configure the content you want visitors to copy. These widgets are useful for many types of content including: Emails ChatGPT / AI prompts Coupon codes Deals and affiliate links Inspirational quotes Contact information Addresses Social media posts Commands and technical code Passwords and secure values Notes, reminders, and checklists Blog content and educational materials Hashtags and social media resources Research notes and documentation Travel information and packing lists Personal messages and quotes You can explore live examples for all widgets here: View Elementor widget demos How to Use Elementor Widgets Install and activate the Elementor plugin. Open a page and click Edit with Elementor. Search for the widget (for example: Copy). Drag and drop the widget onto the page. Enter the content you want users to copy. Publish the page and test the copy button. For full examples and widget demos: See all live demos Key benefits Global Injector – Selector-based rules, display conditions, and live preview from the admin. One-click copy – No manual selection; clearer affordances for code, coupons, and contact fields. Multiple presets – Button, Icon, and Cover layouts to fit dense UI or minimal docs. Builder-native – Deep Elementor coverage plus Gutenberg blocks for modern sites. Shortcodes – [copy] / [ctc] for surgical placement in the classic editor, widgets, and templates. Mobile and cross-browser – Tested behavior on common phones and current Chrome, Firefox, Safari, and Edge. Lightweight by design – Pair rules with conditions so you are not loading UI where it is unused. PRO – Extra customization, behavior options, and analytics when you need to scale or brand the experience. PRO adds advanced customization and analytics. Compare plans: https://clipboard.agency/pricing/ Trusted by thousands of WordPress sites 10,000+ active installs rely on Copy Anything to Clipboard for docs, deals, dev blogs, and support content. It is built to cooperate with popular themes and page builders (including Elementor) instead of fighting your layout. Feature requests Ideas and edge cases help the roadmap. Share yours: https://clipboard.agency/contact/ Installation, Elementor, Gutenberg, performance, and HTML vs plain text are covered in the FAQ tab on this plugin page. Google Chrome Extension We also provide a Google Chrome Extension that allows users to quickly copy content from any website. Chrome Web Store The extension works perfectly alongside the Copy Anything to Clipboard WordPress plugin, making it easy to copy text, links, commands, code snippets, and more across the web. Further reading Website Documentation Live demos Support More plugins on WordPress.org If the plugin saves you time, you can support ongoing development here: Support development on PayPal Blocks This plugin provides 4 blocks for the WordPress block editor: Copy Icon Add a small icon that lets users quickly copy text or code to the clipboard. Copy Button Add a visible button that allows users to copy content with one click. Term Title Display the title of the current taxonomy term such as category or tag. Social Share Allow visitors to quickly share content across social media platforms.
Top keywords
- copy100×5.23%
- example27×1.41%
- code21×1.10%
- text20×1.05%
- clipboard18×0.94%
- button16×0.84%
- content15×0.78%
- buttons14×0.73%
- copy buttons14×0.73%
- add13×0.68%
- css12×0.63%
- elementor12×0.63%
Ultimate Addons for Elementor – Widgets, Templates, WooCommerce & Header Footer Builder
Ultimate Addons for Elementor (UAE) is a lightweight yet powerful Elementor addons plugin that extends Elementor’s capabilities with 18+ free Elementor widgets, 50+ premium widgets, 200+ pre-designed templates, and a visual Header & Footer Builder – trusted by over 2 million websites. UAE has evolved into a trusted Elementor addon that lets you design creative sections and complete site layouts directly within Elementor – no coding required. The free version of UAE includes a hand-picked set of essential widgets like Basic Posts, Info Card, Duplicator, Navigation Menu and more – widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually, and includes time-saving tools like Post Duplicator, improving your design process without cluttering your interface. When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds. These features are built to save time and offer more design freedom – not just to impress, but to genuinely improve how you build and manage websites. Whether you’re just getting started with WordPress or managing multiple client sites, UAE Elementor addons give you the control, performance, and reliability to design beautiful, high-converting websites efficiently. Try the live demo of Ultimate Addons for Elementor Free Elementor Header & Footer Builder UAE began life as the original Elementor Header & Footer Builder, and it is still the easiest way to design custom headers and footers with Elementor – completely free, with no Elementor Pro Theme Builder required. Design visually: Build headers and footers with Elementor’s drag-and-drop editor using widgets like Site Logo, Navigation Menu, Search, and Cart. Flexible display rules: Show different headers or footers across your entire website or only on specific pages and posts. Works with any WordPress theme: Native support for popular themes like Astra, Hello Elementor, OceanWP, GeneratePress, Blocksy, Neve, and Kadence – plus built-in fallback methods for every other theme. Before Footer area: Add site-wide call-to-action sections just above your footer. Refer to our step-by-step guide to create your first custom header and footer in minutes. Why Choose UAE Elementor Addon Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help. Why Over 2 Million Websites Use Ultimate Addons for Elementor: Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert. Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time. Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices. Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency. 50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts. Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra. Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality. Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts. Free Widgets in Ultimate Addons for Elementor Basic Post – Display a list of your latest blog posts with layout options and styling controls. Woo Product Grid – Showcase WooCommerce products in a responsive, customizable grid layout. Counter – Add animated number counters to highlight stats, achievements, or milestones. Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style. Site Logo & Retina Logo – Showcase crisp branding across all devices. Site Title & Tagline – Display key identity elements clearly and elegantly. Search – Add fast, user-friendly search to your header or footer. Cart – Integrate a shopping cart preview for WooCommerce stores. Page Title – Automatically show relevant page titles for better UX and SEO. Breadcrumbs – Improve site navigation and search engine visibility. Post Info – Display author, date, categories, and more for content clarity. Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor. Reading Progress Bar – Visually indicate article progress for better engagement. Info Card – Combine icons, headings, text, and CTAs in one flexible block. Copyright – Easily add site-wide copyright or legal text in the footer. Post Duplicator – Instantly duplicate posts, pages, headers, footers, and custom blocks to speed up content creation and safely experiment with layouts. Note: You can refer to our step-by-step guide that will help you set headers and footers quickly. How these Elementor widgets help: Design full headers and footers visually, no need for theme settings or extra plugins Create consistent layouts that look great on every device Boost productivity using essential, ready-to-use widgets and a powerful Post Duplicator to instantly clone posts or pages and jump-start new content. Improve user experience, accessibility, and on-page SEO Seamlessly works with any WordPress theme for complete design freedom The free widgets in UAE give you a solid starting point to build fast, functional, and visually appealing websites, whether you’re designing a landing page, a portfolio, or a complete site layout. 🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities! All widgets and features listed below are part of UAE Pro. Content and Interaction Widgets Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios. SVG Animator (Pro) – Animate SVG illustrations with ease using this widget. Great for adding visual interest and motion to your designs. Advanced Heading (Pro) – Design eye-catching headlines with layered styles and dynamic effects. Business Hours (Pro) – Display store or office hours clearly with styled layouts. Content Toggle (Popular) (Pro) – Switch between content blocks for comparisons, FAQs, or pricing plans. Google Map (Pro) – Add responsive, customizable location maps to boost trust and visibility. Image Gallery (Pro) – Showcase multiple images in a clean, organized grid or masonry layout. Info Box (Pro) – Combine icons, titles, and descriptions with CTA buttons in one elegant widget. Modal Popup (Popular) (Pro) – Easily trigger stylish popups for promotions, lead generation, or key messages. Posts (Pro) – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor. Price List (Pro) – Highlight products or services with pricing and description in a clean layout. Table (Pro) – Create sortable, responsive tables to organize data or feature comparisons. Video (Popular) (Pro) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options. Video Gallery (Pro) – Show multiple videos in a neatly organized, responsive gallery. Creative Widgets Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages. Before After Slider (Pro) – Visually compare two images using a draggable slider. Countdown Timer (Pro) – Create urgency for offers, events, or product launches. Display Conditions (Pro) – Show or hide content dynamically based on user role, device, login status, and more. Dual Color Heading (Pro) – Highlight key phrases in headings with stylish dual-tone designs. Fancy Heading (Pro) – Create animated, visually distinct headlines to capture attention. Hotspots (Popular) (Pro) – Add interactive tooltips to images to explain features or details. Login Form (Pro) – Embed a beautifully styled, branded login form right into any page. Marketing Button (Pro) – Add call to action buttons with built-in icons, hover effects, and dual text. Multi Buttons (Pro) – Display multiple action buttons side-by-side for better decision making. Navigation Menu (Pro) – Create fully customizable, responsive menus directly within Elementor. Off-Canvas (Pro) – Create off-screen panels for menus, filters, or extra content that slides into view. Price Box (Pro) – Showcase pricing plans with styled headings, features, and call to action buttons. Retina Image (Pro) – Ensure images display perfectly on high-resolution (Retina) screens. Team Member (Pro) – Introduce your team with photos, bios, social links and layout options. Timeline (Popular) (Pro) – Display milestones, history, or process steps in vertical or horizontal timelines. User Registration Form (Pro) – Let visitors register with a styled, user-friendly form. Form Styler Widgets Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing. Contact Form 7 Styler (Pro) – Easily style CF7 forms to match your brand. Gravity Form Styler (Popular) (Pro) – Enhance Gravity Forms visually with complete styling control. WP Fluent Forms Styler (Pro) – Customize Fluent Forms to blend seamlessly into your pages. WPForms Styler (Pro) – Transform WPForms into beautiful, responsive forms without touching a line of code. SEO Widgets Boost search visibility, enhance content structure and build trust from the Elementor editor. Business Reviews (Pro) – Display authentic reviews from platforms like Google. How-To Schema (Pro) – Format step-by-step guides with structured data to earn rich snippets. FAQ Schema (Pro) – Create styled FAQs that are also SEO-ready. Table of Contents (Pro) – Automatically generate clickable TOCs for long content. Social Widgets Keep your website fresh, connected and shareable with built-in social media integrations. Instagram Feed (NEW) (Pro) – Embed a stylish, responsive Instagram gallery that updates automatically. X Feed (NEW) (Pro) – Show your most recent posts from X (formerly Twitter). Social Share (Pro) – Add sleek, customizable share buttons to grow your audience. WooCommerce Widgets Design high-converting online stores inside Elementor with this modern WooCommerce addon. Woo – Add to Cart (Pro) – Place flexible Add to Cart buttons anywhere. Woo – Categories (Pro) – Showcase product categories in stylish layouts. Woo – Checkout (Pro) – Customize the entire checkout experience for better conversions. Woo – Mini Cart (Pro) – Display a sleek cart preview with real-time updates. Woo – Products (Pro) – Build fully styled product grids or carousels with advanced controls. Creative Features Go beyond widgets and unlock tools that accelerate your workflow. Cross-Site Copy Paste (Pro) – Instantly copy and paste entire Elementor sections between domains. Particle Backgrounds (Pro) – Add animated particle effects behind sections. Party Propz (Pro) – Celebrate special occasions with on-screen confetti and fun animations. Presets (Pro) – Apply consistent design styles across widgets with a single click. Welcome Music (Pro) – Play background music when a visitor lands on your site. Unlock Even More With the Essential Toolkit Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage. 300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites. Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed. Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours. What Users Are Saying Rated 4.9 out of 5 stars from over 2,500 reviews on WordPress.org. ⭐⭐⭐⭐⭐ “A must-have for any Elementor user. Incredible widget bundle – powerful, essential, and easy to use.” – Carmelo Teran (nexodreams.com) ⭐⭐⭐⭐⭐ “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!” – Nicola Stobb (imoe.co) ⭐⭐⭐⭐⭐ “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!” – Dean Loh (kaia.asia) More Tools To Enhance Your WordPress Website If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier. Astra theme – A popular WordPress theme known for speed and flexibility. Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes. OttoKit – Automate daily tasks by connecting your favorite apps and plugins effortlessly. SureForms – Build beautiful, high-converting forms, quizzes, and surveys. SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers. Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results. Need help getting started? Check out our getting started guide and documentation for step-by-step tutorials. Have a question? Visit the support forum right here on WordPress.org. We’re happy to help! Want to explore more? Learn about all features, FAQs, and tips on our website. 🎉 Love Ultimate Addons for Elementor? Watch tutorials and walk throughs on our YouTube channel. Found us helpful? Leave a review – we’d love to hear from you!