Lasna Asked:2022-07-16 22:19:41 +0000 UTC2022-07-16 22:19:41 +0000 UTC 2022-07-16 22:19:41 +0000 UTC 如何访问 Wordpress 文章的“正文”? 772 例如,用户通过 GET 打开一篇文章。 提交前如何修改?有这个钩子/事件吗? wordpress 1 个回答 Voted Best Answer SeVlad 2022-07-16T23:48:47Z2022-07-16T23:48:47Z 提交前如何修改?有这个钩子/事件吗? 有。例如the_content add_filter('the_content', 'the_end'); function the_end( $text ){ return $text . ' Конец!'; }
有。例如the_content