-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadme.txt
77 lines (48 loc) · 2.26 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=== Dynamic Shortcode Widget for Elementor ===
Tags: shortcode builder, shortcode widget, dynamic shortcode, shortcode editor, page builder, editor, drag-and-drop, visual editor, website builder, elementor, wysiwyg, elementor addons, elementor extensions, elementor modules, elementor templates
Tested up to: 6.3
Stable tag: 0.4.0
Contributors: louisho5
Dynamic Shortcode Widget for Elementor plugin let you to add custom shortcode with simple input field.
== Description ==
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](https://github.com/louisho5/dynamic-shortcode-widget-for-elementor)
= Limits =
This plugin does not support enclosing shortcode!
== Installation ==
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
== Frequently Asked Questions ==
##### 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!"
== Screenshots ==
1. Widget on elementor
== Changelog
= 0.3.0 =
* Added WYSIWYG option for the type of input fields
= 0.2.1 =
* Escape only with qoute characters instead of html
= 0.2.0 =
* Added URL option for the type of input fields
= 0.1.0 =
* Plugin announced
* Options for the type of input fields
== Privacy and GDPR ==
This plugin does not collect or process any personal user data.