wp2static/views/crawl-queue-page.php

23 lines
476 B
PHP
Executable file

<br>
<table class="widefat striped">
<thead>
<tr>
<th>URLs in Crawl Queue</th>
</tr>
</thead>
<tbody>
<?php if ( ! $view['urls'] ) : ?>
<tr>
<td>Crawl queue is empty.</td>
</tr>
<?php endif; ?>
<?php foreach( $view['urls'] as $url ) : ?>
<tr>
<td><?php echo $url; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>