mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2026-07-21 11:47:28 +08:00
23 lines
476 B
PHP
Executable file
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>
|
|
|