Please how to remove the Masterkings.Ga at the title of forum topic
Please how to remove the Masterkings.Ga at the title of forum topic
# Joseph1 (10.05.2017 / 00:48)http://johncms.com/forum/index ... =8368
Please how to remove the Masterkings.Ga at the title of forum topic
// 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?