If this Page Show This Else Show This

前端 未结 5 700
-上瘾入骨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

    You can do it with a simple if statement, but this will only work for your contact page. You could also use a simple function in your inc-header file that would work like so:

    function LinkToPageOrHome( $script, $title ){
       if ( strtolower( $_SERVER[ 'SCRIPT_NAME' ] ) == strtolower( $script) ){
           $script = 'home.php';
           $title = 'Home';
       }
       echo '

    ' . htmlentities( $title ) . '

    '; }

    It's sort of a blunt approach from a design standpoint, but you could use LinkToPageOrHome( 'page.php', 'My Page' ); in multiple templates and never worry about having a page link to itself.

提交回复
热议问题