HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/ivenusin/public_html/wp-content/themes/ivenus/category.php
<?php
/**
* A Simple Category Template
*/
 
get_header(); ?> 
 

 <section id="primary" class="site-content">
	<div class="container mt-5 pt-5" role="main">
		<div class="row">
			<div class="col-sm-12  border-bottom">
            <?php 
                // Check if there are any posts to display
                if ( have_posts() ) : ?>
                
                <header class="archive-header">
                <h1 class="archive-title"><?php single_cat_title( '', false ); ?></h1>
                
                
                <?php
                // Display optional category description
                if ( category_description() ) : ?>
                <div class="archive-meta"><?php echo category_description(); ?></div>
                <?php endif; ?>
                </header>
                
                <?php
                
                // The Loop
                while ( have_posts() ) : the_post(); ?>
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>
                
                <div class="entry border-bottom pb-3">
                    <?php the_content(); ?>
                    
                    <p class="postmetadata"><?php
                    comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments closed');
                    ?></p>
                </div>
                
                <?php endwhile; 
                
                else: ?>
                <p>Sorry, no posts matched your criteria.</p>
                
                
                <?php endif; ?>
            </div>
        </div>
    </div> 
</section>
 
 
<?php //get_sidebar(); ?>
<?php get_footer(); ?>