'
' . sprintf( __( 'Search Results for: %s', THEME_NS ),
'' . get_search_query() . '' ) . '
'
));
if (art_get_option('art_top_posts_navigation')) {
art_page_navigation();// previous_posts_link | next_posts_link
}
while (have_posts())
{
the_post();
art_post_wrapper(
array(
'id' => art_get_post_id(),
'class' => art_get_post_class(),
'thumbnail' => art_get_post_thumbnail(),
'title' => '
'.get_the_title().'',
'before' => art_get_metadata_icons('edit', 'header'),
'content' => art_get_excerpt(), // 'content' => 'My post content',
'after' => art_get_metadata_icons('category,tag,comments', 'footer')
)
);
}
if (art_get_option('art_bottom_posts_navigation')) {
art_page_navigation();// previous_posts_link | next_posts_link
}
} else {
art_post_wrapper(
array(
'title' =>__('Nothing Found', THEME_NS),
'content' => '
' . __('Sorry, but nothing matched your search criteria. Please try again with some different keywords.', THEME_NS) . '
'
. BR . art_get_search()
)
);
}
get_sidebar('bottom');
?>