Set active class on current page

前端 未结 4 2074
隐瞒了意图╮
隐瞒了意图╮ 2021-01-16 08:46

I have this navigation, but I can\'t seem to find a solution to add an .active class to the current page. Can anyone help me here?

4条回答
  •  失恋的感觉
    2021-01-16 09:20

    Active menu for current page such as contact.php, about.php, we can make variable like $currentpage with asign different value for diffrent page

    $currentPage = 'contact'; // current page is contact
    

    In header section like do below

    
    

提交回复
热议问题