为什么我的短代码会在其他内容之前执行?

时间:2011-08-15 05:11:41

标签: php wordpress

我在页面中有以下文字。正如您所看到的,我的短代码位于底部,但不知何故,当代码运行时,我的短代码的输出将插入页面顶部,而不是跟随其前面的内容。

<img class="alignnone" title="title_enquires" src="http://localhost/barcelona/wp-content/uploads/2011/08/title_enquires.jpg" alt="" width="589" height="77" />
<img class="alignnone" title="contact_map" src="http://localhost/barcelona/wp-content/uploads/2011/08/contact_map.jpg" alt="" width="555" height="222" />

[barcelona_address]

这是我在function.php文件中的短代码注册:

<?php
add_shortcode( 'barcelona_address', 'barcelona_shortcode_handler' );

function barcelona_address_func()
{
    print "<p>sdsdsds</p>";
}

function barcelona_shortcode_handler( $atts, $content=null, $code="" ) 
{
   if (function_exists($code . "_func"))
   {
       call_user_func($code . "_func", $atts);
   }
}
?>

结果是:

<p>sdsdsds</p>
<img class="alignnone" title="title_enquires" src="http://localhost/barcelona/wp-content/uploads/2011/08/title_enquires.jpg" alt="" width="589" height="77" />
<img class="alignnone" title="contact_map" src="http://localhost/barcelona/wp-content/uploads/2011/08/contact_map.jpg" alt="" width="555" height="222" />

2 个答案:

答案 0 :(得分:11)

您的短代码处理程序应该返回输出以代替短代码显示,而不是自己输出任何内容。

http://codex.wordpress.org/Shortcode_API

答案 1 :(得分:5)

您可以使用替代方法:

ob_start();
...your code...
return ob_get_clean();

并使用不返回html作为字符串。