Devo fare in modo che se è una visita appare la parola volta, se invece è più di una deve apparire volte. Nel codice ho messo volte.
Codice PHP:
$html = apply_filters(
'pvc_post_views_html', '<div class="post-views post-' . $post_id . ' entry-meta">
' . ($options['display_style']['icon'] && $icon_class !== '' ? $icon : '') . '
' . ($options['display_style']['text'] ? '<span class="post-views-label">' . $label . ' </span>' : '') . '
<span class="post-views-count">' . number_format_i18n( $views ) . ' volte</span>
</div>', $post_id, $views, $label, $icon
);
if ( $echo )
echo $html;
else
return $html;
}