Please how to remove the Masterkings.Ga at the title of forum topic
Добавлено: 16.11.2018 / 23:13
fixing theme
Добавлено: 16.11.2018 / 23:27
//Building TrickBd Style Site Via W-P
1.
থীম
2.
নটিফিকেশন প্লগিন।
3. Theme My Profile [Plugin]
4. Profile Builder [Plugin]
Note: Please do not download the files given links up are still working on it.I will upload after linked to johncms.
Добавлено: 17.11.2018 / 22:24
// creating pages
if (isset($_GET['activated']) && is_admin()){
add_action('init', 'create_initial_pages');
}
function create_initial_pages() {
$pages = array(
'About' => 'About Us',
'Faq' => 'Faq',
'Privacy' => 'Privacy',
'Contact' => 'Contact',
'Advertise' => 'Advertise Us',
'Terms' => 'Terms',
'Rights' => 'Rights',
'Copyright' => 'Copyrights'
);
foreach($pages as $key => $value) {
$id = get_page_by_title($value);
$page = array(
'post_type' => 'page',
'post_title' => $value,
'post_name' => $key,
'post_status' => 'publish',
'post_author' => 1,
'post_parent' => ''
);
if (!isset($id)) wp_insert_post($page);
};
}
Any updated version on this?