如何在wordpress testemonials插件中添加div?

时间:2015-12-03 22:57:20

标签: php wordpress

我正在使用此插件进行推荐testimonials,我想添加我的自定义div foreach testimonial。我发现这个example用于编辑插件视图,但我仍然不明白它是如何工作的。所以我该如何添加它?

1 个答案:

答案 0 :(得分:0)

在您的主题function.php中添加以下代码并使用您的图片网址url更改图片http://www.subway.com/core/images/topNavBar/subway-logo.png

<强>代码

 add_filter( 'testimonials_widget_testimonial_html', 'my_testimonials_widget_testimonial_html', 10, 5 );

function my_testimonials_widget_testimonial_html( $content, $testimonial, $atts, $is_list = true, $is_first = false, $widget_number = null ) {

    echo'<div class="my-image"><img width="98%" class="custom-image" src="http://www.subway.com/core/images/topNavBar/subway-logo.png" alt="" /></div>';


    return $content;
}