dqingn8836 2014-02-25 00:20
浏览 104
已采纳

Wordpress网站 - 仅在一个特定页面上取消链接标题图像

I've got a wordpress site, here -

http://www.radionowhere.net/sandbox/

  • for which I'm trying to remove the home page link associated with the header image on just one specific page of the site. This is using the Twenty Thirteen theme.

Pretty sure I should be looking at adding some conditional PHP to my site's header.php file (yes, I know I should be using a child theme, but I'm not), but I'm not sure exactly where it should go (drop it right into the middle of the link html?).

Here's what I assume is the relevant portion of the header.php code:

<body <?php body_class(); ?>>
    <div id="page" class="hfeed site">
        <header id="masthead" class="site-header" role="banner">
            <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
                <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
                <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
            </a>

            <div id="navbar" class="navbar">
                <nav id="site-navigation" class="navigation main-navigation" role="navigation">
                    <h3 class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></h3>
                    <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
                    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
                    <?php get_search_form(); ?>
                </nav><!-- #site-navigation -->
            </div><!-- #navbar -->
        </header><!-- #masthead -->

Thoughts? Thanks!

Okay, not sure this is exactly how to follow up, but...Thanks, Sean. This makes sense to me, but I guess I'm not putting it in the right place? This is what I've got right now, and it's borking my site and giving me a plain white screen:

<div id="page" class="hfeed site">
    <header id="masthead" class="site-header" role="banner">
        <?php if(is_page('2850')) { ?>
            <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
            <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
        <?php } else { ?>
        <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
            <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
            <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
        </a>
        <?php ?>

        <div id="navbar" class="navbar">
            <nav id="site-navigation" class="navigation main-navigation" role="navigation">
                <h3 class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></h3>
                <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
                <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
                <?php get_search_form(); ?>
            </nav><!-- #site-navigation -->
        </div><!-- #navbar -->
    </header><!-- #masthead -->

Did I screw something up?

  • 写回答

3条回答 默认 最新

  • douzhan1994 2014-02-25 00:36
    关注
    <?php if(is_page('home')) { ?> //or whatever the name of the page is
         <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
         <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
    <?php } else { ?>
    <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
           <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
            <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
     </a>
    <?php } ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?