Quando si gestisce un multisito WordPress, ogni volta che viene creato un nuovo sito WordPress aggiunge automaticamente una pagina di esempio al nuovo sito. Recentemente, uno dei nostri utenti ci ha chiesto se fosse possibile rimuovere la pagina di esempio predefinita e aggiungere le proprie pagine predefinite. In questo articolo vi mostreremo come aggiungere/rimuovere le pagine predefinite in WordPress multisito.
Perché aggiungere le proprie pagine predefinite in WordPress Multisite?
Ci possono essere molte ragioni per sostituire la pagina di esempio predefinita con una propria. Ad esempio, potreste voler aggiungere una pagina che indichi agli utenti cosa fare successivamente.
La pagina di esempio predefinita generata da WordPress è un po’ noiosa. Forse volete aggiungere qualcosa di spiritoso e intelligente?
Infine, potete utilizzare la pagina predefinita per indicare agli utenti le regole e le regole della vostra rete multisito.
Aggiunta/rimozione di pagine predefinite in WordPress
È sufficiente aggiungere questo codice al file functions.php del sito principale o a un plugin specifico per il sito.
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(); }
La prima parte di questo codice inserisce una nuova pagina di WordPress intitolata “Informazioni” ogni volta che viene creato un nuovo sito nella rete multisito. La seconda parte del codice trova ed elimina la pagina di esempio predefinita di WordPress.
Speriamo che questo articolo vi abbia aiutato ad aggiungere/rimuovere pagine predefinite nella rete multisito WordPress.
Se vi è piaciuto questo articolo, unitevi a noi su Google+ e Twitter. Potete anche iscrivervi al nostro canale YouTube per altri video tutorial su WordPress.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
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.
ali
thank you.
it solved my problem.
WPBeginner Staff
Go to Settings -> Reading and check the box ‘Your Latest Posts’. See this article for more help.
WPBeginner Staff
Yes
shamim
Hi WPBeginner i can’t remove default page Home
i am using tweenty twelve theme.. pls help me
sleon
what do you mean about, “Simply add this code to your main site’s functions.php” in the theme functions.php?
iwan
how to removing with page more than one,for example page title(‘Sample page’,’MY product’,’Contact ‘)