Tagged Questions
2
votes
3answers
824 views
How can I show the Jetpack Subscriptions form in a page?
In the Jetpack plugin, the subscriptions module can be included in your blog by following these instructions:
To use the Subscriptions widget, go to Appearance → Widgets. Drag the
widget labeled ...
0
votes
1answer
237 views
How to attach sidebar to shortcode's output?
I have one shortcode that should be always next to the sidebar:
// [shortcode] otuput | default sidebar
My theme allows me to set different sidebars for each page. So I have sidebars on a few ...
1
vote
5answers
2k views
Display post shortcode content in the sidebar?
I need to display images and other content in the sidebar depending on a page. Pages are added dynamically and information that need to appear in the sidebar is different for each page. So I can't ...
0
votes
1answer
229 views
Hide/disable sidebar using shortcode?
The question is pretty simple, but it's complex in fact.
I have implemented custom sidebars for each post/page function in my blog.
It looks like:
<div id="<?php echo ...
1
vote
2answers
1k views
the_widget() and widget's ID
Let's assume I have a widget that displays only its name:
<p>
<?php echo $args['widget_id'] ?>
</p>
So when I drag & drop my widget to any sidebar it shows:
...