Skip to content

Instantly share code, notes, and snippets.

@hamidrezayazdani
Created December 23, 2021 13:17
Show Gist options
  • Save hamidrezayazdani/96fe5c3a0f380876b0ebda0207cdaa48 to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/96fe5c3a0f380876b0ebda0207cdaa48 to your computer and use it in GitHub Desktop.
جلوگیری از ریدایرکت توسط وردپرس
<?php
/**
* Prevent wordpress from redirect deleted posts
*/
remove_action( 'template_redirect', 'wp_old_slug_redirect' );
remove_action( 'post_updated', 'wp_check_for_changed_slugs', 12, 3 );
add_filter( 'redirect_canonical', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment