ב הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותشسdggרות הל555ה התafhgfh
במסgרות ה gh//شی הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותהתנדaghhhhו12ין יעל, המעציfghfghfע
/
www-data
/
sites
/
srichaitanyaschoolvidyaranyapura.net
/
wp-content
/
themes
/
flaton
/
includes
/
Upload FileeE
HOME
<?php /** * Sample implementation of the Custom Header feature * http://codex.wordpress.org/Custom_Headers * * You can add an optional custom header image to header.php like so ... <?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt=""> </a> <?php endif; // End header image check. ?> * * @package FLATON */ /** * Set up the WordPress core custom header feature. * * @uses flaton_header_style() * @uses flaton_admin_header_style() * @uses flaton_admin_header_image() * * @package FLATON */ function flaton_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'flaton_custom_header_args', array( 'default-image' => '', 'default-text-color' => '', 'header_text' => true, 'width' => 2500, 'height' => 106, 'flex-height' => true, 'admin-head-callback' => 'flaton_admin_header_style', 'admin-preview-callback' => 'flaton_admin_header_image', ) ) ); } add_action( 'after_setup_theme', 'flaton_custom_header_setup' ); if ( ! function_exists( 'flaton_admin_header_style' ) ) : /** * Styles the header image displayed on the Appearance > Header admin panel. * * @see flaton_custom_header_setup(). */ function flaton_admin_header_style() { ?> <style type="text/css"> .appearance_page_custom-header #headimg { border: none; } #headimg h1, #desc { } #headimg h1 { } #headimg h1 a { } #desc { } #headimg img { } </style> <?php } endif; // flaton_admin_header_style if ( ! function_exists( 'flaton_admin_header_image' ) ) : /** * Custom header image markup displayed on the Appearance > Header admin panel. * * @see flaton_custom_header_setup(). */ function flaton_admin_header_image() { $style = sprintf( ' style="color:#%s;"', get_header_textcolor() ); ?> <div id="headimg"> <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1> <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div> <?php if ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" alt=""> <?php endif; ?> </div> <?php } endif; // flaton_admin_header_image