HEX
Server: Apache
System: Linux hp3-wp-1011494.hostingp3.local 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
User: csh2729955 (2121743)
PHP: 7.4.33
Disabled: shell_exec,exec,system,popen,set_time_limit
Upload Files
File: /home/storage/162/3480162/user/htdocs/wp-content/themes/pritam/template-parts/content-full.php
<?php
    global $pritam_theme_options;
    $masonry = esc_attr($pritam_theme_options['pritam-column-blog-page']);
    $masonry_grid = array('col-12 clearfix', $masonry);
?>

<div <?php post_class($masonry_grid); ?>>
    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <div class="blog-items main">
            <div class="blog-item main-style">
                <?php if(has_post_thumbnail()) { ?>
                    <div class="blog-img">
                        <?php the_post_thumbnail('pritam-thumbnail-size'); ?>
                        <?php
                        $categories = get_the_category();
                        if ( ! empty( $categories ) ) {
                            echo '<a class="post-category" href="'.esc_url( get_category_link( $categories[0]->term_id ) ).'">'.esc_html( $categories[0]->name ).'</a>';
                        }
                        ?>
                    </div>
                <?php } ?>
                <div class="blog-info">
                    <?php
                        $categories = get_the_category();
                        if ( ! empty( $categories ) ) {
                            echo '<a class="post-category" href="'.esc_url( get_category_link( $categories[0]->term_id ) ).'">'.esc_html( $categories[0]->name ).'</a>';
                        }
                    ?>
                    <?php
                        if (is_singular()) :
                            the_title('<h3 class="post-title entry-title">', '</h3>');
                        else :
                            the_title('<h3 class="post-title entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h3>');
                            ?>
                    <?php endif; ?>
                    <div class="met-soc">
                        <ul class="meta">
                            <li><?php pritam_posted_on()?></li>
                            <li><a href="#" title=""><i class="la la-comment-o"></i><?php comments_number(); ?></a></li>
                        </ul>
                            <?php 
                            //if( 1 == $social_share ){
                                do_action( 'pritam_social_sharing' ,get_the_ID() );
                            //}
                            ?>
                        </ul>
                    </div><!--met-soc end-->
                </div><!--blog-info end-->
            </div><!--blog-items end-->
        </div><!--blog-items end-->
    </div>
</div>