Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Steven Lambert

    (@straker503)

    I assume you are using the code <?php echo get_post_meta( $post->ID, 'jetpack-post-views', true ); ?> to get the views for each post. This function only returns a number. To get it to say something, just add the string of what you want to display before the function call:
    <?php echo "Total Views: ".get_post_meta( $post->ID, 'jetpack-post-views', true ); ?>

    Thread Starter popmythology

    (@popmythology)

    Thank you very much, Steven!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make it say "Total Views"’ is closed to new replies.