我有一个网站,有5个主要页面(将它们视为部分),然后每个页面有3-5个子页面。我想为每个部分显示一个flash横幅,即它应该在该页面及其所有子页面上显示flash横幅。
现在,我可以通过使用以下代码在主页上获得这些信息。
<?php if (is_page(\'our-school-district\')) { ?>
<object width="664" height="217">
<param name="movie" value="<?php bloginfo(\'url\'); ?>/wp-content/uploads/2011/03/school_district.swf" />
<param name="wmode" value="transparent" />
<embed src="<?php bloginfo(\'url\'); ?>/wp-content/uploads/2011/03/school_district.swf" width="664" height="217" wmode="transparent"></embed>
<!-- It Is Not Just About The Seeds That Are Planted, but the Garden That Surrounds Them. -->
</object>
<?php } ?>
如何在所有子页上也获得它?