art_get_post_id(),
'class' => art_get_post_class(),
//'thumbnail' => art_get_post_thumbnail(),
'title' => art_get_meta_option($post->ID, 'art_show_page_title') ? get_the_title() : '',
'before' => art_get_metadata_icons('edit', 'header'),
'content' => art_get_content(), // 'content' => 'My post content',
)
);
comments_template();
}
// previous_post_link | next_post_link
// art_pagination(array('next_link' => art_get_previous_post_link('« %link'),'prev_link' => art_get_next_post_link('%link »')));
} else {
art_post_wrapper(
array(
'title' => __('Not Found', THEME_NS),
'content' => '
'
.__( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', THEME_NS)
. '
' . "\r\n" . art_get_search()
)
);
}
get_sidebar('bottom');
?>