thanks oli
I’ve been reading the code from Statbadge plugin. It shows the number of posts as a number using this function (im not a programmer)
function GetPosts()
{
if(function_exists('wp_count_posts')) {
$info = wp_count_posts( 'post' );
return( intval( $info->publish ) );
}
return '-';
}
So i think what i want to take as the progress value is the number of post in the blog.
By the way i began to design the interface at https://meto2.net/ibague
thanks for your help