Title: Publică-asta
Author: WordPress.org
Published: <strong>4 iunie 2014</strong>
Last modified: 26 martie 2026

---

Caută module

![](https://ps.w.org/press-this/assets/banner-772x250.png?rev=3439079)

![](https://ps.w.org/press-this/assets/icon.svg?rev=3439079)

# Publică-asta

 De [WordPress.org](https://profiles.wordpress.org/wordpressdotorg/)

[Descarcă](https://downloads.wordpress.org/plugin/press-this.2.0.2.zip)

 * [Detalii](https://ro.wordpress.org/plugins/press-this/#description)
 * [Recenzii](https://ro.wordpress.org/plugins/press-this/#reviews)
 *  [Instalare](https://ro.wordpress.org/plugins/press-this/#installation)
 * [Dezvoltare](https://ro.wordpress.org/plugins/press-this/#developers)

 [Suport](https://wordpress.org/support/plugin/press-this/)

## Descriere

Publică-asta este o mică unealtă ce-ți dă posibilitatea să preiei bucăți de pe web
și să creezi cu ele ușor noi articole.
 Îți va permite chiar să alegi dintre imaginile
sau videourile incluse în pagină și să le folosești în articolul tău. Folosește 
Publică-asta ca o modalitate rapidă și ușoară de a evidenția o altă pagină de pe
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](https://ro.wordpress.org/plugins/press-this/?output_format=md#developer-documentation)
section below for details.

### Contribuie

Erorile și PR-urile pot fi trimise 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

### Istoric

De la primele lansări, WordPress a inclus o modalitate de a prelua fragmente de 
pe alte site-uri web ca să le publici pe al tău.

În versiunea WordPress 2.5 a fost înlăturat originalul „Press It” și în versiunea
2.6. a fost adăugat noul „Press This”. A rămas aproape neschimbat până la WordPress
4.2 care a reîmprospătat complet Press This.

În WordPress 4.9, Press This a fost transformat într-un „modul canonic” – un modul
WordPress.org oficial, deci putea fi folosit pe orice site – care eficientizează
mai multe funcționalități de nișă din nucleul WordPress. Anterior erau folosiți 
importatori.

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.

## Capturi ecran

 * [[
 * [[
 * [[
 * [[

## Instalare

 1. Ca de obicei, instalează modulul în panoul tău de control wp-admin via Module -
    > Adaugă modul nou.
 2. Pentru pași suplimentari la instalare, vizitează pagina Unelte din wp-admin.

## Întrebări frecvente

### Is Press This compatible with my existing bookmarklet?

Yes! Existing bookmarklets from version 1.x will continue to work. However, we recommend
updating your bookmarklet to get the enhanced features of version 2.0. An upgrade
prompt will appear when using an older bookmarklet.

### Which blocks are available in Press This?

By default, Press This includes: Paragraph, Heading, Image, Quote, List, and Embed
blocks. Developers can customize this using the `press_this_allowed_blocks` filter.

### Can I still use the full WordPress editor?

Absolutely! Click the „Standard Editor” option in the publish dropdown to save your
draft and continue editing in the full WordPress block editor.

## Recenzii

![](https://secure.gravatar.com/avatar/6e884a89730c7acd3f5350425b69848477a26de263f028a9a7e4edcb8591362b?
s=60&d=retro&r=g)

### 󠀁[Currently partially broken](https://wordpress.org/support/topic/works-great-8082/)󠁿

 [silentwisher](https://profiles.wordpress.org/silentwisher/) 16 octombrie 2024

Its currently broken causing many images being generated for the featured image.
Please fix.

![](https://secure.gravatar.com/avatar/0771f018c5c481aecb62b5789070e663f32e747831b01c657b7246e43dc9ed21?
s=60&d=retro&r=g)

### 󠀁[Must Have](https://wordpress.org/support/topic/must-have-657/)󠁿

 [dmsr](https://profiles.wordpress.org/dmsr/) 22 iulie 2022

J’adore cette fonctionnalité de WP, pourquoi s’en passer si on partage des liens
sur son site!?!?

![](https://secure.gravatar.com/avatar/38247a09d4c18d5d074d157a12cff9d21b8c65a0ab22dfa755cca45f44aab8c2?
s=60&d=retro&r=g)

### 󠀁[Worthless Without Scriptlet](https://wordpress.org/support/topic/worthless-without-scriptlet/)󠁿

 [lestado](https://profiles.wordpress.org/lestado/) 29 octombrie 2021

If you don’t have the scriptlet bookmarked already this plugin is WORTHLESS because
there is literally NO PLACE to get the code for the bookmark ANYWHERE.

![](https://secure.gravatar.com/avatar/e58d28edc2f63935b090bb12b94e7a18727823d04d3a4a34e7133231f9cc69fa?
s=60&d=retro&r=g)

### 󠀁[Great you continue developing this](https://wordpress.org/support/topic/great-you-continue-developing-this/)󠁿

 [comunicacionabierta](https://profiles.wordpress.org/comunicacionabierta/) 7 martie
2021

I think this is one of the perfect plugins to keep the blogs alive and helping to
make them more a personal bitacora. Thanks!

![](https://secure.gravatar.com/avatar/89eea1e88f6ca014b3bef4218d334e579f6eae3452bda7ab34e076412a1ab97f?
s=60&d=retro&r=g)

### 󠀁[Tried, killed browser (Safari), uninstalled.](https://wordpress.org/support/topic/tried-killed-browser-safari-uninstalled/)󠁿

 [bkahlert](https://profiles.wordpress.org/bkahlert/) 27 aprilie 2020

I installed it, wrote a post, tried to save, my Safari browser hang, consumed more
than 4GB of memory and finally crashed with my post gone of course.

![](https://secure.gravatar.com/avatar/776e9f93cb72a6ef49cc303f0f3a5843419a07f0043cb23d64f49db44c56aeba?
s=60&d=retro&r=g)

### 󠀁[Pretty Slick. Forgot About This Guy](https://wordpress.org/support/topic/pretty-slick-forgot-about-this-guy/)󠁿

 [Seth Goldstein](https://profiles.wordpress.org/goldsteinmedia/) 27 decembrie 2018

Forgot about Press This. Never used it in the past. But now I think I’ll be addicted.

 [ Citește toate cele 25 de recenzii ](https://wordpress.org/support/plugin/press-this/reviews/)

## Contributori și dezvoltatori

„Publică-asta” este un software open-source. La acest modul au contribuit următoarele
persoane.

Contributori

 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Brandon Kraft ](https://profiles.wordpress.org/kraftbj/)

„Publică-asta” a fost tradus în 24 de locale. Mulțumim [traducătorilor](https://translate.wordpress.org/projects/wp-plugins/press-this/contributors)
pentru contribuția lor.

[Tradu „Publică-asta” în limba ta.](https://translate.wordpress.org/projects/wp-plugins/press-this)

### Te interesează dezvoltarea?

[Răsfoiește codul](https://plugins.trac.wordpress.org/browser/press-this/), vezi
[depozitarul SVN](https://plugins.svn.wordpress.org/press-this/), sau abonează-te
la [jurnalul de dezvoltare](https://plugins.trac.wordpress.org/log/press-this/) 
prin [RSS](https://plugins.trac.wordpress.org/log/press-this/?limit=100&mode=stop_on_copy&format=rss).

## Istoric modificări

#### 2.0.2

 * **New:** Undo/redo support in the block editor (Ctrl+Z / Ctrl+Shift+Z)
 * **New:** Block transform keyboard shortcuts (e.g. heading, list, quote)
 * **New:** Rich text format keyboard shortcuts via format-library (bold, italic,
   link, etc.)
 * **New:** Bookmarklet now preserves HTML formatting in text selections
 * **Fix:** Critical error when saving posts with external images in REST context
 * **Fix:** Scraped media inserting at bottom of post instead of cursor position
 * **Fix:** Quote block unwrap losing nested inner blocks
 * **Fix:** Category panel styles not loading and stale search filter results
 * **Fix:** Stale state in category toggle handler
 * **Change:** Removed auto-suggestion of link post format
 * **Change:** Restored category search filter using Gutenberg components

#### 2.0.1

 * **New:** Gutenberg block editor replaces TinyMCE for modern editing experience
 * **New:** Smart post format auto-suggestion based on content type
 * **New:** `press_this_allowed_blocks` filter for customizing available blocks
 * **New:** `press_this_post_format_suggestion` filter for customizing format suggestions
 * **New:** JSON-LD structured data extraction for better content discovery
 * **New:** Open Graph video metadata extraction for improved embed detection
 * **New:** Featured image selection from scraped images
 * **New:** Alternate canonical URL detection via hreflang
 * **Improved:** Client-side only content extraction (removed server-side scraping)
 * **Improved:** Media grid with video/audio type indicators
 * **Improved:** Bookmarklet version detection with upgrade prompts
 * **Improved:** Title extraction now checks JSON-LD headline
 * **Improved:** Description extraction now checks JSON-LD description
 * **Compatibility:** All 1.x hooks and filters preserved
 * **Compatibility:** Legacy bookmarklet URL format continues to work
 * **Requires:** WordPress 6.9 or higher
 * **Requires:** PHP 7.4 or higher

#### 1.1.2

 * Corectează designul pentru clasa .press-this .modal-close (mulțumim https://github.
   com/crishnakh)
 * Adaugă testat până la versiunea 6.7.1.

#### 1.1.1

 * Corectează o problemă cu împachetarea modulului pentru SVN.

#### 1.1.0

 * Restaurează funcționalitatea „marcator” găsită în WordPress 4.8 și în versiunile
   anterioare.

#### 1.0

 * Prima lansare ca modul. Inițial a făcut parte din WordPress în sine.

## Modul al comunității

Acest modul este dezvoltat și susținut de o comunitate.

## Meta

 *  Versiunea **2.0.2**
 *  Ultima actualizare **Acum 2 luni**
 *  Instalări active: **6.000+**
 *  Versiune WordPress ** 6.9 sau mai recentă **
 *  Testat până la **7.0**
 *  Versiune PHP ** 7.4 sau mai recentă **
 *  Limbi
 * [Albanian](https://sq.wordpress.org/plugins/press-this/), [Chinese (China)](https://cn.wordpress.org/plugins/press-this/),
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/press-this/), [Croatian](https://hr.wordpress.org/plugins/press-this/),
   [Czech](https://cs.wordpress.org/plugins/press-this/), [English (Australia)](https://en-au.wordpress.org/plugins/press-this/),
   [English (Canada)](https://en-ca.wordpress.org/plugins/press-this/), [English (US)](https://wordpress.org/plugins/press-this/),
   [French (Belgium)](https://fr-be.wordpress.org/plugins/press-this/), [French (France)](https://fr.wordpress.org/plugins/press-this/),
   [German](https://de.wordpress.org/plugins/press-this/), [Greek](https://el.wordpress.org/plugins/press-this/),
   [Italian](https://it.wordpress.org/plugins/press-this/), [Japanese](https://ja.wordpress.org/plugins/press-this/),
   [Korean](https://ko.wordpress.org/plugins/press-this/), [Norwegian (Bokmål)](https://nb.wordpress.org/plugins/press-this/),
   [Portuguese (Brazil)](https://br.wordpress.org/plugins/press-this/), [Romanian](https://ro.wordpress.org/plugins/press-this/),
   [Russian](https://ru.wordpress.org/plugins/press-this/), [Serbian](https://sr.wordpress.org/plugins/press-this/),
   [Slovenian](https://sl.wordpress.org/plugins/press-this/), [Spanish (Chile)](https://cl.wordpress.org/plugins/press-this/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/press-this/), [Swedish](https://sv.wordpress.org/plugins/press-this/)
   și [Turkish](https://tr.wordpress.org/plugins/press-this/).
 *  [Tradu în limba ta](https://translate.wordpress.org/projects/wp-plugins/press-this)
 * Etichete
 * [Bookmarklet](https://ro.wordpress.org/plugins/tags/bookmarklet/)[gutenberg](https://ro.wordpress.org/plugins/tags/gutenberg/)
   [photo post](https://ro.wordpress.org/plugins/tags/photo-post/)[post](https://ro.wordpress.org/plugins/tags/post/)
   [Quick Post](https://ro.wordpress.org/plugins/tags/quick-post/)
 *  [Vizualizare avansată](https://ro.wordpress.org/plugins/press-this/advanced/)

## Evaluări

 3.7 din 5 stele.

 *  [  15 5 – recenzii (stele)     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=5)
 *  [  2 4 – recenzii (stele)     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=4)
 *  [  0 3 – recenzii (stele)     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=3)
 *  [  1 2 – recenzie (stele)     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=2)
 *  [  7 1 – recenzii (stele)     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/press-this/reviews/#new-post)

[Vezi toate recenziile](https://wordpress.org/support/plugin/press-this/reviews/)

## Contributori

 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Brandon Kraft ](https://profiles.wordpress.org/kraftbj/)

## Suport

Probleme rezolvate în ultimele două luni:

     0 din 1

 [Vezi forumul pentru suport](https://wordpress.org/support/plugin/press-this/)

## Donează

Vrei să sprijini dezvoltarea acestui modul?

 [ Donează pentru acest modul ](http://wordpressfoundation.org/donate/)