File "category.php"

Full Path: /home/concvitk/public_html/wp-content/themes/conceptualizate/category.php
File size: 2.01 KB
MIME-type: text/x-php
Charset: utf-8

<?php
    get_header();
?>

    <main class="container">
        <?php
            $category = get_queried_object();
        ?>
        <div class="categories-info">
            <h1 class="text-center text-primary">Tag: <?php echo $category->name ?></h1>
        </div>
        <div class="categories">
            <?php
                $categories = get_categories();

                foreach( $categories as $cat ) {
                    if( $cat->slug != 'sin-categoria' ) {
                        ?>
                        <span class="category">
                            <a href="<?php echo esc_attr(get_category_link($cat->term_id) );?>"><?php echo esc_html($cat->name); ?></a>
                        </span>
                        <?php
                    }
                }?>
        </div> <!-- Categorias -->

        <ul class="list-cards projects">
            <?php
                $args = array(
                    'post_type' => 'projects',
                    'category_name' => $category->slug,
                );
                $projects = new WP_Query($args);

                while ( $projects->have_posts() ) {
                    $projects->the_post();
                ?>
                    <li class="card">
                        <?php the_post_thumbnail();?>
                        <div class="card-content">
                            <a href="<?php the_permalink();?>">
                                <?php $project_description = get_field('descripcion');?>
                                <div class="card-action">
                                    <h3><?php the_title();?></h3>
                                    <p class="text-pretty"><?php echo $project_description; ?></p>
                                </div>
                            </a>

                        </div>
                    </li>
            <?php
                }
                wp_reset_postdata();
            ?>
        </ul>
    </main>








<?php get_footer(); ?>