我尝试了上述答案,但对我无效。
我尝试使用\\u摘录,但没有显示任何内容,所以我使用了下面的内容,效果非常好
// $search_text = the_excerpt();
$search_text = get_the_excerpt();
// Strip the <p> tag by replacing it empty string
$tags = array("<p>", "</p>");
$search_content = str_replace($tags, "", $search_text);
// Echo the content
echo $search_content;
我希望这也能为其他人带来更多的光明。
干杯