=== Reusable Blocks Extended === Contributors: audrasjb, whodunitagency Donate link: https://www.paypal.me/audrasjb Tags: Reusable, Blocks, Gutenberg, Widget, PHP Function, Preview, Shortcode, Réutilisable, bloc Requires at least: 5.2 Tested up to: 5.3 Stable tag: 0.2 Requires PHP: 7.0 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html Extend Gutenberg Reusable Blocks feature with a complete admin panel, widgets, shortcodes and PHP functions. == Description == Extend Gutenberg Reusable Blocks feature with a complete admin panel, widgets, shortcodes and PHP functions. This plugin extends the Reusable Blocks admin interface and provides few fancy features: * Add Reusable Blocks dashboard informations * Activate Reusable Blocks admin screen * Provide a list of Posts where each Reusable Block is used and the date it was last modified * Provide a live preview of the block from the Reusable Blocks admin screen, with your theme stylesheets * Provide a Reusable Blocks Widget to use your block anywhere you want in your theme’s widgets areas * Provide a Reusable Blocks Shortcode to use your block anywhere you want in your Post types (even if they use the Classic Editor rather than Gutenberg!) * Provide some Reusable Blocks PHP functions to use your block anywhere you want in your theme even == Screenshots == 1. Reusable Blocks admin screen with preview 2. Reusable block widget == Installation == 1. Install the plugin and activate. 2. Go to Reusable Blocks Admin Menu == Frequently Asked Questions == = How to implement Reusable Blocks using Widgets = * Go to WP-Admin > Appearance > Widgets. * Add "Reusable Block" Widget to your widget area. * Choose the reusable block you want to use and save the widget. = How to implement Reusable Blocks with shortcode = * Go to WP-Admin > Reusable Blocks. * Choose the reusable block you want to use; copy the provided shortcode. * Then, paste it where you want. Syntax: `[reblex id="NUMERIC_ID_OF_THE_REUSABLE_BLOCK"]` = How to implement Reusable Blocks with PHP functions = * Go to WP-Admin > Reusable Blocks. * Choose the reusable block you want to use; copy the provided PHP function. * Then, paste it where you want. Syntax: `reblex_display_block( NUMERIC_ID_OF_THE_REUSABLE_BLOCK );` Note for developers: you may also need to **get** the shortcode data **before** displaying it. In this case, you should use the following function: `reblex_get_block( NUMERIC_ID_OF_THE_REUSABLE_BLOCK );` == Changelog == = 0.1 = * Use @import instead of link tag or enqueues in the preview iframe. = 0.1 = * Plugin initial commit. Works fine :)