Contador de visitas para WordPress sem plugin
Coloque o código que ver abaixo, no fim do arquivo functions.php, do theme filho e depois salve. // ######### Contador de visitas para Wordpress ############## function contar_visitas( $id, $action ) { $edCountMeta = 'ed_post_views'; $edCount = get_post_meta($id, $edCountMeta, true); if ( $edCount == '' ) { if ( $action == 'count' ) { $edCount = 1; } delete_post_meta( $id, $edCountMeta ); add_p ...
Continue lendo