• 12-02-2018, 20:06:54
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Arkadaşlar bende böyle bi kod var bu kod x katagorisi içindeki katagorileri gösteriyor
    ben bunu x katagori içindeki yazıları göstermesini istiyorum nasıl yapabişlirim yardımcı olurmusunuz?
    <div class="container" style="float:left;margin-left:-25%;width:150%;">
        <br>
        <!-- Begin of rows -->
        <div class="row carousel-row">
           <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
            <div class="col-xs-8 col-xs-offset-2 slide-row">
                <div class="slide-content" style="width:100%;margin-left:-20%;">
                  
                   <a href="<?php the_permalink(); ?>"> <h4><?php the_title(''); ?></h4></a>
                    <p>
                      <?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
                      <img src="<?php echo $url ?>"  alt="<?php the_title(''); ?>" style="width:50%;float:left;padding:5px;
                      margin-left:-2%;">
                    <?php echo strip_shortcodes(wp_trim_words( get_the_content(), 47 )); ?>
                    <br></p>
                </div>
  • 12-02-2018, 20:47:21
    #2
    https://thatwebdude.com/tutorial/how...ific-category/
    <?php query_posts('cat=5'); while (have_posts()) : the_post(); ?>
    <?php query_posts('cat=5&showposts=10'); while (have_posts()) : the_post(); ?>
    Yukarıdaki konu da açıklanmış. Yine de çözemezseniz;
    "Wordpress kategorideki yazıları listeleme" veya "How to display WordPress Posts for a specific Category" olarak arama yaparak kodları incelemenizi öneririm.
  • 12-02-2018, 20:52:06
    #3
    Webbilgim adlı üyeden alıntı: mesajı görüntüle
    https://thatwebdude.com/tutorial/how...ific-category/
    <?php query_posts('cat=5'); while (have_posts()) : the_post(); ?>
    <?php query_posts('cat=5&showposts=10'); while (have_posts()) : the_post(); ?>
    Yukarıdaki konu da açıklanmış. Yine de çözemezseniz;
    "Wordpress kategorideki yazıları listeleme" veya "How to display WordPress Posts for a specific Category" olarak arama yaparak kodları incelemenizi öneririm.
    Tşkr Ederim Saolasın Hocam