Changeset 3204543
- Timestamp:
- 12/09/2024 01:33:04 AM (12 months ago)
- Location:
- beauty-box-block/trunk
- Files:
-
- 2 edited
-
plugin.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beauty-box-block/trunk/plugin.php
r3203334 r3204543 5 5 * Plugin URI: https://github.com/StevenDufresne/beauty-box-gutenberg-block 6 6 * Author: dufresnesteven 7 * Version: 1.2. 17 * Version: 1.2.2 8 8 * License: GPL2+ 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 12 12 function gutenberg_beauty_box_register() { 13 13 14 // Register our block script with WordPress 14 // Register our block script with WordPress. 15 15 wp_register_script( 16 16 'gutenberg-beauty-box', … … 19 19 ); 20 20 21 // Register our block's base CSS 21 // Register our block's base CSS. 22 22 wp_register_style( 23 23 'gutenberg-beauty-box-style', … … 25 25 ); 26 26 27 // Register our block's editor-specific CSS 27 // Register our block's editor-specific CSS. 28 28 wp_register_style( 29 29 'gutenberg-beauty-box-edit-style', … … 32 32 ); 33 33 34 // Enqueue the script in the editor 34 // Enqueue the script in the editor. 35 35 register_block_type('beauty-box/main-box', array( 36 36 'editor_script' => 'gutenberg-beauty-box', -
beauty-box-block/trunk/readme.txt
r3203334 r3204543 4 4 Requires at least: 5.0 5 5 Tested up to: 6.7 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 19 19 == Changelog == 20 20 21 = 1.3 = 22 * Add comment. 21 23 22 24 = 1.2 =
Note: See TracChangeset
for help on using the changeset viewer.