Добрый день!
В wordpress`е (уточню, в шаблоне wordpress) встретился такой код, где выводятся 2 значения через 2 %s
Во фронтеде выводится - Рейтинг 22
public function bp_header_meta_render_points_count( $content ) {
$user_id = bp_displayed_user_id();
$types = apply_filters( 'mytheme/mycred/bp_member_header_display_point_types', mycred_get_types() );
$treshold = apply_filters( 'mytheme/buddypress/member_header_points_treshold', -1 );
foreach( $types as $type => $label ) {
$total_balance = mycred_get_users_balance( $user_id, $type );
if( $total_balance > $treshold ) {
$total_label = sprintf( __( 'Total %s', 'mytheme' ), $label );
$content .= sprintf( '<div class="row">
<span class="col total-label text-right">%s</span>
<span class="col total-count text-left">%s</span>
</div>', $total_label, number_format( floatval( $total_balance ) ) );
}
}
return $content;
}
Как поменять местами %s чтобы в выводе было 22 Рейтинг ?
Спасибо за помощь!