click count of a certain link in wordpress post

前端 未结 2 1279
故里飘歌
故里飘歌 2021-02-06 13:51

Is it possible to count how many times a certain link in post has been clicked?

(for example purpose, let\'s say that the certain link has an ID named \'bla\')



        
2条回答
  •  难免孤独
    2021-02-06 14:19

    One possible way is to redirect all through a common PHP gateway and from there, redirect to the original page you wanted to redirect using Header('Location: yourpage.html'); In the gateway PHP page count the number by incrementing a saved value by 1.

提交回复
热议问题