Skip to content

Instantly share code, notes, and snippets.

@nhatdongnguyen
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhatdongnguyen/99fa9de17fc801be54ed to your computer and use it in GitHub Desktop.
Save nhatdongnguyen/99fa9de17fc801be54ed to your computer and use it in GitHub Desktop.
Display views count after entry title on single entry
<?php
//* Display views count after entry title on single entry
add_action( 'genesis_entry_header', 'post_views_count' );
function post_views_count() {
if ( ! is_singular( 'post' ) )
return;
echo post_views(get_the_ID());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment