在 WordPress 中輸入數字並跳到結果的步驟:建立自訂欄位“跳到數字”,選擇資料類型為數字。建立範本檔案 "jump-to-result.php",包含輸入數字的表單和跳到結果頁面的程式碼。在需要顯示表單的頁面中使用程式碼載入範本。在結果頁面 "result-page.php" 中處理透過 GET 請求傳遞的數字並將其顯示。
如何在WordPress 中輸入數字並跳到結果
在WordPress 網站上實現輸入數字並跳轉到結果功能是一個簡單的過程。以下是如何做到:
步驟1:建立自訂欄位
前往WordPress 儀表板中的「自訂欄位」功能表(位於「設定」下)。
為您的自訂欄位建立一個名稱,例如「跳轉數字」。
選擇資料類型為「數字」。
步驟 2:建立模板文件
建立一個新的模板文件,例如「jump-to-result.php」。
在檔案中加入以下程式碼:
<code class="php"><?php if ( isset( $_POST['jump-number'] ) ) { $number = $_POST['jump-number']; header( "Location: result-page.php?number=" . $number ); } ?> <form method="post"> <label for="jump-number">输入数字:</label> <input type="number" name="jump-number" id="jump-number"> <button type="submit">跳转</button> </form></code>
將「result-page.php」替換為您希望跳到的結果頁面的檔案名稱。
步驟3:在頁面中使用範本
在您希望顯示表單的頁面中,使用下列程式碼載入範本:
<code class="php"><?php get_template_part( 'jump-to-result' ); ?></code>
步驟4:處理結果頁面
在「result-page.php」檔案中,取得透過GET 請求傳遞的數字,並將其顯示在頁面上:
<code class="php"><?php if ( isset( $_GET['number'] ) ) { $number = $_GET['number']; echo "您输入的数字是:$number"; } ?></code>
完成這些步驟後,使用者將能夠在您的WordPress 網站上輸入數字並跳到顯示結果的頁面。
以上是wordpress怎麼做到輸入幾個數字,跳到結果的詳細內容。更多資訊請關注PHP中文網其他相關文章!