Söylediğiniz tam anlamadım ama kategorilerinizi başka bir sitede veya subdomain de çekebileceğiniz bir kod:



    require($_SERVER['DOCUMENT_ROOT'] . '/wp-load.php');
    $args = array(
    // 'cat' => 3, // Çekmek istediğiniz kategori ID sini yazın.
    'posts_per_page' => 2 // kaç adet yazı görüntülemek istiyorsunuz.
    );
    $latest_posts = new WP_Query( $args );
    if ( $latest_posts->have_posts() ) {
    while ( $latest_posts->have_posts() ) {
    $latest_posts->the_post(); ?>










  • } else {
    echo '

    Yazı bulunamadı.

    ';
    }
    wp_reset_postdata();
    ?>