如何在WordPress函数php文件中返回<div>?

时间:2020-05-10 作者:Chris Creed

代码为:

function my_custom_function( $html, $content ) {


$html .=  get_post_field(\'post_content\', $post_id);

return $html;
}



$priority = 10;

add_filter( \'tps_the_content_after\', \'my_custom_function\', $priority, 2 );
如果我的内容是“this is my content,则代码返回this is my content“”

我想添加<div> 之前的内容,但我不知道如何编写代码,它应该像这样返回

"<div class="post">this is my content</div>"
谢谢大家!

1 个回复
SO网友:Niraeth

您的函数应该如下所示

function my_custom_function( $html, $content ) { 

$html .=  get_post_field(\'post_content\', $post_id); 

$html = "<div class=\'post\'>" . $html . "</div>"; 

return $html; 
}