get_template_part
正在回显HTML代码。并且shortcode函数必须返回内容。
然后您可以尝试:
function custom_code($attr, $content, $tag)
{
ob_start();
get_template_part( \'page\', \'example\' );
$content = ob_get_clean();
return $content;
}
add_shortcode( \'custom\', \'custom_code\' );