I have created a plugin with short code now when I access the plugin through short code it works fine issue is that when I put some text above the short code that text goes below the plugin when i view the page.

Here is code that I put into wordpress editor:

    <p>Unlock your device safely in 3 steps</p>

    [CUSTOMSLIDER]

you can see the plugin shortcode is on second row but static text is on first row but when I will view the page the text goes below the plugin. here you can see its view. you can see the slider is at top and the text is below slider though these were opposite in original source.

link|improve this question
What plugin you used. – gowri Oct 30 '11 at 10:22
I create my own plugin for slider – user1020553 Oct 30 '11 at 11:01
you can see the code of plugin by viewing source of page loaded24.de/?page_id=4 – user1020553 Oct 30 '11 at 11:01
feedback

1 Answer

in your custom plugin, instead of:

echo "content";

change that to:

$variable .= "content";

return $variable

from: http://wordpress.org/support/topic/shortcode-moving-to-top-of-entry-content

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.