HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /virtual/nagasaki/public_html/wp-content/themes/byblos/content-posts.php
<?php
/*
 * Posts Template
 * @author bilal hassan <info@smartcatdesign.net>
 * 
 */
?>

<div class="item-post">
    <a href="<?php the_permalink(); ?>">
        <?php if(has_post_thumbnail() ) : the_post_thumbnail('large'); ?>
        <?php else :  ?>
        <img src="<?php echo get_template_directory_uri(); ?>/images/post_image.jpg" class="wp-post-image" />
        <?php endif; ?>
        <h2 class="post-title"><?php the_title(); ?></h2>
    </a>    
</div>

<br />
<script>
jQuery(document).ready(function($){
    $('.site-content-wrapper .item-home').masonry({
        itemSelector: '.item-post',
        gutter: 0,
        transitionDuration : 0,
    }).masonry('reloadItems').masonry();    
});  
</script>