好了,开始了。我希望我在正确的地方。抱歉,如果已经回答了,我查看了常规,但找不到答案。
我目前正在建设WP网站,在主页上有一个滑动区域。由于缺少更好的术语,内部页面将有一个较小的“页面/帖子标题的英雄”。基本上,我正在尝试为小“英雄”内的每一页交换一幅图像和一个标题
所以我写了这篇文章,但我很难将标题插入到div中。
//Vars
$about = \'about-us-gradient\';
$work = \'work-gradient\';
if (is_page(\'about-us\')) {
echo \'<div class="hero-interior-inner-gradient\'. \' \'. $about . \'">\'. \'<div class="hero-overlay">\'. add_title() .\'</div>\'. \'</div>\';
}
elseif (is_page(\'work\')) {
echo \'<div class="hero-interior-inner-gradient\'. \' \'. $work . \'">\'. \'<div class="hero-overlay">\'. add_title() .\'</div>\'. \'</div>\';
}
function add_title() {
if (is_home() ) {
echo apply_filters(\'the_title\', get_post(get_option(\'page_for_posts\') )->post_title);
} elseif ( is_search() ) {
echo \'Search Results\';
} else {
echo the_title();
}
}