我如何自定义此代码(wordpress woocommerce注释)

时间:2019-11-01 23:32:31

标签: wordpress comments

我是编码方面的新手,我正在尝试在WordPress上自定义我的网站。 我目前正在评论专区,正在尝试发表自己的意见(而不是表格本身)以加入Pros and Con的一部分,例如:

List that every line in the input become new line with a dot in the output, and the title "Pros" in bold

我的代码是

function get_review_pros( $id ) {
    $val = get_comment_meta( $id, "pros", true );
    $pros = $val ? ' Pro's:  <strong  class="review-pros">' . $val . '</strong>'  : '';
    return $pros;
}

此代码使专业人士在注释中看起来像只有一行,而我输入多少行也无关紧要-它仅变成一行。

  1. 我应该用哪种语言来理解它? (PHP,CSS?) 2.我应该更改什么,使其看起来像图片?

0 个答案:

没有答案