Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPress Multisite’da Varsayılan Sayfalar Nasıl Eklenir / Kaldırılır

Bir WordPress çoklu sitesi çalıştırdığınızda, her yeni site oluşturulduğunda WordPress yeni siteye otomatik olarak bir örnek sayfa ekler. Son zamanlarda, kullanıcılarımızdan biri bize varsayılan örnek sayfayı kaldırmanın ve kendi varsayılan sayfalarını eklemenin mümkün olup olmadığını sordu. Bu makalede, WordPress multisite’da varsayılan sayfaların nasıl ekleneceğini / kaldırılacağını göstereceğiz.

WordPress Multisite’a Neden Kendi Varsayılan Sayfalarınızı Eklemelisiniz?

Varsayılan örnek sayfayı kendi sayfanızla değiştirmek için birçok neden olabilir. Örneğin, kullanıcılara bundan sonra ne yapmaları gerektiğini söyleyen bir sayfa eklemek isteyebilirsiniz.

WordPress tarafından oluşturulan varsayılan örnek sayfa biraz sıkıcıdır. Belki esprili ve zekice bir şeyler eklemek istersiniz?

Son olarak, kullanıcılara çoklu site ağınızda yapılması ve yapılmaması gerekenleri anlatmak için varsayılan sayfayı kullanabilirsiniz.

WordPress’te Varsayılan Sayfaları Ekleme / Kaldırma

Bu kodu ana sitenizin functions.php dosyasına veya siteye özel bir eklentiye eklemeniz yeterlidir.


add_action('wpmu_new_blog', 'wpb_create_my_pages', 10, 2);

function wpb_create_my_pages($blog_id, $user_id){
  switch_to_blog($blog_id);

// create new page
  $page_id = wp_insert_post(array(
    'post_title'     => 'About',
    'post_name'      => 'about',
    'post_content'   => 'This is an about page. Feel free to edit or delete this page.',
    'post_status'    => 'publish',
    'post_author'    => $user_id, // or "1" (super-admin?)
    'post_type'      => 'page',
    'menu_order'     => 1,
    'comment_status' => 'closed',
    'ping_status'    => 'closed',
 ));  
  
// Find and delete the WP default 'Sample Page'
$defaultPage = get_page_by_title( 'Sample Page' );
wp_delete_post( $defaultPage->ID );

  restore_current_blog();
}

Bu kodun ilk kısmı, çoklu site ağınızda yeni bir site oluşturulduğunda ‘Hakkında’ başlıklı yeni bir WordPress sayfası ekler. Kodun ikinci kısmı varsayılan WordPress Örnek Sayfasını bulur ve siler.

Bu makalenin WordPress çoklu site ağında varsayılan sayfaları eklemenize / kaldırmanıza yardımcı olacağını umuyoruz.

Bu makaleyi beğendiyseniz, Google+ ve Twitter‘da bize katılın. Ayrıca daha fazla WordPress video eğitimi için YouTube Kanalımıza abone olabilirsiniz.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

7 yorumLeave a Reply

  1. Maxwell

    Don’t forget handle other languages too: in $defaultPage = get_page_by_title( ‘Sample Page’ ); , use:

    $defaultPage = get_page_by_title( __(‘Sample Page’) );

    This way, the Sample Page word will be translated and the page will be found in any language.

  2. ali

    thank you.
    it solved my problem. :)

    • shamim

      Hi WPBeginner i can’t remove default page Home
      i am using tweenty twelve theme.. pls help me

  3. sleon

    what do you mean about, “Simply add this code to your main site’s functions.php” in the theme functions.php?

  4. iwan

    how to removing with page more than one,for example page title(‘Sample page’,’MY product’,’Contact ‘)

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.