mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-19 13:29:13 -04:00
75b320d506
* archive dropdown now shows select <name> of the chosen name from the config * do not display transcripts on the archive and search pages * the column for the all comics now uses the name chosen for the taxonomy
10 lines
275 B
PHP
10 lines
275 B
PHP
<div id="comiceasel-resources">
|
|
<div class="comiceasel-options">
|
|
<?php
|
|
$got_file = wp_remote_get( 'http://frumph.net/downloads/index.html' );
|
|
if (isset($got_file['body']) && !empty($got_file['body'])) echo $got_file['body'];
|
|
?>
|
|
<br />
|
|
</div>
|
|
</div>
|