| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/vectv/wp-content/themes/awaken/inc/ |
Upload File : |
<?php
/**
* Awaken info page
*
* @package Awaken
*/
add_action('admin_menu', 'awaken_theme_info');
function awaken_theme_info() {
add_theme_page('Awaken WordPress Theme Information', 'Awaken Theme Info', 'edit_theme_options', 'awaken-info', 'awaken_info_display_content');
}
function awaken_info_display_content() { ?>
<div class="awaken-theme-info">
<?php
$awaken_details = wp_get_theme();
$version = $awaken_details->get( 'Version' );
$name = $awaken_details->get( 'Name' );
$description = $awaken_details->get( 'Description' );
?>
<div class="awaken-info-header">
<h1 class="awaken-info-title">
<?php echo strtoupper( $name ) . ' ' . $version; ?>
</h1>
</div>
<div class="awaken-info-body">
<div class="awaken-theme-description">
<p>
<?php echo $description; ?>
</p>
</div>
<div class="awaken-info-blocks">
<div class="awaken-info-block aw-n-margin">
<span class="dashicons dashicons-visibility"></span>
<a href="<?php echo esc_url('http://themezhut.com/demo/awaken/'); ?>" target="_blank"><?php _e( 'View Demo', 'awaken' ); ?></a>
</div>
<div class="awaken-info-block">
<span class="dashicons dashicons-book-alt"></span>
<a href="<?php echo esc_url('http://themezhut.com/awaken-wordpress-theme-documentation/'); ?>" target="_blank"><?php _e( 'Documentation', 'awaken' ); ?></a>
</div>
<div class="awaken-info-block">
<span class="dashicons dashicons-businessman"></span>
<a href="<?php echo esc_url('https://wordpress.org/support/theme/awaken'); ?>" target="_blank"><?php _e( 'Get Support', 'awaken' ); ?></a>
</div>
<div class="awaken-info-block aw-n-margin">
<span class="dashicons dashicons-admin-generic"></span>
<a href="<?php echo admin_url('customize.php'); ?>"><?php _e( 'Customize Site', 'awaken' ); ?></a>
</div>
<div class="awaken-info-block">
<span class="dashicons dashicons-awards"></span>
<a href="<?php echo esc_url('http://themezhut.com/themes/awaken-pro/'); ?>" target="_blank"><?php _e( 'Awaken Pro', 'awaken' ); ?></a>
</div>
<div class="awaken-info-block">
<span class="dashicons dashicons-search"></span>
<a href="<?php echo esc_url('http://themezhut.com/demo/awaken-pro/'); ?>" target="_blank"><?php _e( 'Awaken Pro Demo', 'awaken' ); ?></a>
</div>
<h4 class="awaken-notice">Important Notice -</h4>
<p><?php _e( 'As per the new guidelines to remove theme options panels of the themes that are available on WordPress.org, we have completely removed the "Awaken Options" panel. All the options are now located in the theme customizer. Go to <b>"Appearence > Customize"</b> to find the Customizer or please use the "Contact Us" link below if you have run into any issues with the update.', 'awaken' ); ?></p>
<a href="<?php echo esc_url('http://themezhut.com/contact/'); ?>" target="_blank"><?php _e( 'Contact Us', 'awaken' ); ?></a>
</div>
</div>
</div>
<?php }