• 18-07-2018, 08:55:51
    #1
    Üyeliği durduruldu
    MErhaba arkadaşlar belli bir saydada Wordpress'in son yazılarının linklerini nasıl gösterbilirim .Sadece linkleri istiyorum bunu hangi kodla yapabilirlim .
    Şu şekilde de olaiblir yazı başlığı altta linki şeklinde .... ??
  • 18-07-2018, 09:06:34
    #2
    kalemkagit adlı üyeden alıntı: mesajı görüntüle
    MErhaba arkadaşlar belli bir saydada Wordpress'in son yazılarının linklerini nasıl gösterbilirim .Sadece linkleri istiyorum bunu hangi kodla yapabilirlim .
    Şu şekilde de olaiblir yazı başlığı altta linki şeklinde .... ??

    https://wordpress.org/plugins/display-posts-shortcode/ indir

    Display 5 recent posts with thumbnails and excerpt
    1
    [display-posts posts_per_page="5" image_size="thumbnail" include_excerpt="true"]


    Display recent pages instead of posts
    1
    [display-posts posts_per_page="5" post_type="page"]


    Change the order to title instead of date.
    1
    [display-posts posts_per_page="5" orderby="title"]


    Display recent pages under a specific parent page.
    1
    [display-posts posts_per_page="5" post_type="page" post_parent="5"]
  • 18-07-2018, 09:07:44
    #3
    Üyeliği durduruldu
    project42 adlı üyeden alıntı: mesajı görüntüle
    https://wordpress.org/plugins/display-posts-shortcode/ indir

    Display 5 recent posts with thumbnails and excerpt
    1
    [display-posts posts_per_page="5" image_size="thumbnail" include_excerpt="true"]


    Display recent pages instead of posts
    1
    [display-posts posts_per_page="5" post_type="page"]


    Change the order to title instead of date.
    1
    [display-posts posts_per_page="5" orderby="title"]


    Display recent pages under a specific parent page.
    1
    [display-posts posts_per_page="5" post_type="page" post_parent="5"]
    bunlarla sadece linkleri gösterbilir miyim
  • 18-07-2018, 09:09:43
    #4
    kalemkagit adlı üyeden alıntı: mesajı görüntüle
    bunlarla sadece linkleri gösterbilir miyim
    evet linkde yaparsın resimlede gösterirsin .Sen bir dene yapamazsan hal çaresine bakarız
  • 18-07-2018, 09:30:50
    #5
    Üyeliği durduruldu
    malesef sadece linkleri çekemiyorum[COLOR="Silver"]



    [<!-- Blog -->
    <section>
    <div class="blog-post">
    <div class="container">
    <div class="row">
    <!-- Blog post content -->
    <div class="col-md-9">
    <div class="blog-item-description">
    <?php
    $myposts=get_posts('author=33&numberposts=-1&orderby=post_date&order=DESC');
    foreach($myposts as $post) :

    echo '<li style="list-style:disc;margin-left:3em;"><b>';
    the_time('j F Y');
    echo '</b>: <?php the_permalink(); ?> <a href="';the_permalink();echo '">';
    the_title();echo '</a>

    </li>';
    if($year != $previous_year){echo '</li>';}
    $previous_year = $year;
    endforeach;
    ?>
    </div>
    </div>
    <?php endwhile;else : ?>
    <?php endif; ?>
    <!-- and Blog post content -->

    bu kod ile belli bir yazara ait yazıları listeliyorum tarhileri ile birlikte istiyorum ki başlıkların altında likleri olsun bir türlü yapamadım.
  • 18-07-2018, 13:56:41
    #6
    Buradan bakabilirsin.