Wordpress sitedeki konu linklerini toplu almak?
5
●146
- 13-06-2023, 22:51:05Kendime 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
- 1 Beğeni
-
- 13-06-2023, 23:54:00Screaming Frog ile alabilirsiniz. Yada veri tabanından. Profesyonel destek isterseniz hepsini çekip iletebilirim.
- 14-06-2023, 00:02:10Wp 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 bunu beğendi.1 kişi bunu beğendi. - 14-06-2023, 21:42:34liste halinde dışarı almakEfendiBey adlı üyeden alıntı: mesajı görüntüle
- 15-06-2023, 01:12:17Bu cevap, konu sahibi tarafından kabul edilebilir bir cevap olarak işaretlendi.Sanıyorum şu eklenti işinizi halledebilir:hedefniche adlı üyeden alıntı: mesajı görüntüle
https://tr.wordpress.org/plugins/export-all-urls/
