feed_item.php
13 lines
| 1 | <?php |
| 2 | defined( 'ABSPATH' ) or die(); |
| 3 | |
| 4 | if ( ! isset( $args ) ) { |
| 5 | return; |
| 6 | } |
| 7 | |
| 8 | if ( empty( $args['link'] ) ) { |
| 9 | echo wp_kses_post( $args['title'] ); |
| 10 | } else { |
| 11 | echo '<a href="' . esc_url_raw( $args['link'] ) . '" class="wa-feed-link" target="_blank">' . wp_kses_post( $args['title'] ) . '</a>'; |
| 12 | } |
| 13 |