如何在wordpress中的帖子和页面上排除一些代码?

时间:2015-04-30 08:41:46

标签: wordpress-plugin wordpress

我的header.php文件中有一个功能框,因此功能框也会显示在每个页面和帖子页面中。我只需要在主页上保留此功能框,而不是其他地方需要什么代码?

1 个答案:

答案 0 :(得分:1)

您正在寻找is_front_page()功能:

if ( is_front_page() ) {
    // Show the feature box
} else {
    // Do something else
}