function tr_rating_format_number($id = NULL, $display = NULL) {
$return = number_format(get_post_meta($id, 'ratings_average', true), 1);
$return = get_post_meta($id, 'ratings_average', true) == '' ? '0.0' : $return;
if( $display == TRUE ) { ech...
asked by
13.04.2018 / 03:10