If this Page Show This Else Show This

前端 未结 5 699
-上瘾入骨i
-上瘾入骨i 2021-01-18 06:16

On all pages apart from the contact page, I want it to show the following in the inc-header.php include.

Contact

5条回答
  •  心在旅途
    2021-01-18 06:47

    There is a global variable named $_SERVER['PHP_SELF'] that contains the name of your page currently requested. Combined with basename() this should work:

    if( basename($_SERVER['PHP_SELF'], '.php') == 'contact' ) {
        // Contact page
    } else {
        // Some other page
    }
    

提交回复
热议问题