Files
comic-easel/options/webcomics-com.php
T
2014-10-20 20:53:19 -07:00

20 lines
473 B
PHP

<div id="comiceasel-webcomics-com">
<div class="comiceasel-options">
<table class="widefat">
<thead>
<tr>
<th colspan="3"><?php _e('WebComics.COM','comiceasel'); ?></th>
</tr>
</thead>
<tr>
<td>
<?php
$got_file = wp_remote_get( 'http://webcomics.com/getwebcomics-com/' );
if (isset($got_file['body']) && !empty($got_file['body'])) echo $got_file['body'];
?>
</td>
</tr>
</table>
<br />
</div>
</div>