Changeset 2752237
- Timestamp:
- 07/05/2022 08:18:12 PM (4 years ago)
- Location:
- wpwing-sticky-block
- Files:
-
- 2 edited
- 5 copied
-
tags/1.0.1 (copied) (copied from wpwing-sticky-block/trunk)
-
tags/1.0.1/build (copied) (copied from wpwing-sticky-block/trunk/build)
-
tags/1.0.1/readme.txt (copied) (copied from wpwing-sticky-block/trunk/readme.txt) (5 diffs)
-
tags/1.0.1/sticky-block.js (copied) (copied from wpwing-sticky-block/trunk/sticky-block.js)
-
tags/1.0.1/wpwing-sticky-block.php (copied) (copied from wpwing-sticky-block/trunk/wpwing-sticky-block.php) (1 diff)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/wpwing-sticky-block.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpwing-sticky-block/tags/1.0.1/readme.txt
r2750486 r2752237 1 1 === WPWing Sticky Block === 2 2 3 Contributors: wpwing, voboghure 3 4 Tags: sticky, sticky block, gutenberg, block editor … … 5 6 Tested up to: 6.0 6 7 Requires PHP: 7.0 7 Stable tag: 1.0. 08 Stable tag: 1.0.1 8 9 License: GPL-3.0-or-later 9 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 13 14 == Description == 14 15 15 The WPWing Sticky Block can be added to anyanywhere and will be sticky as soon as it hits the top with an optional offset pixel of the page after you scroll down. The WPWing Sticky Block is a container block meaning you can add other blocks in it (make all of them sticky) or can be added in another block like columns, etc.16 The WPWing Sticky Block can be added anywhere and will be sticky as soon as it hits the top with an optional offset pixel of the page after you scroll down. The WPWing Sticky Block is a container block meaning you can add other blocks in it (make all of them sticky) or can be added in another block like columns, etc. 16 17 17 18 = Features = … … 19 20 * **Container Block**: WPWing Sticky Block works as a container block, that can hold other blocks. 20 21 * **Normal Block**: You can add WPWing Sticky Block in any column, group or table block. 21 * **Positioning from top**: You can add any amount of space between the Sticky Block and the top of the page.22 * **Admin Bar aware**: If the current user has an admin toolbar then the sticky block will add the height and stick after that.23 * **Z-index**: You can use z-index so that no element can obscure your sticky block.22 * **Positioning from top**: You can add any amount of space between the WPWing Sticky Block and the top of the page. 23 * **Admin Bar aware**: If the current user has an admin toolbar then the WPWing Sticky Block will add the height and stick after that. 24 * **Z-index**: You can use z-index so that no element can obscure your WPWing Sticky Block. 24 25 25 26 == Installation == … … 39 40 40 41 1. WPWing Sticky block in block search. 41 2. Output in editor.42 3. Block setting ineditor.42 2. Output in the editor. 43 3. Block settings in the editor. 43 44 4. Output in frontend when sticky. 44 45 -
wpwing-sticky-block/tags/1.0.1/wpwing-sticky-block.php
r2750486 r2752237 1 1 <?php 2 2 3 /** 3 4 * Plugin Name: WPWing Sticky Block 4 * Description: Example static block scaffolded with Create Block tool. 5 * Requires at least: 5.9 5 * Description: A sticky block which can hold any other block. 6 * Version: 1.0.1 7 * Requires at least: 5.8 8 * Tested up to: 6.0 6 9 * Requires PHP: 7.0 7 * Version: 1.0.08 * Author : The WordPress Contributors10 * Author: WPWing 11 * Author URI: https://wpwing.com/ 9 12 * License: GPL-3.0-or-later 10 13 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 14 * Text Domain: wpwing-sticky-block 15 * Domain Path: /languages 12 16 * 13 17 * @package create-block -
wpwing-sticky-block/trunk/readme.txt
r2750486 r2752237 1 1 === WPWing Sticky Block === 2 2 3 Contributors: wpwing, voboghure 3 4 Tags: sticky, sticky block, gutenberg, block editor … … 5 6 Tested up to: 6.0 6 7 Requires PHP: 7.0 7 Stable tag: 1.0. 08 Stable tag: 1.0.1 8 9 License: GPL-3.0-or-later 9 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 13 14 == Description == 14 15 15 The WPWing Sticky Block can be added to anyanywhere and will be sticky as soon as it hits the top with an optional offset pixel of the page after you scroll down. The WPWing Sticky Block is a container block meaning you can add other blocks in it (make all of them sticky) or can be added in another block like columns, etc.16 The WPWing Sticky Block can be added anywhere and will be sticky as soon as it hits the top with an optional offset pixel of the page after you scroll down. The WPWing Sticky Block is a container block meaning you can add other blocks in it (make all of them sticky) or can be added in another block like columns, etc. 16 17 17 18 = Features = … … 19 20 * **Container Block**: WPWing Sticky Block works as a container block, that can hold other blocks. 20 21 * **Normal Block**: You can add WPWing Sticky Block in any column, group or table block. 21 * **Positioning from top**: You can add any amount of space between the Sticky Block and the top of the page.22 * **Admin Bar aware**: If the current user has an admin toolbar then the sticky block will add the height and stick after that.23 * **Z-index**: You can use z-index so that no element can obscure your sticky block.22 * **Positioning from top**: You can add any amount of space between the WPWing Sticky Block and the top of the page. 23 * **Admin Bar aware**: If the current user has an admin toolbar then the WPWing Sticky Block will add the height and stick after that. 24 * **Z-index**: You can use z-index so that no element can obscure your WPWing Sticky Block. 24 25 25 26 == Installation == … … 39 40 40 41 1. WPWing Sticky block in block search. 41 2. Output in editor.42 3. Block setting ineditor.42 2. Output in the editor. 43 3. Block settings in the editor. 43 44 4. Output in frontend when sticky. 44 45 -
wpwing-sticky-block/trunk/wpwing-sticky-block.php
r2750486 r2752237 1 1 <?php 2 2 3 /** 3 4 * Plugin Name: WPWing Sticky Block 4 * Description: Example static block scaffolded with Create Block tool. 5 * Requires at least: 5.9 5 * Description: A sticky block which can hold any other block. 6 * Version: 1.0.1 7 * Requires at least: 5.8 8 * Tested up to: 6.0 6 9 * Requires PHP: 7.0 7 * Version: 1.0.08 * Author : The WordPress Contributors10 * Author: WPWing 11 * Author URI: https://wpwing.com/ 9 12 * License: GPL-3.0-or-later 10 13 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 14 * Text Domain: wpwing-sticky-block 15 * Domain Path: /languages 12 16 * 13 17 * @package create-block
Note: See TracChangeset
for help on using the changeset viewer.