¿Estás buscando una forma de obtener el número total de “Me gusta” de Facebook que tienen tus publicaciones? Aunque probablemente exista un plugin para ello, hemos creado un fragmento de código rápido que puedes utilizar para obtener el total de “Me gusta” de Facebook y mostrarlo en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function fbCount($url) { $content = file_get_contents("http://api.ak.facebook.com/restserver.php?v=1.0&method=fql.query&query=select%20url,%20total_count%20from%20link_stat%20where%20url%20in%20('".$url."')&format=xml"); $fbCount = simplexml_load_string($content); echo $fbCount->link_stat->total_count; if(is_bool($fbCount)){ print '0'; }else{ echo $fbCount; } }
Añade este código al archivo single.php de tu tema para mostrar el número total de “Me gusta” de Facebook que tienen tus publicaciones.
<?php fbCount(get_permalink($post->post_id)); ?>
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 27 mejores temas de negocios de WordPress para su sitio web y cómo crear un formulario de donación de WordPress.
Do I need to add anything else for this to work? It just outputs 0;
@c74a43f8a3edc5e1429dda40cf329a8c:disqus nope that is it, however you may want to contact your hosting provider to make sure they have “file_get_contents” some shared hosting solutions do not have this enabled.
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks
Hi kevin!
how to put ” like” or the hand icon after the like number?
thanks