HEX
Server: Apache
System: Linux VM-16-7-centos 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.molinta.com/wp-content/themes/kale/category.php
<?php
/**
* The category template file.
*
* @package kale
*/
?>
<?php get_header(); ?>

<!-- Full Width Category -->
<div class="full-width-category">
    <h1 class="block-title"><span><?php single_cat_title(); ?></span></h1>
    <?php the_archive_description( '<div class="archive-description">', '</div>' ); ?>

    <!-- Blog Feed -->
    <div class="blog-feed" role="main">
        <?php $kale_i = 0;
        if ( have_posts() ) {
            while ( have_posts() ) : the_post(); ?>
            <?php if($kale_i%3 == 0) { ?><div class="row" data-fluid=".entry-title"><?php } ?>
            <div class="col-md-4"><?php $kale_entry = 'small'; include(locate_template('parts/entry.php')); $kale_i++; ?></div>
            <?php if($kale_i%3 == 0) { ?></div><?php } ?>
            <?php
            endwhile;
        }?>

    </div>
    <!-- /Blog Feed -->
    <?php if(get_next_posts_link() || get_previous_posts_link()) { ?>
    <hr />
    <div class="pagination-blog-feed">
        <?php kale_pagination(null, [], function(){ ?>
            <?php if( get_next_posts_link() ) { ?><div class="previous_posts"><?php next_posts_link( esc_html__('Previous Posts', 'kale') ); ?></div><?php } ?>
            <?php if( get_previous_posts_link() ) { ?><div class="next_posts"><?php previous_posts_link( esc_html__('Next Posts', 'kale') ); ?></div><?php } ?>
        <?php }); ?>
    </div>
    <?php } ?>
</div>
<!-- /Full Width Category -->
<hr />

<?php get_footer(); ?>