php 修改更智能的评论显示内容以显示自定义评论
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 修改更智能的评论显示内容以显示自定义评论相关的知识,希望对你有一定的参考价值。
<?php
/**
* Modify Smarter Reviews display content to show custom reviews
*/
add_filter('wcst_smarter_reviews_display_content_before_data', 'wcst_smarter_reviews_display_content_before_data_modify', 10,5);
/**
* @hooked into `wcst_smarter_reviews_display_content_before_data`
* Modifies smart reviews before rendering of smart reviews snippet
* @param String $content HTML Content to modify
* @param array $settings configuration
* @param XL_WCST_Product $productInfo Product
* @param integer $trigger_ID Trigger ID
* @param WCST_Trigger_Smarter_Reviews $trigger
* @return string modified string
*/
function wcst_smarter_reviews_display_content_before_data_modify($content, $settings, $productInfo, $trigger_ID, $trigger) {
$template_output = $settings['satisfaction_rate_label'];
return '<div class="wcst_on_product wcst_smarter_reviews wcst_smarter_reviews_key_' . $productInfo->product->get_id() . '_' . $trigger_ID . ' wcst_smarter_reviews_satisfaction_rate"><span>' . $template_output . '</span></div>';
}
以上是关于php 修改更智能的评论显示内容以显示自定义评论的主要内容,如果未能解决你的问题,请参考以下文章
产品评论未显示在产品评论页面上
JetBrains IDE。要突出显示的自定义模式(不像todos那样评论)
PHP 反向WordPress评论命令以显示最新信息
php 为用户上传自定义头像以覆盖gravatar以获取评论和author_meta
以嵌套方式显示评论,如 Gmail 评论
显示带有评论的文章,例如 Medium 应用程序