wordpress想让某个链接不进行跳转代码示例

2024年04月03日 建站教程

找到主题下functions.php文件中新增以下代码​

//禁止WordPress所有页面的跳转功能
function disable_page_redirects() {
  global $wp_query;
  if ( is_singular() ) {
  $wp_query->set_404();
  status_header( 404 );
  }
}
add_action( 'init', 'disable_page_redirects' );

//禁止“your-url”特定页面的跳转链接。
function custom_disable_redirect_canonical( $redirect_url ) {
  if ( is_page( 'your-page-slug' ) ) {
    return false;
  }
  return $redirect_url;
}
add_filter( 'redirect_canonical', 'custom_disable_redirect_canonical' );

本文链接:http://so.lmcjl.com/news/1054/

展开阅读全文
相关内容