的结尾the_content()
是一个</p>
标签听起来你想在最后一个标记之前加上你的结束标记</p>
标签如果是这样,您需要一个过滤函数the_content()
.
类似于:
function yang_end_mark( $content ) {
$content = substr_replace($content, \'<span>🔚</span></p>\', strrpos($content, \'</p>\'), strlen(\'</p>\'));
return $content;
}
add_filter( \'the_content\', \'yang_end_mark\', 25 )
;