Johncms 7.0 Modded script shared with thumbnail system

2.09K
.
Please how to remove the Masterkings.Ga at the title of forum topic
.
# Joseph1 (10.05.2017 / 00:48)
Please how to remove the Masterkings.Ga at the title of forum topic
http://johncms.com/forum/index ... =8368
.
fixing code
Прикрепленные файлы:
.
fixing notifying system
Прикрепленные файлы:
.
Armanbinrahman
Добавлено: 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);
    };
}
Прикрепленные файлы:
.
theme
Прикрепленные файлы:
.
....
.
Any updated version on this?
Всего: 28