如何使网站标题可点击并链接回主页

时间:2017-06-10 19:07:12

标签: php html wordpress header href

我正在努力使我的标题的网站标题可点击并链接回主页。 (例如,google.com - 如果您点击谷歌徽标,则返回谷歌主页。)我已将所有正确的代码添加到我的header.php但它仍然不允许我点击该网站标题。有没有人看到任何错误或有任何解决方案?提前谢谢。

我的header.php



<?php
/**
 * 
 *
 * 
 */

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<div id="ht-page">
<header id="ht-masthead" class="ht-site-header">
<div class="ht-container ht-clearfix">
<div id="ht-site-branding">
<?php 
if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) :
the_custom_logo();
else : 
if ( is_front_page() ) : ?>
<h1 class="ht-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="ht-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif; ?>
<p class="ht-site-description"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'description' ); ?></a></p>
<?php endif; ?>
</div><!-- .site-branding -->

<nav id="ht-site-navigation" class="ht-main-navigation">
<div class="toggle-bar"><span></span></div>
<?php 
wp_nav_menu( array( 
'theme_location' => 'primary', 
'container_class' => 'ht-menu ht-clearfix' ,
'menu_class' => 'ht-clearfix',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
) ); 
?>
</nav><!-- #ht-site-navigation -->
</div>
</header><!-- #ht-masthead -->

<div id="ht-content" class="ht-site-content ht-clearfix">
&#13;
&#13;
&#13;

我的css

&#13;
&#13;
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

#ht-masthead{
  background: #FFF;
  height: 70px;
  border-bottom: 1px solid #eee;
  z-index: 99;
  transition: height 0.3s ease;
  -moz-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  position: fixed;
  text-align: center;
  width: 0 auto;
  margin-right: 38px;
  width: 100%;
}
.ht-site-title{
font-family: 'futura_tbold';
    font-size: 24px;
    text-transform: uppercase;
letter-spacing: 6px;
        line-height: 1;
    margin-bottom: 8px;
    margin-top:5px;
    margin-left: 75px;
    text-align: left;
    float: left;

    padding: 15px 0;
transition: padding 0.3s ease;
-moz-transition: padding 0.3s ease;
-webkit-transition: padding 0.3s ease;
}

.ht-site-title a{
text-decoration: none;
color: #000;
}
.ht-site-description{
	color: #EEE;
	margin: 0;
	font-size: 15px;
	font-style: italic;
	line-height: 1;
}

.ht-site-description a{
	color: #333;
}











/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
#ht-content {
    padding-top: 200px;
}
.ht-section {
  padding: 60px 0;
  background: #FFF;
}

.ht-section-title-tagline {
  margin-bottom: 60px;
  text-align: center;
}

.ht-section-title {
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 36px;
  width: 60%;
  margin: 0 auto 15px;
}

.ht-section-title:last-child {
  margin-bottom: 0;
}

.ht-section-tagline {
  font-size: 20px;
  width: 70%;
  margin: 0 auto;
}

#ht-page {
  width: 100% !important;
  margin: 0 auto;
  max-width: 100% !important;
  overflow: hidden !important;
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

#ht-site-navigation {
  position: absolute;
  width: 100%;
  padding: 15px 0;
  transition: padding 0.3s ease;
  -moz-transition: padding 0.3s ease;
  -webkit-transition: padding 0.3s ease;
  float: right;
}

.ht-sticky #ht-site-navigation {
  padding: 17px 0;
}

.ht-main-navigation .ht-menu {}

.ht-main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: inline-block;
  position: relative;
}

.ht-main-navigation li {
  float: left;
  margin-left: 30px;
}

.ht-main-navigation a {
  display: block;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  line-height: 36px;
  padding: 0 15px;
  font-weight: 600;
  letter-spacing: 2px;
  padding-bottom: 40px;
}

.ht-main-navigation ul ul {
  position: absolute;
  left: 0;
  top: 100%;
  background: #FFF;
  min-width: 200px;
 right:0;
  z-index: 999;
  padding: 8px;
  margin-top: -21px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    height:300px;
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.ht-sticky .ht-main-navigation ul ul {
  margin-top: 17px;
}

.ht-main-navigation ul ul ul {
  left: 100%;
  top: 0;
  margin: 0 0 0 8px;
  border-top: 0;
}

.ht-sticky .ht-main-navigation ul ul ul {
  margin-top: 0;
}

.ht-main-navigation ul ul a {
  text-transform: uppercase;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
  padding: 7px 25px;
  font-size: 12px;
 text-align: left;
}
.ht-main-navigation ul ul li:first-child {
    padding-top: 15px;
}
.ht-main-navigation ul ul li {
  float: none;
  margin: 0 0 5px;
}

.ht-main-navigation ul ul li:last-child {
  margin-bottom: 0;
}

.ht-main-navigation ul li:hover > ul {
  opacity: 1;
  transform: scaleY(1);
}

.page-template-home-template .ht-main-navigation .current_page_item > a,
.page-template-home-template .ht-main-navigation .current-menu-item > a,
.page-template-home-template .ht-main-navigation .current_page_ancestor > a,
.home.blog .ht-main-navigation .current_page_item > a,
.home.blog .ht-main-navigation .current-menu-item > a,
.home.blog .ht-main-navigation .current_page_ancestor > a {
  background: none;
  color: inherit;
}

.ht-main-navigation li:hover > a,
.page-template-home-template .ht-main-navigation li:hover > a,
.home.blog .ht-main-navigation li:hover > a,
.ht-main-navigation .current_page_item > a,
.ht-main-navigation .current-menu-item > a,
.ht-main-navigation .current_page_ancestor > a,
.page-template-home-template .ht-main-navigation .current > a,
.home.blog .ht-main-navigation .current > a {
  color: #000;
  text-decoration: none;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 15px;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

我不确定您是单击标签的标题还是标题标签可点击。
如果您的意思是使标题标记可以点击,请尝试以下代码段:

&#13;
&#13;
header {
  background-color: red;
  height: 50px;
  width: 100%;
  cursor: pointer;
}
&#13;
<header onclick="alert('Clicked')"></header>
&#13;
&#13;
&#13;

如果您想使标签的标题可点击,那么您运气不好。
这是不可能的。

答案 1 :(得分:0)

如果你想要一个文本链接,请使用href,如果你想要一个图像链接,将img标记放在标签中

* {
  padding-bottom: 10px;
}
<a href="https://google.com">Google!</a>

<a href="https://google.com">
  <img src="https://www.google.co.uk/images/branding/googlelogo/2x/googlelogo_color_120x44dp.png">
</a>

注意:由于片段内容,链接无法在这里工作