Skip to content

louisho5/dynamic-shortcode-widget-for-elementor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Shortcode Widget for Elementor

Easy WordPress Shortcode Interface

Dynamic Shortcode Widget for Elementor plugin let you to add custom shortcode with simple input field. It provides an easy to use interface for managing attributes for your shortcode.

Get started at http://wordpress.org/plugins/dynamic-shortcode-widget-for-elementor/

Screenshot

alt Shortcode Widget

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!"

License

Changelog

  • v0.3.1

    • Support the latest WordPress & Elementor
  • v0.3.0

    • Added WYSIWYG option for the type of input fields
  • v0.2.1

    • Escape only with qoute characters instead of html
  • v0.2.0

    • Added URL option for the type of input fields
  • v0.1.0

    • Plugin announced
    • Added image option for the type of input fields

About

WordPress Dynamic Shortcode for Elementor

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages