addons.php
7 years ago
class-strong-testimonials-about.php
7 years ago
how-to.php
7 years ago
links.php
7 years ago
privacy.php
7 years ago
upsell.php
7 years ago
whats-new.php
7 years ago
links.php
22 lines
| 1 | <hr /> |
| 2 | |
| 3 | <div class="feature-section three-col"> |
| 4 | <div class="col"> |
| 5 | <h3><?php _e( 'Support', 'strong-testimonials' ); ?></h3> |
| 6 | <?php |
| 7 | $links = array(); |
| 8 | |
| 9 | $links[] = sprintf( '<a href="%s" target="_blank">%s</a>', |
| 10 | esc_url( 'http://wordpress.org/support/plugin/strong-testimonials' ), |
| 11 | __( 'Use the community support forum', 'strong-testimonials' ) ); |
| 12 | |
| 13 | ?> |
| 14 | <ul> |
| 15 | <?php foreach ( $links as $link ) : ?> |
| 16 | <li><?php echo $link; ?></li> |
| 17 | <?php endforeach; ?> |
| 18 | </ul> |
| 19 | </div> |
| 20 | |
| 21 | </div> |
| 22 |