我需要强调的是,我认为这将是非常不稳定的,你可能不会总是得到你想要的结果,但在简单的情况下,这应该是可行的。
$content = apply_filters(\'the_content\', get_the_content());
$content = explode("</p>", $content, 2);
// var_dump($content); // debug
echo $content[0].\'</p>\';
echo \'<div>Extra Content</div>\';
if (!empty($content[1])) {
echo $content[1];
}