I am using this plugin for testimonials testimonials and i want to add my custom div foreach testimonial.I found this example for editing view of plugin,but i still dont understand how it work.So how can i add it?
1条回答 默认 最新
douzhangli9563 2015-12-03 23:11关注In your theme
function.phpadd the bellow code and change the imageurlwith your image urlhttp://www.subway.com/core/images/topNavBar/subway-logo.pngCode
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; }解决 无用评论 打赏 举报