';
if ( has_post_thumbnail() ) {
//Pull post thunbnail if it is present
$thumbnail = get_the_post_thumbnail(
$post->ID,
$image_size,
array(
'title' => esc_attr( $title_attribute ),
'alt' => esc_attr( $title_attribute )
)
);
}
else {
$first_image = automobile_get_first_image(
$post->ID,
$image_size,
array(
'title' => esc_attr( $title_attribute ),
'alt' => esc_attr( $title_attribute )
)
);
if ( '' != $first_image ) {
$thumbnail = $first_image;
}
else {
$thumbnail = '
';
}
}
$output .= '
';
$output .= '
';
if ( 'excerpt' == $show_content ) {
$output .= '
';
}
elseif ( 'full-content' == $show_content ) {
$content = apply_filters( 'the_content', get_the_content() );
$content = str_replace( ']]>', ']]>', $content );
$output .= '
' . $content . '
';
}
$output .= '
';
$i++;
}
wp_reset_query();
}
return $output;
}
endif; // automobile_header_highlight_page_content