这是浏览器中显示的内容:
模板目录
这将被PHP忽略并由浏览器显示。而 这将被解析。
这也将被PHP忽略并由浏览器显示。 否则会显示。
这是html中的php。
因此PHP在html中工作,但在调用WordPress函数时不起作用。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LaPizzaria</title>
<?php
?>
</head>
<body>
<h1>template directory</h1>
<p>This is going to be ignored by PHP and displayed by the browser.</p>
<?php echo 'While this is going to be parsed.'; ?><br>
<p>This will also be ignored by PHP and displayed by the browser.</p>
<?php if ($expression == true): ?>
This will show if the expression is true.
<?php else: ?>
Otherwise this will show.
<?php endif; ?>
<p<?php if ($highlight): ?> class="highlight"<?php endif;?>>This is a php within html.</p>
<header class="site-header">
<div class="logo">
<img src="<?php get_template_directory_uri() ?>">
<h1><?php echo get_template_directory_uri() ?></h1>
</div>
</header>
</body>
</html>