This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// The header image | |
$featured_image_post = get_featured_recursive($post); | |
// Check if this is a post or page, if it has a thumbnail, and if it's a big one | |
if (in_category('General news') or is_post_type_archive()) : ?> | |
<img src="<?php header_image(); ?>" class="headerimage fadeInFull fadeIn-1s" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="Partnership" /><!-- end headerimage --> | |
<?php elseif ( is_singular() && | |
current_theme_supports( 'post-thumbnails' ) && | |
has_post_thumbnail( $post->ID ) && |