| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/themes/youvideo/inc/ |
Upload File : |
<?php
/**
* YouVideo Theme page
*
* @package youvideo
*/
function youvideo_about_admin_style( $hook ) {
if ( 'appearance_page_youvideo-about' === $hook ) {
wp_enqueue_style( 'youvideo-about-admin', get_theme_file_uri( 'assets/css/about-admin.css' ), null, '1.0' );
}
}
add_action( 'admin_enqueue_scripts', 'youvideo_about_admin_style' );
/**
* Add theme page
*/
function youvideo_menu() {
add_theme_page( esc_html__( 'About YouVideo', 'youvideo' ), esc_html__( 'About YouVideo', 'youvideo' ), 'edit_theme_options', 'youvideo-about', 'youvideo_about_display' );
}
add_action( 'admin_menu', 'youvideo_menu' );
/**
* Display About page
*/
function youvideo_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', 'youvideo' ); ?></a>
<a href="<?php echo esc_url( $theme->get( 'AuthorURI' ) . '/documentation/youvideo' ); ?>" class="button button-secondary" target="_blank"><?php esc_html_e( 'Documentation', 'youvideo' ); ?></a>
<a href="<?php echo esc_url( $theme->get( 'AuthorURI' ) . '/themes' ); ?>" class="button button-primary" target="_blank"><?php esc_html_e( 'More Themes', 'youvideo' ); ?></a>
</p>
</div>
<div class="theme-screenshot">
<img src="<?php echo esc_url( $theme->get_screenshot() ); ?>" />
</div>
</div>
</div>
<?php
}