Post Duplicator
Save Time. Work Smarter. Duplicate Any Post Type with Ease. Post Duplicator is the ultimate WordPress plugin for quickly creating exact duplicates of any post type in your WordPress site. Whether you’re working with standard posts, pages, or custom post types, this plugin makes it effortless to clone content while preserving all taxonomies, custom fields, and metadata. Key Features: Universal Post Type Support – Works with every post type WordPress supports, including custom post types from your favorite plugins and themes Complete Data Preservation – Automatically copies all taxonomies, custom fields, metadata, and featured images Bulk Duplication – Select and duplicate multiple posts at once with individual settings per post Multiple Clones – Create multiple copies of a single post simultaneously (up to 50 clones) Flexible Duplication Options – Customize title, slug, status, author, date, post type, and parent for each duplicate Featured Image Management – Set, replace, or remove featured images directly in the duplication modal Smart Defaults – Configure default settings that apply to all duplications (draft status, current user as author) Post Types Configuration – Control which post types can be duplicated and which appear in the “Post Type” dropdown menu Permission Control – Granular control over who can duplicate posts with role-based permissions Modern Interface – Beautiful modal interface with live editing and expandable settings Cross-Post Type Duplication – Convert posts to different post types during duplication Hierarchical Post Support – Set parent posts for pages and hierarchical custom post types One-Click Operation – Duplicate posts from the posts list, edit screen, or block editor toolbar Perfect For: Developers – Quickly generate test content and dummy data for development using bulk or multiple clone features Content Managers – Create content templates and variations efficiently with one-click duplication Bloggers – Repurpose successful posts with different angles or formats using multiple clones E-commerce – Duplicate product variations and bulk duplicate similar listings across categories Content Marketers – Create A/B testing variations with the multiple clones feature Site Migrations – Bulk duplicate posts when restructuring or migrating content Multilingual Sites – Works seamlessly with WPML and Polylang for multilingual content What Gets Duplicated: Post content and formatting Title and slug (with customizable suffixes or full editing) All custom fields and metadata Categories, tags, and custom taxonomies Featured images (with ability to change or remove) Post format and excerpt Comment and ping status Menu order Post parent (for hierarchical post types) What Doesn’t Get Duplicated: Comments (by design – prevents duplicate comment threads) Post ID and GUID (new unique identifiers assigned) How to Use: Single Duplication: Hover over any post and click “Duplicate [Post Type]” in the row actions, or click the “Duplicate Post” button in the Gutenberg editor Multiple Clones: In the duplication modal, click the copy icon to create multiple copies of a single post (up to 50 clones) Bulk Duplication: Select multiple posts using checkboxes, choose “Duplicate” from the Bulk Actions dropdown, then configure each post individually Customize Settings: Edit title, slug, status, author, date, post type, featured image, and parent for each duplicate Configure Defaults: Go to Settings > Post Duplicator to set default status, author, date, and title/slug suffixes Configure Post Types: Go to Settings > Post Duplicator > Post Types to control which post types can be duplicated and which appear in the “Post Type” dropdown menu Default Settings: The plugin works immediately with sensible defaults: * Duplicated posts are created as Drafts (prevents accidental publishing) * Title suffix: “Copy” * Slug suffix: “copy” * Author: Current User * Date: Current Time All defaults can be customized in Settings > Post Duplicator. Integration: Post Duplicator works seamlessly with: * WPML and Polylang (multilingual support) * WooCommerce (excludes review counts automatically) * ACF (Advanced Custom Fields) – preserves all field data * WP Customer Area (special file duplication support) * All custom post types and taxonomies Security: Users without publish_posts capability cannot publish duplicates (forced to Pending) Non-authors cannot duplicate unpublished posts from other users Granular permission system controls who can duplicate posts All data is sanitized and validated before duplication Developer-Friendly: Includes hooks and filters for easy customization: * mtphr_post_duplicator_created action * mtphr_post_duplicator_meta_{$key}_enabled filter * mtphr_post_duplicator_meta_value filter
Top keywords
- post39×5.81%
- duplicate15×2.24%
- posts14×2.09%
- duplication11×1.64%
- post types11×1.64%
- types11×1.64%
- type10×1.49%
- custom9×1.34%
- multiple9×1.34%
- post type9×1.34%
- content8×1.19%
- duplicator8×1.19%
Press This
Press This is a little tool that lets you grab bits of the web and create new posts with ease. It will even allow you to choose from images or videos included on the page and use them in your post. Use Press This as a quick and lightweight way to highlight another page on the web. Version 2.0 – Gutenberg Block Editor Press This 2.0 brings the modern WordPress block editor experience to the bookmarklet popup. You can now compose posts using familiar blocks like Paragraph, Heading, Image, Quote, List, and Embed. New Features: Gutenberg Block Editor – Full block editor integration for a consistent WordPress editing experience Smart Post Format Suggestions – Automatically suggests Video, Quote, or Link formats based on content Enhanced Content Extraction – Improved scraping with JSON-LD structured data support Client-Side Only Scraping – All content extraction happens in your browser for better privacy and security Featured Image Support – Set any scraped image as your post’s featured image Improved Media Grid – Better thumbnail display with support for video and audio embeds Filters for Developers Press This 2.0 includes new filters for customization: press_this_allowed_blocks – Customize which blocks are available in the editor press_this_post_format_suggestion – Modify the auto-suggested post format See the Developer Documentation section below for details. Contributing Bugs and PRs can be submitted via https://github.com/WordPress/press-this . Developer Documentation New Hooks and Filters in 2.0 press_this_allowed_blocks Customize which blocks are available in the Press This editor. add_filter( 'press_this_allowed_blocks', function( $blocks ) { // Add the gallery block $blocks[] = 'core/gallery'; // Remove the embed block $blocks = array_filter( $blocks, function( $block ) { return $block !== 'core/embed'; } ); return $blocks; } ); Default blocks: core/paragraph, core/heading, core/image, core/quote, core/list, core/list-item, core/embed press_this_post_format_suggestion Modify or override the auto-suggested post format based on content. add_filter( 'press_this_post_format_suggestion', function( $suggested_format, $data ) { // If the URL contains 'podcast', suggest audio format if ( ! empty( $data['u'] ) && strpos( $data['u'], 'podcast' ) !== false ) { return 'audio'; } return $suggested_format; }, 10, 2 ); The $data array contains scraped content including: – u – Source URL – s – Selected text – t – Page title – _images – Array of image URLs – _embeds – Array of embed URLs – _meta – Meta tag data – _jsonld – JSON-LD structured data Preserved Hooks from 1.x All existing hooks continue to work: press_this_redirect_in_parent – Control post-save redirect behavior press_this_save_post – Filter post data before saving press_this_save_redirect – Filter redirect URL after save enable_press_this_media_discovery – Toggle media scraping press_this_data – Filter the complete scraped data array press_this_suggested_html – Filter default content templates shortcut_link – Customize the bookmarklet URL History WordPress, from the earliest days, included some way to bring in snippets from other websites for you to post on your own. The original “Press It” was removed from WordPress 2.5 and a new “Press This” added in 2.6. It existed pretty much unchanged until WordPress 4.2, which completely refreshed Press This. In WordPress 4.9, Press This was spun out to a “canonical plugin” — an official plugin from WordPress.org so sites who wanted to use it could, but streamline more niche functionality out of Core. This was previously done with the Importers. In version 2.0, Press This was modernized to use the Gutenberg block editor, bringing it in line with the modern WordPress editing experience while maintaining backward compatibility with existing installations.