不幸的是,WordPress中的所有函数似乎都应该呈现摘录(get_extended
, get_extended
) 不要应用HTML标记,也不要将段落中的回车转换为aspected。
如果需要使用格式呈现摘录,我建议您使用以下代码:
global $more;
$more_backup = $more;
$more = 0;
the_content(\'\');
$more = $more_backup;
通过这项工作,您可以告诉\\u content()函数它在一个循环中,在more标记之前获取内容。