File: /www/wwwroot/njmuedu.com/wp-content/themes/blogrank-pro/inc/about.php
<?php
/**
* BlogRank Pro Theme page
*
* @package blogrank
*/
function blogrank_about_admin_style( $hook ) {
if ( 'appearance_page_blogrank-about' === $hook ) {
wp_enqueue_style( 'blogrank-about-admin', get_theme_file_uri( 'assets/css/about-admin.css' ), null, '1.0' );
}
}
add_action( 'admin_enqueue_scripts', 'blogrank_about_admin_style' );
/**
* Add theme page
*/
function blogrank_menu() {
add_theme_page( esc_html__( 'About BlogRank Pro', 'blogrank' ), esc_html__( 'About BlogRank Pro', 'blogrank' ), 'edit_theme_options', 'blogrank-about', 'blogrank_about_display' );
}
add_action( 'admin_menu', 'blogrank_menu' );
/**
* Display About page
*/
function blogrank_about_display() {
$theme = wp_get_theme();
?>
<div class="wrap about-wrap full-width-layout">
<h1><?php echo esc_html( $theme ); ?></h1>
<div class="about-theme">
<div class="theme-description">
<p class="about-text">
<?php
// Remove last sentence of description.
$description = explode( '. ', $theme->get( 'Description' ) );
array_pop( $description );
$description = implode( '. ', $description );
echo esc_html( $description . '.' );
?></p>
<p class="actions">
<a href="<?php echo esc_url( $theme->get( 'ThemeURI' ) ); ?>" class="button button-secondary" target="_blank"><?php esc_html_e( 'Theme Demo', 'blogrank' ); ?></a>
<a href="<?php echo esc_url( $theme->get( 'AuthorURI' ) . '/documentation/blogrank' ); ?>" class="button button-secondary" target="_blank"><?php esc_html_e( 'Documentation', 'blogrank' ); ?></a>
<a href="<?php echo esc_url( $theme->get( 'AuthorURI' ) . '/themes' ); ?>" class="button button-primary" target="_blank"><?php esc_html_e( 'More Themes', 'blogrank' ); ?></a>
</p>
</div>
<div class="theme-screenshot">
<img src="<?php echo esc_url( $theme->get_screenshot() ); ?>" />
</div>
</div>
</div>
<?php
}