Possible Duplicate:
Shortcode always displaying at the top of the page
我正在使用自定义快捷码在帖子的结尾显示一些消息。我发现很难做到这一点,因为它出现在帖子的顶部。这是我的密码。
我将短代码放在帖子的末尾,但消息显示在帖子的顶部。
我应该怎么做才能解决这个问题?
function hello_kitty(){
if ( is_single() ){
echo \'This is hello Kitty message\';
}
}
add_shortcode(\'hellokitty\',hello_kitty);