Let’s say your site’s address is example.com
. When you want to redirect to example.com/page/subpage
you should use site_url('/page/subpage')
.
I assume the WordPress address is http://127.0.0.1:8000
. You have in your code
site_url( 'http://127.0.0.1:8000/?page_id=5' )
and it will be converted to this address: http://127.0.0.1:8000http://127.0.0.1:8000/?page_id=5
.
Try using this redirection:
wp_safe_redirect( site_url( '/?page_id=5' ) );
Second issue, if you’ll take a look at code reference, you will find there:
wp_safe_redirect() does not exit automatically and should almost always be followed by exit.
Related Posts:
- Refresh page after form action
- Ninja form Redirect depending on text field content [closed]
- Redirect to another page if the user is logged in when pressing again the login button on menu bar
- Contact Form 7 If Condition
- How to properly refresh page after form action?
- Init action and refresh page after form action
- template_redirect action only firing if logged in
- How to change form action of wp-login page with a function
- Sending Messages Back to the Template After Processing?
- How to redirect using a custom wordpress api endpoint after form submission?
- remove_action on after_setup_theme not working from child theme
- Remove Actions/Filters added via Anonymous Functions
- Trying to use add_action and do_action with parameters
- Check if post is being published for the first time, or is an already published post being updated
- How to use the do_action () with parameter
- Perform an action when post is updated/published
- WordPress Theme Update Action?
- Extract image from content and set it as the featured image
- Do WordPress’ cron’s clean up expired transients?
- add_action in a function, is it possible?
- How can I get $id variable in widget’s form function?
- Using a private method as an action callback from within a class
- contactform7 remove tags with “wpcf7_autop false” from functions.php
- How to restrict actions and filters “properly” by conditions
- How to count number of functions attached to an action hook?
- Add action hook conditionally – only when home.php in use
- Masking logout URL
- Using add_filter() in Widgets
- Add new user : make the fields First Name and Last name required
- Logout/login redirect CSS issue
- How to call WordPress functions from a form processing script
- How can I tell if I’m on a login page? [duplicate]
- Paged Single Post doesn’t redirect to the main url after Removing Pagination
- what is the meaning of settings_fields()
- Change meta tags programatically
- redirect wp-login.php to another page
- WP Login forms action URLs displayed as pretty URLs in browser (ex with Restore Password)
- Convert hyphen to underscore in permalinks
- Using get_terms for custom taxonomy in functions.php
- Fatal error: Call to undefined function add_action() – an untouched problem
- How to hook into the quick edit action?
- Reuse variable in hook callback
- update_post_meta for custom field not working upon form submission
- Call to undefined add_action() in theme’s functions.php
- How do I redirect upon login a specific user based on role?
- WooCommerce add_action hook results in 500 error
- Automatically Add Specified Value to Attachment Metadata upon Upload
- Can’t Update function.php after writing short code
- How to update feed only 2-3 times a week (for Feedburner email)?
- WordPress registration and contact form 7 [closed]
- How would go about if I just want a temporary function?
- Passing arguments to my function with do_action and add_action is not working
- Pass parameters to function through an action
- Accepted arguments value in hook functions
- How to select a page within admin?
- How to manage arrays from custom functions stored in functions.php?
- How do I pass arguments for multiple functions hooked to a single action?
- Which action hook to use for function?
- Gravity Forms – Using a Form to Pre-populate A Gravity Form [closed]
- Custom HTML in specific category single page and its descendant categories
- Redirect specific page in WordPress for first time visit
- How do I redirect all 404 error url to Subcategory url
- WordPress upload_mimes not working for front-end uploads of 3D files
- Ajax not working properly
- Modify a function without editing template
- Don’t delete a page if it holds users
- How do I add Bootstrap and LESS to my migrated WordPress site?
- Having a Function Inside of the Loop
- Which action does wp_update_user triggers?
- How can I get my Script to work on the Login page?
- Trigger a custom function when option are saved in admin area
- 404 redirect to previous category
- Removing custom meta data
- Login Redirect if Logged in from Specific Page
- Is there an alternative to get_template_directory_uri()?
- Reuse variable in hook callback
- Wait a result before enqueue
- Building a request processor for multi-page forms, etc using $_GET requests
- Multiple Loops Meta Data
- Incorrect redirect after commenting
- Function added using `add_action()` not being called
- Difference b/w Simple function call & do_action call
- jQuery does not work
- Override the WordPress core function wp_referer_field
- Set Taxonomy based on post status
- Is There Any Built In WP Functionality For Combining Form Fields To Return Specific Data
- Two functions with different arguments and add_actions, but identical code
- add_action template_redirect not working for home page
- I can’t seem to install Font Awesome locally [closed]
- AMP – Change rel=”canonical” from functions.php [closed]
- wp_nonce_field is breaking form for reasons unknown
- How i can put $_GET codes in function.php?
- Scripts not loading when using the wp_enqueue_scripts action
- Is there a way to prevent a function/method from being called outside a specific hook?
- Why does get_template_directory_uri() not include “www”, only for enqueued stylesheets?
- Auto-Tweet if Type is ‘Status’ using OAuth
- Missing argument for the function
- problem loading stylesheets to wp_head dynamically
- WordPress redirect redirecting too many times or not at all
- current_user_can comma list vs OR (||) list