mirror of
https://ghproxy.net/https://github.com/elementor/wp2static.git
synced 2026-07-21 11:47:28 +08:00
24 lines
570 B
PHP
Executable file
24 lines
570 B
PHP
Executable file
<br>
|
|
|
|
<table class="widefat striped">
|
|
<thead>
|
|
<tr>
|
|
<th>URLs in Crawl Cache</th>
|
|
<th>Page MD5 Hash</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if ( ! $view['urls'] ) : ?>
|
|
<tr>
|
|
<td colspan="2">Crawl cache is empty.</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
|
|
<?php foreach( $view['urls'] as $url=>$page_hash ) : ?>
|
|
<tr>
|
|
<td><?php echo $url; ?></td>
|
|
<td><?php echo $page_hash; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|