After a bit of research I’ve fixed the problem I had with the redirect after logout. I’ve added this code to my functions file and it will use two filters to modify the default beahviour of wordpress after an user do the logout
/* Logout URL Fix */
function custom_logout_url( $logout_url, $redirect ) {
$logout_url = home_url( '/access.php?action=logout' );
$logout_url = wp_nonce_url( $logout_url, 'log-out' );
return $logout_url;
}
add_filter( 'logout_url', 'custom_logout_url', 10, 2 );
function custom_redirect_after_logout() {
if ( ! is_admin() ) {
wp_safe_redirect( home_url() );
exit();
}
}
add_action( 'wp_logout','custom_redirect_after_logout' );
I will write a plugin so in future I will be able to get all things in place without touching the theme functions file.
Related Posts:
- How to make a image-size selected by default in Media upload – WP v3.5
- Apply class to every paragraph that holds image?
- Remove “Insert from URL” link in Media upload – WP 3.5
- static variable loop not working in WordPress
- adding a filter to a shortcode?
- Set media upload attachment link to none and hide it in WP v3.5
- How to log out everywhere else, destroy all sessions “all other devices”?
- Change the footer text on the login page
- add_filter to post-gallery and remove all ‘s?
- How to overwrite youtube embed?
- Rewriting search and pagination base
- Check if page parent has certain template
- Change comments form title on a page by page basis
- Remove class that has been added by parent theme
- How do I know what variables are passed in a filter/action and what their meaning is?
- Why do filters/actions require an argument count?
- How to use return in my custom function instead of echo
- Run a filter when a walker runs
- Handling Body class based on Template
- Get_avatar filter?
- Add a class to the anchor tag on HTML5 gallery
- add_action shortcut?
- Login/logout in header
- How can I remove a function that has been added to wordpress with add_filter?
- How to control WordPress image metadata (using Imagick)?
- How do I add custom bulk actions to multiple custom post types?
- Add data attribute to each li in menu
- Removing “wpautop” (auto tags) only on certain pages?
- Print last modified date only on posts
- WordPress Gravatar filter is removing my custom attributes
- Generating an nonce for Content Security Policy and all scripts – How to make it match/persist for each page load?
- Unique icons next to each WordPress menu item
- Alter required message using comment form api
- Add item to top of menu using a filter in functions.php
- How to make modifications only to certain elements of an HTML string on the server-side?
- Override a function defined in wp-includes/comment-template.php
- Filtering a function’ output for a new continued function
- Deleting Certain terms from appearing on the front end as links
- Content filter won’t work
- Warning: in_array() null given in PHP function
- Upload multiple files in randomly generated folder using wp_upload_bits
- Create page template via functions.php?
- Add meta tags to a custom header
- How to have different site identity logos on each page on Astra Theme [closed]
- Custom query vars filters problem with pagination
- Get the name of menu item with wp_nav_menu
- How to add aria role and schema markup to custom walker container
- Must filter functions receive all arguments passed to them?
- User filter posts by year
- How to remove get_header From all single pages in wordpress with functions.php without plugin?
- Apply function.php filter only if url not has /amp/
- Change lost password url to a mailto URL in WordPress
- Remove span tags from WooCommerce Downloads page
- How to bind each “the_content” elements to a custom variables
- Reload page with a different shortcode when a user selects from a dropdown
- WordPress Ajax filter: Create two loops for different output styles?
- Custom Bulk Actions handler not firing
- How to generate customized filtered output for the gallery
- How to remove title tag with this filter
- str_replace not preserving whitespace
- Woocommerce Price Text
- Limit Taxonomy Parents
- Display a post based on its metabox selection
- Search box background on a different page template
- Display a list of users with avatar filterable with alphabets
- AJAX: WordPress filters inside $html do not work as intended
- Assign new post author IF another user in custom field on post transition
- Add attribute to featured image with filter (wp_get_attachment_image_attributes)
- How to add different menu items on different menus?
- How to pass value to add_filter wpcf7_form_tag from another function?
- Add text below WooCommerce short description if metabox value is true
- Is there a hook that I can use when a fatal error occurs?
- Filtering with Attributes – how to display all non-queried products below query
- Hide old attachments from wp media library
- PHP – redirect https to http and www to non-www
- body_class filter – Is there a better way to write this code?
- Sort registered users by post count? (inside admin dashboard)
- How to change a public function inside a class of a plugin?
- WooCommerce – Reset quantity input field when variation changes
- Query all posts of a custom taxonomy term
- How to abort saving data in save_extra_profile_fields function WordPress?
- Get the date of the className or classID
- Is the “_s” on this `sprintf(__(‘Page %s’, ‘_s’), max($paged, $page))` just refer to a text domain?
- Exclude category
- How to append to an array and return the results in a filter?
- Co-Authors Plus: How do I get all authors with a query?
- Why i can’t get custom fields value or post ID via Ajax?
- How to reference PHP in Javascript
- making php value numeric
- Uncaught TypeError: extract(): Argument #1 ($array) must be of type array, null given
- Cannot find the php_ini configuration file to find my error log to see why my code is not working
- How to Send Pingbacks for all Posts in WordPress?
- HTML comment cause issue in functions.php script root
- How to call a function from functions.php with ajax?
- Showing wordpress latest post thumbnails in slider with auto increment
- My function echos only “array”
- Notify admin (by email) if post added with specific tag
- Options.php loop won’t show!
- Dynamic Email Handler with ‘header (“Location: …’
- How to automatically flush permalinks?