在内容的开头添加一些东西 时间:2012-04-21 作者:N2Mystic 我正在使用add_action(\'the_content\', \'myFunction\', 10) 将数据附加到内容的末尾。如何将内容放在内容的开头? 1 个回复 最合适的回答,由SO网友:Liam Bailey 整理而成 the_content 也是一个过滤器,内容作为参数传递到其中。您只需预先编写内容,然后像这样返回即可。add_filter(\'the_content\',\'prepend_this\'); function prepend_this($content) { $content = "string to prepend" . $content; return $content } 结束 文章导航