24 lines
557 B
PHP
24 lines
557 B
PHP
|
|
<!--[ad/revive/top-mobile]-->
|
||
|
|
|
||
|
|
<?php
|
||
|
|
|
||
|
|
$html = load_template_part("template-parts/ad/revive/ad", "", [ "zone" => 11, "show_on_mobile" => true ]);
|
||
|
|
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?php if( mb_strlen( $html ) !== 0 && substr_count( $html, "<img") > 1 ) : ?>
|
||
|
|
|
||
|
|
<div class="container-fluid clearfix position-relative text-center pt-0 pb-3">
|
||
|
|
|
||
|
|
<div class="position-relative mx-auto" style="max-width:1040px">
|
||
|
|
|
||
|
|
<?= $html ?>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?php endif; ?>
|
||
|
|
|
||
|
|
|
||
|
|
<!--[/ad/revive/top-mobile]-->
|