mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-19 13:29:13 -04:00
20 lines
473 B
PHP
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>
|