link.php
13 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Testimonial External Link. |
| 4 | */ |
| 5 | if ( !empty( $testimonial['link']['url'] ) ): |
| 6 | $this->add_link_attributes( 'link-' . $testimonial['_id'], $testimonial['link'] ); |
| 7 | ?> |
| 8 | <a <?php echo $this->get_render_attribute_string( 'link-' . $testimonial['_id'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped by elementor ?> class="ekit-testimonial--link"> |
| 9 | <?php echo !empty( $testimonial['client_name'] ) ? esc_html( $testimonial['client_name'] ) : esc_html( $testimonial['_id'] ); ?> |
| 10 | </a> |
| 11 | <?php |
| 12 | endif; |
| 13 |