How to call PHP Function from HTML?

  • Thread starter Thread starter TransPersonal
  • Start date Start date
T

TransPersonal

Guest
I'm using Wordpress and I have this PHP function in the footer.php page:

<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>

It's refers to a pagination plug in that I installed. I want the pagination to appear in a certain area on my page. What do I have to write in the html to call this code into action?
 
Back
Top