user_email;
$username = trim($current_user->user_firstname);
$user = $current_user->user_login;
$user_display = trim($current_user->display_name);
if(empty($username))
$username = $user;
if(empty($username))
$username = $user_display;
$theme = wp_get_theme( );
$themeversion = $theme->version ;
?>
Help and Support Page
';
} // end Function antihacker_options_page
require_once(ABSPATH . 'wp-admin/includes/screen.php');
// ob_end_clean();
include_once(ABSPATH . 'wp-includes/pluggable.php');
if(! function_exists('is_bill_theme'))
{
function is_bill_theme()
{
$my_theme = wp_get_theme();
$theme = trim($my_theme->get( 'Name' ));
// die($theme);
$mythemes = array (
'boatdealer',
'KarDealer',
'verticalmenu',
'fordummies',
'Real Estate Right Now');
// boatseller
$count = count( $mythemes);
$theme = strtolower(trim($theme));
for($i=0; $i < $count; $i++)
{
if ($theme == strtolower(trim($mythemes[$i])))
return true;
}
return false;
}
}?>