Shortcode in Widget

dwaterboker

Junior Member
Joined
Sep 24, 2016
Messages
160
Reaction score
29
Hi guys.

I want to set Content Locker plugin in my widget since I have a most important thing in there. But sadly the plugin just allows the Shortcode to call it and we know default wp doesnt support shortcode in theme or in html form.

The shortcode uses opening and closing form like [locker id="123"]most important thing[/locker].
I have searched in google but many results give a guide for opening form only. I also get one answer about opening and closing form but it didnt explain about using of the id="123"

Anyone can solve this? It will really help me to get out from this trouble.
Thank you.
 
use shortcode ultimate plugin for that, what plugin you use?
 
Add this code to your theme's functions.php

PHP:
// Enable shortcodes in text widgets
add_filter('widget_text','do_shortcode');

Now add a text widget with your content and the opening and closing shortcode and it should work.
 
Back
Top