你知道我如何编辑这个代码来显示一篇文章的分类标题而不是文章的时间吗?
目前,它增加了
这篇帖子是在下午12:34
到帖子内容的顶部。
function add_before_content($content) {
return \'<p>This post is in [\'.get_the_time().\']\'.preg_replace(\'/<p> /\',\'\',$content,1);
}
add_filter(\'the_content\', add_before_content);