'TallyKit',
'slug' => 'tallykit',
'required' => false,
);
$plugins[] = array(
'name' => 'WP Retina 2x',
'slug' => 'wp-retina-2x',
'required' => false,
);
$plugins[] = array(
'name' => 'WooCommerce',
'slug' => 'woocommerce',
'required' => false,
);
$plugins[] = array(
'name' => 'Woocommerce Connect For Tally Framework',
'slug' => 'woocommerce-connect-for-tally-framework',
'required' => false,
);
$plugins[] = array(
'name' => 'WordPress SEO by Yoast',
'slug' => 'wordpress-seo',
'required' => false,
);
$plugins[] = array(
'name' => 'bbPress',
'slug' => 'bbpress',
'required' => false,
);
$plugins[] = array(
'name' => 'bbPress Connect For Tally Framework',
'slug' => 'bbpress-connect-for-tally-framework',
'required' => false,
);
$plugins[] = array(
'name' => 'BuddyPress',
'slug' => 'buddypress',
'required' => false,
);
$plugins[] = array(
'name' => 'BuddyPress Connect For Tally Framework',
'slug' => 'buddypress-connect-for-tally-framework',
'required' => false,
);
return $plugins;
}
/* Edit ThemeOption
-------------------------------------------------------*/
function tally_child_option_editing_filter($custom_settings){
$custom_settings['settings']['info_phone'] = array(
'id' => 'info_phone',
'label' => __('Phone/Mobile Numeber', 'tally_child_textdomain'),
'desc' => 'Phone : 000 000 0000',
'std' => tally_option_std('info_phone'),
'type' => 'text',
'section' => 'header',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'class' => '',
'choices' => '',
);
$custom_settings['settings']['info_email'] = array(
'id' => 'info_email',
'label' => __('Email', 'tally_child_textdomain'),
'desc' => 'Email : info@yourdomain.com',
'std' => tally_option_std('info_email'),
'type' => 'text',
'section' => 'header',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'class' => '',
'choices' => '',
);
return $custom_settings;
}