PluginProbe ʕ •ᴥ•ʔ
پارسی دیت – Parsi Date / trunk
پارسی دیت – Parsi Date vtrunk
6.2.1 6.2 6.1 5.1.6 5.1.7 5.1.8 5.1.8.2 6.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.0.0-alpha 2.1 2.1.1 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0.1 2.3.0.2 2.3.1 2.3.2 2.3.3 2.3.4 3.0.1 3.0.2 3.0.3 4.0.0 4.0.1 4.0.2 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5
wp-parsidate / inc / Templates / plugin / feed-reader / feed_item.php
wp-parsidate / inc / Templates / plugin / feed-reader Last commit date
feed_data_row.php 3 months ago feed_item.php 3 months ago feed_list.php 3 months ago feed_none.php 3 months ago
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