MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/rit-core/html/shortcode-portfolio-grid.php
<?php
/**
 * RIT Core Plugin
 * @package     RIT Core
 * @version     0.1
 * @author      CleverSoft
 * @link        http://cleversoft.co
 * @copyright   Copyright (c) 2015 CleverSoft
 * @license     GPL v2
 */

$args=array(
    'post_type'=>'portfolio',
    'posts_per_page' => ($atts['number'] > 0) ? $atts['number'] : get_option('posts_per_page')
);
if($atts['cat']!='')
{
    $cat=explode(',',$atts['cat']);
    $args['tax_query']=array(
        array(
            'taxonomy'=>'portfolio_category',
            'field'=>'id',
            'terms'=>$cat
        )
    );
}
if($atts['post_in']!=''){
    $args['post__in']=explode(',',$atts['post_in']);
}
$class='';
switch($atts['columns']){
    case '1':
        $class .= "col-xs-12";
        break;
    case '2':
        $class .= "col-xs-12 col-sm-6 col-md-6";
        break;
    case '3':
        $class .= "col-xs-12 col-sm-6 col-md-4";
        break;
    case '4':
        $class .= "col-xs-12 col-sm-6 col-md-3";
        break;
}
$the_query=new WP_Query($args);
$i=0;
?>
<div class="rit-grid-layout">
    <?php if ($the_query->have_posts()):
        while ($the_query->have_posts()): $the_query->the_post();
            $i++;
            ?>
            <article class="rit-news-item <?php echo $class; ?>" id="post-<?php the_ID(); ?>">
                <?php echo rit_get_template_part('post-format/portfolio', 'default', array('atts' => $atts)) ?>
                <div class="rit-news-info">
                    <h3 class="title-news"><a href="<?php the_permalink(); ?>"
                                              title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>

                    <p class="info-post">
                        <a class="author-link"
                           href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"
                           rel="author">
                            <?php echo(get_the_author()); ?>
                        </a> / <?php echo get_the_date('F jS, Y'); ?>
                        /  <?php comments_number(__('0 Comment'), __('1 Comment'), __('% Comments'));?></p>

                    <div class="description"><?php the_excerpt(); ?></div>
                </div>
            </article>
            <?php if ($i % $atts['columns'] == 0): ?>
                <div class="clear"></div>
            <?php endif; ?>
        <?php endwhile;
        if($atts['pagination'] == 'standard') :
            if (function_exists("rit_pagination")) :
                rit_pagination(3, $the_query);
            endif;
        endif;
    endif;
    wp_reset_postdata(); ?>
</div>