This topic has 5 replies, 3 voices, and was last updated 10 years, 8 months ago by Anonymous.
Viewing 6 posts - 1 through 6 (of 6 total)
Go to musicplay-> framework-> common-> atp_generator.php. Replace “postmetaStyle” function with this,
function postmetaStyle() {
global $format;
ob_start();
$out = '<div class="post-metadata">';
echo '<span>';
the_time(get_option('date_format'));
echo '</span>/<span>'. __('By', 'musicplay').' ';
the_author_posts_link();
echo '</span>/<span>'. __('In', 'musicplay').' ';
the_category(', ') ;
echo '</span>/<span> ';
comments_popup_link( __( '0 Comment', 'musicplay' ), __( '1 Comment', 'musicplay' ), __( '% Comments', 'musicplay' ) );
echo '</span>';
$out .= ob_get_clean();
$out .= '</div>';
return $out;
}
We are setting this topic as resolved!
Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.