Site logo

Archived topic

How to insert post views to homepage ?

3 replies · Started by Oumar on May 6, 2017

Viewing posts 1–4 of 4

Hello !

I have installed GeneratePress and I would like to integrate the view names in the excerpts of articles, just after the date of publication, on the homepage. Do you know where I can insert the shortcode or the PHP function to display the number of views on the snippets on the home page?

Plugin: Post Views Counter https://en.wordpress.org/plugins/post-views-counter/
Shortcode: [post-views]
PHP Cod: <? Php echo do_shortcode ('[post-views]'); ?>

Hi there,

You could use this hook:

add_action( 'generate_after_entry_title', 'tu_post_views', 15 );
function tu_post_views() {
    echo do_shortcode( '[post-views]' );
}

Hi tom
Sorry for reply this old post, but can I have it without plugin?
I want to know how many view this post get, just from the admin site.

Thanks

Nothing built-in so a plugin is required unfortunately.

This archived topic is closed to new replies.