mirror of
https://gh.wpcy.net/https://github.com/WordPressUtilities/WPUInstaller.git
synced 2026-05-05 19:42:21 +08:00
21 lines
569 B
PHP
21 lines
569 B
PHP
<?php
|
|
|
|
/*
|
|
Plugin Name: [wpuprojectname] Home
|
|
Description: Handle Home Page
|
|
*/
|
|
|
|
/* ----------------------------------------------------------
|
|
Page
|
|
---------------------------------------------------------- */
|
|
|
|
add_filter('wputh_pages_site', 'wpuprojectid_home_wputh_set_pages_site', 1);
|
|
function wpuprojectid_home_wputh_set_pages_site($pages_site) {
|
|
$pages_site['home__page_id'] = array(
|
|
'post_title' => 'Home',
|
|
'post_content' => '<p></p>',
|
|
'disable_deletion' => 1,
|
|
'disable_pll_lang_selector' => 1
|
|
);
|
|
return $pages_site;
|
|
}
|