Home >CMS Tutorial >WordPress >How to enter a few numbers in wordpress and jump to the result
Steps to enter a number in WordPress and jump to the results: Create a custom field "Jump to Number" and select the data type as Number. Create a template file "jump-to-result.php" that contains a form for entering numbers and code to jump to the results page. Use code to load the template in the page where the form needs to be displayed. The number passed via the GET request is processed and displayed in the result page "result-page.php".
How to enter a number and jump to the results in WordPress
Enter a number and jump to the WordPress website Getting to the results function is a simple process. Here’s how to do it:
Step 1: Create a Custom Field
Go to the “Custom Fields” menu in your WordPress dashboard (under “Settings” ).
Create a name for your custom field, such as "Jump Number".
Select the data type as "Number".
Step 2: Create a template file
Create a new template file, such as "jump-to-result.php".
Add the following code to the file:
<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>
Replace "result-page.php" with the file name of the results page you wish to jump to.
Step 3: Use the template in the page
In the page where you want the form to appear, use the following code to load the template:
<code class="php"><?php get_template_part( 'jump-to-result' ); ?></code>
Step 4: Process the result page
In the "result-page.php" file, get the number passed through the GET request and display it on the page:
<code class="php"><?php if ( isset( $_GET['number'] ) ) { $number = $_GET['number']; echo "您输入的数字是:$number"; } ?></code>
After completing these steps, users will be able to enter numbers on your WordPress site and jump to a page showing the results.
The above is the detailed content of How to enter a few numbers in wordpress and jump to the result. For more information, please follow other related articles on the PHP Chinese website!