X

Como rastrear visualizações de posts sem um plug-in usando o Post Meta

Snippets by IsItWP

Está procurando uma maneira de rastrear as visualizações de posts sem um plug-in usando post meta? Embora provavelmente haja um plug-in para isso, criamos um trecho de código rápido que você pode usar para rastrear visualizações de posts sem um plug-in usando post meta no WordPress.

Instruções:

Adicione esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:

function getPostViews($postID){
    $count_key = 'post_views_count';
    $count = get_post_meta($postID, $count_key, true);
    if($count==''){
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, '0');
        return "0 View";
    }
    return $count.' Views';
}
function setPostViews($postID) {
    $count_key = 'post_views_count';
    $count = get_post_meta($postID, $count_key, true);
    if($count==''){
        $count = 0;
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, '0');
    }else{
        $count++;
        update_post_meta($postID, $count_key, $count);
    }
}

// Remove issues with prefetching adding extra views
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); 

Opcionalmente, adicione esse código também a uma coluna no administrador do WordPress que exibe as visualizações de post:

// Add to a column in WP-Admin
add_filter('manage_posts_columns', 'posts_column_views');
add_action('manage_posts_custom_column', 'posts_custom_column_views',5,2);
function posts_column_views($defaults){
    $defaults['post_views'] = __('Views');
    return $defaults;
}
function posts_custom_column_views($column_name, $id){
	if($column_name === 'post_views'){
        echo getPostViews(get_the_ID());
    }
}

Essa parte do código de rastreamento de visualizações definirá as visualizações de posts. Basta colocar esse código abaixo no arquivo single.php dentro do Loop do WordPress.

<?php
          setPostViews(get_the_ID());
?>

Observação sobre o cache de fragmentos: Se você estiver usando um plug-in de cache como o W3 Total Cache, o método acima para definir visualizações não funcionará, pois a função setPostViews() nunca seria executada. No entanto, o W3 Total Cache tem um recurso chamado cache de fragmentos. Em vez do método acima, use o seguinte para que a função setPostViews() seja executada sem problemas e rastreie todas as visualizações de posts mesmo quando o cache estiver ativado.

<!-- mfunc setPostViews(get_the_ID()); --><!-- /mfunc -->

O código abaixo é opcional. Use esse código se quiser exibir o número de visualizações em suas postagens. Coloque esse código dentro do Loop.

<?php 
          echo getPostViews(get_the_ID());
?>

Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress, para não danificar acidentalmente seu site.

Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 10 melhores plug-ins de depoimento do WordPress e como configurar o rastreamento de autores no WordPress com o Google Analytics.

Comentários   Deixe uma resposta

  1. Hi, looking for query to remove posts without views, any ideas ? thanks 🙂

  2. Kevin, Thanks for this nice snippet.

  3. How will this work for a site with a very large traffic volume? I was looking into a post view plugin that is very popular (can’t remember the name of it now), and that was a concern mentioned in the comments.

  4. It works fine with new versions of WP. Make sure you have things setup correctly.

  5. Hi, there any way to reset the counter to zero views?

    1. Hi Cyndy everything is saved as meta data so you can just go into the post and change the value from whatever it is to zero.

      1. Kevin, thanks

        your tutorial very useful!!

        1. Hi Cyndy, Hi Kevin.
          Cool code.
          I can’t find the exact place where this meta data is stored for each post to change it.
          Inside the post (From Dashboard->Post->Edit) there is only the content of the post, no meta data.
          Thanks.

  6. Hi Kevin!
    I used your snippet for some time now and I’m happy, but in the last weeks something happened and it stopped counting all the views. I know this because i see 500 views from google analytics, yet the snippet shows only 18 views? I’m using the exact code you presented here, no modifications. I just changed a count last month and since then everything stopped working.

    1. Normally this would be because you have installed a new plugin or something along that lines. I have tested this snippet on new versions of wordpress and it should work just fine. Do you happen to have a cache plugin running on your site, like w3 total cache?

      1. I do have w3 installed. how is it affecting the snippet? it worked until now with it side by side, why is it causing problems now? I cleaned the cache many times and still nothing. ughhhh!

        1. because it would not be calling the setPost function since things are cached, send me an email using the contact form and ill send you and updated version that will solve the problem.

          1. can you share here?

  7. Is there any way for the views count to be reset every day in order to show just the number of views for the current day?

    1. Hi Pere,
      Yes absolutely, but you would have to change a fair amount of code to achieve this. Unfortunately not just a simple change,

      1. This is exactly what I am looking for. Is there any place where I can get this information?
        I need to implement a Trending Section Page for a customer of mine and I am a bit stuck with this at the moment. It seems I can’t get any information about it around the web.
        Any help would be very much appreciated!

    2. Hi Pere, did you find anything out about it?

  8. Mark Petherbridge janeiro 10, 2015 em 8:25 pm

    Is there anyway to get this to only register unique views? Bashing f5 on my keyboard is cranking up the numbers.

    1. Hi Mark,
      Yes but not easily with this snippet. You could do some cookie checking, or tracking of ip addresses for better but not perfect unique views. Or even require users to be logged in and track on a users by user basis.

  9. $count = 0; in setPostViews() on line #15 should be removed, it doesn’t really do anything 😉

  10. Hands down the quickest snippet to implement
    I’m using it for several frontend notification methods, great work

    You rock!

  11. thank’s this tutorial

  12. Where is the count stored? Is it in a database?
    Wanted to know if it’s possible to change the values.

    Works well for me on latest version of wordpress, thanks.

  13. for me it is counting twice…

    1. Hi Andrew, is likely prefetching, or the setViews is added more than once. To solve the one issue try adding this. Note the code above.

      // Remove issues with prefetching adding extra views
      remove_action( ‘wp_head’, ‘adjacent_posts_rel_link_wp_head’, 10, 0);

  14. Hi, this seems to stop working in WP 4.0. Can anyone confirm or provide fix? thx u!

    1. Have you heard anything on this? I just upgraded to 4.0, and would like to use this.

    2. Same here.

    3. I’m using 4.0 and nothing wrong 🙂

  15. Wow. This saved me time. Very nice dude thank you.

  16. Great snippet but still incrementing on every post.

  17. Hello!
    Sorry for bad english, I’m using a translator. I’m from Brazil.
    I have a site that already has several views on the post, as I do not lose these views? Is to update the database? I use this plugin: WP-PostViews

  18. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

    1. Hi Randy you can do the following by adding a div around the php function. i added a sample on pastebin
      http://pastebin.com/ThLasSJB

      1. I tried that right now and its not working.

      2. I tried that right now and its not working.

      3. I tried that right now and its not working.

      4. I tried that right now and its not working.

      5. I tried that right now and its not working.

      6. I tried that right now and its not working.

        1. Hi Randy,
          is the snippet displaying the number of views? if so it has something to do with your css or html as copying that snippet and placing it within your single post loop should work fine. You just have to define some styles to apply.

  19. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  20. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  21. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  22. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  23. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  24. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

  25. Would you happen to help me in styling the echo output. I want to put the views count on my loop and I accomplished that perfectly but how do I add a css to the output for the text? Any ideas on that. Thank You

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!