我正在编写一个函数,使我的所有标题图像链接到各自的主页。我编写了以下函数:
function get_category_location(){
$header = get_category_header();
$home = bloginfo(\'url\');
if ($header == \'wth\') {
$location = $home . "/wth/" ;
}
else if ($header == \'campus\' || $header == \'tech\') {
$location = get_category_link();
}
else {$location = $home;}
return $location;
}
因此,当你点击我们网站wth部分的标题时,$标题应等于“wth”,而$主页应等于\'http://dev.reesenews.org\'因此位置应设置为\'http://dev.reesenews.org/wth/\'
据我所知,$header和$home是正确的。