你可以输入你的代码functions.php
定义字符串的位置,例如:
<?php
function get_banner_text() {
$url = $_SERVER["REQUEST_URI"];
if (strpos($url, "bob.")) {
$banner_text = "Welcome to Agent Bob\'s Portal!";
} else {
$banner_text = "Default text here";
}
return $banner_text;
}
?>
之后,例如
header.php
您可以选择:
<div class="banner"><?php echo get_banner_text(); ?></div>