仅在一个页面上显示标题小部件

时间:2015-06-30 18:43:08

标签: wordpress header show visible

我在网站www.stuff-n-uff.be上使用Wordpress,并且我只想在主页上显示标题小部件。现在我已经完成了这项工作,但是有一个问题;过了一会儿,标题小部件一直消失。

这是我的代码:

body div.header-widget-region {
height: 0;
visibility: hidden;
}

nav.woocommerce-breadcrumb {
margin-bottom: 1.5em;
}

.home.archive.post-type-archive.post-type-archive-product.logged-in.admin-bar.custom-background.woocommerce.woocommerce-page.right-sidebar.woocommerce-active.has-site-logo.customize-support div.header-widget-region {
height: 273px;
visibility: visible;
}

1 个答案:

答案 0 :(得分:1)

你必须为这个小部件做php代码。

<?php 
  if(is_front_page()):
    //place your widget here
  endif;
?>