我的标题显示在快捷码之后 时间:2017-05-05 作者:Tarun modi 我的代码如下:<?php function shortcode_callback() { ob_start(); //my code here ob_get_clean(); } add_shortcode(\'shortcode\', \'shortcode_callback\'); ?> 上述短代码添加到页面中,但互动程序显示在短代码的底部:我的标题[短代码]我做错了什么事。 1 个回复 SO网友:Faysal Mahamud 必须返回输出,请遵循以下代码。function shortcode_callback() { $test = \'you text\'; return $test; } add_shortcode(\'shortcode\', \'shortcode_callback\'); 文章导航