Get author total post votes from post meta
Assuming that you have a loop within your author.php file, grab the required metadata for every post within it, add it into a variable and display that after the loop has finished: $author_vote_count = 0; //declare vote count variable before the loop <?php while ( have_posts() ) : the_post(); ?> // the stuff going on … Read more