在您的index
模板,您将希望在您的谷歌广告周围添加一个条件。该条件的主题由您决定,并将取决于您的确切需求。例如,如果您希望它显示在主页上,但不显示在其他页面上,您可以检查is_home()
. 如果您的需求更抽象,您可以定义一个全局变量,并在get_template_part
呼叫,例如。$GLOBALS[\'show_ad\'] = true;
然后只显示谷歌广告,如果这是真的。
编辑:例如,您只想在主页上显示此内容。以下是您的索引页的外观。。。
<?php if ( is_home() ) : ?>
<div id="ad-id">google ad code goes here </div><br />
<?php endif ?>
<div id="post-id">My posts are goes here</div>
或者,说你的需求更抽象。这两个页面都有一个全局变量。
index page:
<?php if ( isset( $GLOBALS[\'show_ad\'] ) && true == $GLOBALS[\'show_ad\'] ) : ?>
<div id="ad-id">google ad code goes here </div><br />
<?php endif ?>
<div id="post-id">My posts are goes here</div>
Calling template:
# Show the ad
$GLOBALS[\'show_ad\'] = true;
get_template_part( \'index\' );
。。。或
# Don\'t show the ad
$GLOBALS[\'show_ad\'] = false;
get_template_part( \'index\' );