こんにちは、WordPress サイトのページ内の URL から値を出力しようとしています
私は header.php を編集し、次のコードを入力しました
<?php
$town = rawurldecode( $_GET['town'] ); ?>
追加した値を印刷したいページ
<?php print $town ?>
ページでphpを許可するプラグインをいくつか試しましたが、エラーが発生しました
URLは次のようになります
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?