MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/wptouch/admin/html/news.php
<?php require_once ( ABSPATH . WPINC . '/class-simplepie.php' ); ?>
<?php $content = fetch_feed( 'http://www.wptouch.com/feed/' ); ?>
<?php if ( !is_wp_error( $content ) ) { ?>
	<?php $max_items = $content->get_item_quantity( WPTOUCH_MAX_NEWS_ITEMS ); ?>
	<?php $rss_items = $content->get_items( 0, $max_items ); ?>
	<div class="nano">
		<div class="content">
			<ul>
			<?php foreach( $rss_items as $item ) { ?>
				<li>
					<div class="date"><?php echo $item->get_date( 'F jS, Y' ); ?></div>
					<a href="<?php echo $item->get_permalink(); ?>" target="_new"><?php echo esc_html( $item->get_title() )	; ?></a>
					<span class="desc"><?php echo wptouch_split_string( $item->get_description(), 100 ); ?>&hellip;</span>
				</li>
			<?php } ?>
			</ul>
		</div>
	</div>
<?php } ?>