我试图用 php 简单地显示内容if statement
。
我只想为主页添加一个页脚元素(到 footer.php)。
所以,if
body 标签有类 ' home
'; 然后添加新的页脚元素。我在下面尝试;但目前根本没有显示任何内容。
$classes = get_body_class();
if (in_array('home',$classes)) {
function lastUpdated() {
echo '<div class="last-updated">Last Updated:<span class="date-update"></span></div>';
}
}
上面的代码在我的子主题functions.php
文件中;