';
/**
* edufication_simple_breadcrumb hook
*
* @hooked edufication_simple_breadcrumb - 10
*
*/
do_action( 'edufication_simple_breadcrumb' );
echo '
';
return;
}
endif;
if ( ! function_exists( 'edufication_header_image' ) ) :
/**
* Header Image codes
*
* @since Edufication 1.0.0
*
*/
function edufication_header_image() {
$options = edufication_get_theme_options();
if ( edufication_is_frontpage() )
return;
$header_image = get_header_image();
$header_image = ! empty( $header_image ) ? get_header_image() : get_template_directory_uri() . '/assets/uploads/header-image.jpg';
if ( is_singular() ) :
$header_image = ( has_post_thumbnail() ) ? get_the_post_thumbnail_url( get_the_id(), 'full' ) : $header_image;
endif;
?>