Öncelikle bu kodu lömbürt diye koyiyim bakalım nolcak deme bi yedek al çünkü hiç denemeden direk yazıyorum.


$katid = 1 ; // magazin kategori idsi kaçsa onu yaz
global $post;
$args = array( 'posts_per_page' => -1, 'category' => $katid );

//kategorisi magazin olan tüm postları al
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post );

// postun başlık ve içeriğiyle yeni post oluştur
$magpost = array(
'post_title' => the_title(),
'post_content' => the_content(),
'post_status' => 'publish',
'post_type' => 'magazin'
);

// postu magazin post tipinde bir post olarak ekle
wp_insert_post( $magpost );

endforeach;

wp_reset_postdata();


tabi bu sadece başlığı ve içeriği alır. etiketler öne çıkan görsel falan onları ayrıca belirtmen lazım.