Remove figcation from excerpt

时间:2020-01-30 作者:rawsta

我正在尝试定制我的frontpage,目前我很困惑为什么我不能摆脱摘录中的figcation。

据我所知the_excerpt()应已删除标记和短代码。以防万一我试过了strip_shortcodes( the_excerpt() ); 为了摆脱figcaption。不起作用。

这只是一张带有标题的普通图片。

1 个回复
SO网友:user182355

直接在模板中使用。

echo strip_shortcodes( get_the_excerpt() );
它是如何工作的?

add_filter(\'the_excerpt\', \'strip_shortcodes\');

add_filter(\'get_the_excerpt\', \'strip_shortcodes\');

相关推荐

Custom Post type shortcodes

我使用高级自定义字段在我的主题中创建自定义帖子类型(功能)。我想知道如何创建自定义帖子类型的短代码。因此,我只使用任何页面的自定义帖子类型的短代码来显示我在自定义帖子类型(功能)中添加的信息。