标签: php html wordpress wordpress-theming
在我喜欢的WordPress页面上
<div> <!-- bunch of HTML in here --> </div> [bottomform text="blah blah"]
短代码bottomform调用的函数只是echo HTML
bottomform
echo
function get_bottom_form ( $atts ) { echo "..."; }
然而,当渲染页面时,顺序被翻转,也就是说,函数编辑的东西echo在之前出现。
为什么会这样?