frontend.js.php
584 字节
(function($) {
$(function() {
new FLBuilderPostGrid({
id: '<?php echo $id ?>',
layout: '<?php echo $settings->layout; ?>',
pagination: '<?php echo $settings->pagination; ?>',
postSpacing: '<?php echo $settings->post_spacing; ?>',
postWidth: '<?php echo $settings->post_width; ?>',
matchHeight: <?php echo $settings->match_height; ?>
});
});
<?php if($settings->layout == 'grid') : ?>
$(window).on('load', function() {
$('.fl-node-<?php echo $id; ?> .fl-post-<?php echo $settings->layout; ?>').masonry('reloadItems');
});
<?php endif; ?>
})(jQuery);