");
}
_e("Posted in ");
the_category(', ');
$data_set = true;
}
if ( ( !is_page() ) && ( function_exists("vks_get_option") ) && ( vks_get_option("post_date_visibility") == "1" ) ) {
if ( !$data_set ) {
_e("Posted on ");
} else {
_e(" on ");
}
the_time("M jS, Y");
$data_set = true;
if ( ( function_exists("vks_get_option") ) && ( vks_get_option("post_time_visibility") == "1" ) ) {
_e(", ");
the_time();
$data_set = true;
}
}
if ( ( !is_page() ) && ( function_exists("vks_get_option") ) && ( vks_get_option("post_author_visibility") == "1" ) ) {
if ( !$data_set ) {
_e("Posted by ");
} else {
_e(" by ");
}
the_author();
$data_set = true;
}
if ( ( is_home() || is_archive() || is_category() ) && function_exists("vks_get_option") && vks_get_option("post_comments_summary_visibility") == "1" ) {
if ( $data_set ) {
_e(" ");
}
comments_popup_link('','1 comment','% comments');
$data_set = true;
}
if ( ( !is_page() ) && ( function_exists("vks_get_option") ) && ( vks_get_option("post_edit_visibility") == "1" ) ) {
if ( $data_set ) {
_e(" ");
}
edit_post_link(__('Edit'));
$data_set = true;
}
?>