' . $prefix . '
'; } ?> ' . $title . ''; } else if ( is_front_page() ) { $title = esc_html( stripslashes( $morningafter_options['homepage_heading'] ) ); if ( ! empty( $title ) ) echo '
' . $title . '
'; } elseif ( is_404() ){ $four_o_four_heading = esc_html( stripslashes( $morningafter_options['four_o_four_heading'] ) ); if ( $four_o_four_heading ) { echo '
' . $four_o_four_heading . '
'; } }elseif ( is_archive() ){ $archives_heading = esc_html( stripslashes( $morningafter_options['archives_heading'] ) ); if ( $archives_heading ) { echo '
' . $archives_heading . '
'; } }elseif ( is_author() ){ $author_archive_heading = esc_html( stripslashes( $morningafter_options['author_archive_heading'] ) ); if ( $author_archive_heading ) { echo '
' . $author_archive_heading . '
'; } }elseif ( is_attachment() || is_single() ){ $single_post_heading = esc_html( stripslashes( $morningafter_options['single_post_heading'] ) ); if ( $single_post_heading ) { echo '
' . $single_post_heading . '
'; } }elseif ( is_search() ){ $search_results_heading = esc_html( stripslashes( $morningafter_options['search_results_heading'] ) ); if ( $search_results_heading ) { echo '
' . $search_results_heading . '
'; } }elseif ( is_page() ){ $title = get_the_title(); if ( $title ) { echo '
' . $title . '
'; } }else{ $index_heading = esc_html( stripslashes( $morningafter_options['index_heading'] ) ); if ( $index_heading ) { echo '
' . $index_heading . '
'; } } ?>