Wordpress Blog Kategori Arşiv Yazısını Kaldırmak

ozgurbugra5461

Kilopat
Katılım
6 Şubat 2017
Mesajlar
80
Daha fazla  
Cinsiyet
Erkek
Meslek
E-Ticaret
Merhaba, Wordpress Blog'umdan görsellerde belirtilen yerleri silmek istiyorum. Kodun kaynağına baktığımda yine görseldeki yerde olduğunu buldum fakat düzenleyici kısmında yerini bulamadım. Yardımcı olacak arkadaşlara şimdiden teşekkür ederim.


2018-08-07_00-49-41.png2018-08-07_00-50-36.png2018-08-07_00-50-53.png2018-08-07_00-51-42.png2018-08-07_00-52-06.png
 
Son düzenleyen: Moderatör:
Merhaba,

Yoast seo eklentisini kullanıyorsan ayarlar kısmından düzenleme yapabilirsin.

Eğer kullanmıyorsan hangi tema ve eklentileri kullandığını belirtirsen yardımcı olabiliriz.
 
Merhaba,

Yoast seo eklentisini kullanıyorsan ayarlar kısmından düzenleme yapabilirsin.

Eğer kullanmıyorsan hangi tema ve eklentileri kullandığını belirtirsen yardımcı olabiliriz.
All in one SEO kullanıyorum ama Yoast SEO ya geçebilirim. Ayarlardan nasıl yapılıyor?
Merhaba,

Yoast seo eklentisini kullanıyorsan ayarlar kısmından düzenleme yapabilirsin.

Eğer kullanmıyorsan hangi tema ve eklentileri kullandığını belirtirsen yardımcı olabiliriz.
Busiprof temasını kullaniyorum.
 
Yoast seo en iyilerinden kullanmanı tavsiye ederim. Kategori yazısını kaldırmak için aşağıdaki linkleri adımları takip etmelisin.

Edit Yoast SEO Category Meta Titles in Wordpress Woocommerce - Print4Hospitality

Eğer bu işlem işe yaramaz ise temada revize yapman gerekir.

Temanın içinde yer alan category.php sayfasındaki kodu silip aşağıdaki eklediğim kodu kopyalaman gerekir.

Kod:
<?php
/**
* The category template file
* @package WordPress
*/
get_header();
?>
<!-- Page Title -->
<section class="page-header">
    <div class="container">
        <div class="row">
            <div class="col-md-6">
                <div class="page-title">
                    <h2><?php  _e("", 'busiprof'); echo single_cat_title( '', false ); ?></h2>
                    <p><?php bloginfo('description');?></p>
                </div>
            </div>
            <div class="col-md-6">
                <ul class="page-breadcrumb">
                    <?php if (function_exists('busiprof_custom_breadcrumbs')) busiprof_custom_breadcrumbs();?>
                </ul>
            </div>
        </div>
    </div>  
</section>
<!-- End of Page Title -->
<div class="clearfix"></div>

<!-- Blog & Sidebar Section -->
<section>      
    <div class="container">
        <div class="row">
            <!--Blog Posts-->
            <div class="col-md-8 col-xs-12">
                <div class="site-content">
                    <?php
                    if ( have_posts() ) :
                    // Start the Loop.
                    while ( have_posts() ) : the_post();
                   
                        get_template_part( 'content','' );
                       
                    endwhile;
                    ?>
                    <!-- Pagination -->          
                    <div class="paginations">
                        <?php
                        // Previous/next page navigation.
                        the_posts_pagination( array(
                        'prev_text'          => __('Previous','busiprof'),
                        'next_text'          => __('Next','busiprof'),
                        'screen_reader_text' => ' ',
                        ) ); ?>
                    </div>
                    <?php endif; ?>
                    <!-- /Pagination -->
                </div>
            <!--/End of Blog Posts-->
            </div>
            <!--Sidebar-->
            <?php get_sidebar();?>
            <!--/End of Sidebar-->
        </div>  
    </div>
</section>
<!-- End of Blog & Sidebar Section -->

<div class="clearfix"></div>

<?php get_footer(); ?>
 
Son düzenleme:
Yoast seo en iyilerinden kullanmanı tavsiye ederim. Kategori yazısını kaldırmak için aşağıdaki linkleri adımları takip etmelisin.

Edit Yoast SEO Category Meta Titles in Wordpress Woocommerce - Print4Hospitality

Eğer bu işlem işe yaramaz ise temada revize yapman gerekir.

Temanın içinde yer alan category.php sayfasındaki kodu silip aşağıdaki eklediğim kodu kopyalaman gerekir.

Kod:
<?php
/**
* The category template file
* @package WordPress
*/
get_header();
?>
<!-- Page Title -->
<section class="page-header">
    <div class="container">
        <div class="row">
            <div class="col-md-6">
                <div class="page-title">
                    <h2><?php  _e("", 'busiprof'); echo single_cat_title( '', false ); ?></h2>
                    <p><?php bloginfo('description');?></p>
                </div>
            </div>
            <div class="col-md-6">
                <ul class="page-breadcrumb">
                    <?php if (function_exists('busiprof_custom_breadcrumbs')) busiprof_custom_breadcrumbs();?>
                </ul>
            </div>
        </div>
    </div>
</section>
<!-- End of Page Title -->
<div class="clearfix"></div>

<!-- Blog & Sidebar Section -->
<section>    
    <div class="container">
        <div class="row">
            <!--Blog Posts-->
            <div class="col-md-8 col-xs-12">
                <div class="site-content">
                    <?php
                    if ( have_posts() ) :
                    // Start the Loop.
                    while ( have_posts() ) : the_post();
                 
                        get_template_part( 'content','' );
                     
                    endwhile;
                    ?>
                    <!-- Pagination -->        
                    <div class="paginations">
                        <?php
                        // Previous/next page navigation.
                        the_posts_pagination( array(
                        'prev_text'          => __('Previous','busiprof'),
                        'next_text'          => __('Next','busiprof'),
                        'screen_reader_text' => ' ',
                        ) ); ?>
                    </div>
                    <?php endif; ?>
                    <!-- /Pagination -->
                </div>
            <!--/End of Blog Posts-->
            </div>
            <!--Sidebar-->
            <?php get_sidebar();?>
            <!--/End of Sidebar-->
        </div>
    </div>
</section>
<!-- End of Blog & Sidebar Section -->

<div class="clearfix"></div>

<?php get_footer(); ?>
Çok teşekkür ederim kod sayesinde oldu. Bir de görseldeki yeri kaldırmanın yolu var mıdır diye soracaktım?

2018-08-08_20-36-20.png
2018-08-08_20-36-20.png
 
Çok teşekkür ederim kod sayesinde oldu. Bir de görseldeki yeri kaldırmanın yolu var mıdır diye soracaktım?

Eki Görüntüle 321898Eki Görüntüle 321898

Bu kodu eski kodla güncellemelisin.

Kod:
<?php
/**
* The category template file
* @package WordPress
*/
get_header();
?>
<!-- Page Title -->
<section class="page-header">
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <div class="page-title">
                    <h2><?php  _e("", 'busiprof'); echo single_cat_title( '', false ); ?></h2>
                    <p><?php bloginfo('description');?></p>
                </div>
            </div>
        </div>
    </div> 
</section>
<!-- End of Page Title -->
<div class="clearfix"></div>

<!-- Blog & Sidebar Section -->
<section>     
    <div class="container">
        <div class="row">
            <!--Blog Posts-->
            <div class="col-md-8 col-xs-12">
                <div class="site-content">
                    <?php
                    if ( have_posts() ) :
                    // Start the Loop.
                    while ( have_posts() ) : the_post();
                  
                        get_template_part( 'content','' );
                      
                    endwhile;
                    ?>
                    <!-- Pagination -->         
                    <div class="paginations">
                        <?php
                        // Previous/next page navigation.
                        the_posts_pagination( array(
                        'prev_text'          => __('Previous','busiprof'),
                        'next_text'          => __('Next','busiprof'),
                        'screen_reader_text' => ' ',
                        ) ); ?>
                    </div>
                    <?php endif; ?>
                    <!-- /Pagination -->
                </div>
            <!--/End of Blog Posts-->
            </div>
            <!--Sidebar-->
            <?php get_sidebar();?>
            <!--/End of Sidebar-->
        </div> 
    </div>
</section>
<!-- End of Blog & Sidebar Section -->

<div class="clearfix"></div>

<?php get_footer(); ?>
 

Geri
Yukarı