Set active state on navigation dynamically

前端 未结 6 1241
遇见更好的自我
遇见更好的自我 2021-01-05 20:33

I seem to run into this problem frequently and can never find a solution. I have a Wordpress site with a top navigation. Since this is in my header.php, and used on all page

6条回答
  •  耶瑟儿~
    2021-01-05 21:24

    You can try like this

  • Home
  • Contact
  • And then in your home page

    $this_page='Home';
    

    And in your contact page

    $this_page='Contact';
    

提交回复
热议问题