• 13-06-2023, 22:51:05
    #1
    Kendime ait wordpress sitelerim var. Yüzlerce konu var içerisinde. Bütün konu linklerini kısa yoldan almamın bir yolunu arıyorum. Kolay şekilde topluca linkleri nasıl alabilirim?
  • Kabul Edilen Cevap
  • 13-06-2023, 23:54:00
    #2
    Kurumsal PLUS
    Screaming Frog ile alabilirsiniz. Yada veri tabanından. Profesyonel destek isterseniz hepsini çekip iletebilirim.
  • 14-06-2023, 00:02:10
    #3
    Wp query ile hızlıca alınabilir


    Displaying all posts that has been published. You have to use post_per_page='-1' to retrive all the posts.

    $args = array(
    'post_type'=> 'post',
    'orderby' => 'ID',
    'post_status' => 'publish',
    'order' => 'DESC',
    'posts_per_page' => -1 // this will retrive all the post that is published
    );
    $result = new WP_Query( $args );
    if ( $result-> have_posts() ) : ?>
    <?php while ( $result->have_posts() ) : $result->the_post(); ?>
    <?php the_title(); ?>
    <?php endwhile; ?>
    <?php endif; wp_reset_postdata(); ?>
    • hedefniche
    hedefniche bunu beğendi.
    1 kişi bunu beğendi.
  • 14-06-2023, 00:32:42
    #4
    Bahsettiğiniz linkler sitenizde bir sayfada göstermek için mi yoksa liste halinde mi lazım?
  • 14-06-2023, 21:42:34
    #5
    EfendiBey adlı üyeden alıntı: mesajı görüntüle
    Bahsettiğiniz linkler sitenizde bir sayfada göstermek için mi yoksa liste halinde mi lazım?
    liste halinde dışarı almak
  • 15-06-2023, 01:12:17
    #6
    Bu cevap, konu sahibi tarafından kabul edilebilir bir cevap olarak işaretlendi.
    hedefniche adlı üyeden alıntı: mesajı görüntüle
    liste halinde dışarı almak
    Sanıyorum şu eklenti işinizi halledebilir:
    https://tr.wordpress.org/plugins/export-all-urls/