Linux 软件免费装
Banner图

Dynamic Shortcode Widget for Elementor

开发者 louisho5
更新时间 2022年8月3日 15:51
WordPress版本: 6.0

标签

elementor shortcode builder page builder editor wysiwyg visual editor elementor addons elementor extensions drag-and-drop website builder elementor templates dynamic shortcode elementor modules shortcode widget shortcode editor

下载

0.2.1 0.3.0 0.1.0 0.2.0

详情介绍:

Dynamic Shortcode Elementor provides an easy to use interface for managing attributes for your shortcode. What is Dynamic Shortcode Widget Why you have to use your custom shortcodes so confused like [MyShortcode name="John Doe" slogan=""Simplicity is king""] With Dynamic Shortcode Widget for Elementor plugin you can just copy the shortcode name, attributes and its data to manage them all.. And now you can input your content in textarea or select your image from the media gallery. Also, you are no longer to concern about the html escape in your shortcode start from today. You may find more on Github Limits This plugin does not support enclosing shortcode!

安装:

  1. Put the plugin folder into [wordpress_dir]/wp-content/plugins/
  2. Go into the WordPress admin interface and activate the plugin
  3. Optional: go to the options page and configure the plugin

屏幕截图:

  • Widget on elementor

常见问题:

How to create a custom shortcode

function custom_shortcode( $atts ) { $attributes = shortcode_atts( array( 'name' => 'world' ), $atts ); return '<h1>Hello ' . $attributes['name'] . '!</h1>'; } add_shortcode( 'helloworld', 'custom_shortcode' );

How to use the shortcode

Shortcode: [helloworld] Outputs "Hello world!" Shortcode: [helloworld name=”Bob”] Outputs "Hello Bob!"