Plugin for adding rich text editing capabilities to textareas in Shortcake.
This plug-in extends on the capabilities of Shortcake (Shortcode UI) by adding rich text editing capabilities to textarea inputs in the Shortcake interface, when the specific textarea constructors contain the shortcake-richtext class name.
It uses TinyMCE.
You need the latest version of of [Shortcake (Shortcode UI)] installed and activated.
/wp-content/plugins/shortcode-ui-richtext
directory.php
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
You need the latest version of of [Shortcake (Shortcode UI)] installed and activated.
/wp-content/plugins/shortcode-ui-richtext
directory.php
'encode' => true,
'meta' => array(
'class' => 'shortcake-richtext',
),
This is a default shortcode with a single textarea:
`php
shortcode_ui_register_for_shortcode( ‘shortcode_name’,
array(
‘label’ => esc_html__( ‘Shortcode Name’, ‘namespace’ ),
‘listItemImage’ => ‘dashicons-text’,
‘attrs’ => array(
array(
‘label’ => esc_html__( ‘Text Element’, ‘namespace’ ),
‘attr’ => ‘text_element’,
‘type’ => ‘textarea’,
),
),
)
);
`
This is the same code with the richtext capability added in on the text_element:
`php
shortcode_ui_register_for_shortcode( ‘shortcode_name’,
array(
‘label’ => esc_html__( ‘Shortcode Name’, ‘namespace’ ),
‘listItemImage’ => ‘dashicons-text’,
‘attrs’ => array(
array(
‘label’ => esc_html__( ‘Text Element’, ‘namespace’ ),
‘attr’ => ‘text_element’,
‘type’ => ‘textarea’,
‘encode’ => true,
‘meta’ => array(
‘class’ => ‘shortcake-richtext’,
),
),
),
)
);
`
Outputting requires decoding, and since Shortcake uses url encoding, the attribute powered by the rich text editor needs to be urldecoded before rendering its contents, like in the following example using the urldecode
function:
`php
function shortcode_name( $atts ) {
extract( shortcode_atts(
array(
‘text_element’ => ”,
),
$atts
));
return ‘
‘ . urldecode( $text_element ) . ‘
‘;
}
`
Before submitting a report on the GitHub Issue tracker, please ensure the issue you are experiencing does not exist with using the latest Shortcake (Shortcode UI) version downloaded from their own GitHub repository.
Initial release.
Modified SummerNote default configuration to initialise a toolbar which is more WordPress-friendly.
Added more examples to the readme.
Ads default rich text editing to the shortcode inner_content.
Replaced SummerNote by highly requested TinyMCE for a familiar WordPress experience.
“Add Media” button is now present next to the TinyMCE editor.
Fixes issues with multiple editors on page and timing issues with initialising and unloading TinyMCE.
Fix active editor modal bug occurring when multiple fields had editors.