' . wp_kses(
/* translators: 1: link to WP admin new post page. */
__( 'Ready to publish your first post?
Get started here.', 'sinatra' ),
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.', 'sinatra' ), sinatra_get_allowed_html_tags() ) . '
'
);
get_search_form();
elseif ( is_category() ) :
printf(
'
' . wp_kses( __( 'There aren’t any posts currently published in this category.', 'sinatra' ), sinatra_get_allowed_html_tags() ) . '
'
);
elseif ( is_tax() ) :
printf(
'
' . wp_kses( __( 'There aren’t any posts currently published under this taxonomy.', 'sinatra' ), sinatra_get_allowed_html_tags() ) . '
'
);
elseif ( is_tag() ) :
printf(
'
' . wp_kses( __( 'There aren’t any posts currently published under this tag.', 'sinatra' ), sinatra_get_allowed_html_tags() ) . '
'
);
else :
printf(
'
' . wp_kses( __( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'sinatra' ), sinatra_get_allowed_html_tags() ) . '
'
);
get_search_form();
endif;
?>