' . wp_kses( /* translators: 1: link to WP admin new post page. */ __( 'Ready to publish your first post? Get started here.', 'bloghash' ), array( 'a' => array( 'href' => array(), ), ) ) . '

', esc_url( admin_url( 'post-new.php' ) ) ); elseif ( is_search() ) : printf( '

' . wp_kses( __( 'Sorry, no results were found. Please try again with different keywords.', 'bloghash' ), bloghash_get_allowed_html_tags() ) . '

' ); get_search_form(); elseif ( is_category() ) : printf( '

' . wp_kses( __( 'There aren’t any posts currently published in this category.', 'bloghash' ), bloghash_get_allowed_html_tags() ) . '

' ); elseif ( is_tax() ) : printf( '

' . wp_kses( __( 'There aren’t any posts currently published under this taxonomy.', 'bloghash' ), bloghash_get_allowed_html_tags() ) . '

' ); elseif ( is_tag() ) : printf( '

' . wp_kses( __( 'There aren’t any posts currently published under this tag.', 'bloghash' ), bloghash_get_allowed_html_tags() ) . '

' ); else : printf( '

' . wp_kses( __( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'bloghash' ), bloghash_get_allowed_html_tags() ) . '

' ); get_search_form(); endif; ?>