你好,我正在尝试从 WordPress 网站页面内的 URL 打印一个值
我已经编辑了 header.php 并输入了以下代码
<?php
$town = rawurldecode( $_GET['town'] ); ?>
在我想打印我添加的值的页面上
<?php print $town ?>
我已经尝试了一些允许在页面中使用 php 的插件,但我得到了错误
网址看起来像这样
website.co.uk/page/?town=abc
我尝试的结果是在页面中需要它时使用 PHP 标记
例如
Hello i live in <?php print $town ?>, would you like to
come see the football in <?php print $town ?>?.
Did you know that <?php print $town ?> is not that far?