ilhansylmz adlı üyeden alıntı: mesajı görüntüle
merhaba, row içinde col-3 var col-3 içine bütün yazıları eklemişsiniz. bunun yerine her yazıyı col-3 olarak ekleyin
Yanıt için çok teşekkürler
<!-- Start Blog -->
<section class="blog section-padding">
<div class="section-padding tutor-wrap tutor-wrap-parent tutor-courses-wrap tutor-container course-archive-page">
<div class="tutor-row tutor-gx-xl-5">
<div class="tutor-col-3 tutor-course-filter-container">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_type() );
endwhile; ?>
<div class="post_pagination text-center fix">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => '<i class="fa-solid fa-arrow-left-long"></i>',
'next_text' => '<i class="fa-solid fa-arrow-right-long"></i>',
) ); ?>
Bu şekilde olan kısmı

<!-- Start Blog -->
<section class="blog section-padding">
<div class="section-padding tutor-wrap tutor-wrap-parent tutor-courses-wrap tutor-container course-archive-page">
<div class="tutor-col-3 tutor-course-filter-container">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_type() );
endwhile; ?>
<div class="post_pagination text-center fix">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => '<i class="fa-solid fa-arrow-left-long"></i>',
'next_text' => '<i class="fa-solid fa-arrow-right-long"></i>',
) ); ?>
böyle değiştirdim ancak sonuç değişmedi