存档说明使用<! - more - >进行拆分

时间:2018-04-13 14:14:36

标签: wordpress

我按照以下方式输出了我的档案说明。但是我想在一个地方的标签前显示第一部分,其余部分在其他标签的其他地方不包括第一部分。有没有办法将其拆分以输出两个不同的数据?它可以仅使用第一段进行拆分。

the_archive_description( '<div class="taxonomy-description">', '</div>' );

1 个答案:

答案 0 :(得分:0)

请尝试使用get_the_archive_description() 。这将返回描述而不是显示它,这将允许您操作它,但是您喜欢在显示(或不显示)部分之前使用您自己的代码。有点像这样:

$myDescription = get_the_archive_description();
$sections = explode('<!-- more -->', $myDescription);
echo __( $sections[0], 'default' ); //Put this wherever you want to display the first part
echo __( $sections[1], 'default' ); //Put this wherever you want to display the rest