Origin commit

This commit is contained in:
Hoang Huu
2019-09-10 11:27:33 +07:00
commit 499e068e4f
844 changed files with 188705 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
global $agency;
$gallery = $agency->get_gallery();
if ( ! $gallery ) {
return;
}
?>
<div class="opalestate-gallery">
<h4 class="box-heading"><?php esc_html_e( 'Gallery', 'opalestate-pro' ); ?></h4>
<div class="gallery-summery-style">
<?php foreach ( $gallery as $key => $src ): ?>
<a href="<?php echo esc_url( $src ); ?>" style="background-image:url('<?php echo esc_url( $src ); ?>')"></a>
<?php endforeach; ?>
</div>
</div>