Changeset 2859389
- Timestamp:
- 02/03/2023 06:09:23 AM (3 years ago)
- Location:
- team-member-slider-block/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
team-member-slider-block.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team-member-slider-block/trunk/readme.txt
r2858756 r2859389 1 1 === Team Member Slider Block === 2 2 Contributors: krunal265 3 Tags: slider block, team member, gutenberg block, grid layout3 Tags: repeater block, slider block, team member, gutenberg block, grid layout 4 4 Requires at least: 5.9.3 5 5 Tested up to: 6.1 … … 13 13 == Description == 14 14 Team Member Slider Block is the best Gutenberg plugin for displaying information about team members. This plugin consists of one Gutenberg block. There are columns and a slider layout included. Layouts can be customized according to your needs. 15 15 16 In addition, it has the following features: 16 1) Manageable column and slider layout. Both layouts have different settings. 17 2) There are separate settings for images, member information, and social icons. 18 3) For each member, you can add more social icons and their URLs. 17 1) This is a repeater block. You can add as many single blocks as you need. 18 2) Manageable column and slider layout. Both layouts have different settings. 19 3) There are separate settings for images, member information, and social icons. 20 4) For each member, you can add more social icons and their URLs. 19 21 20 22 == Installation == -
team-member-slider-block/trunk/team-member-slider-block.php
r2858756 r2859389 23 23 add_action( 'init', 'tmsb_create_block_team_member_slider_block_block_init' ); 24 24 25 /** 26 * Enqueue files for frontend. 27 */ 25 28 add_action( 26 29 'wp_enqueue_scripts', … … 36 39 37 40 wp_enqueue_script( 'tmsb-sliderjs', plugins_url( 'assets/js/slickerslider.js', __FILE__ ), array( 'jquery' ), '1.0.0', true ); 41 42 wp_enqueue_style( 'dashicons' ); 38 43 } 39 44 ); 45 46 /** 47 * Enqueue files for backend. 48 */ 40 49 add_action( 41 50 'admin_enqueue_scripts',
Note: See TracChangeset
for help on using the changeset viewer.