mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
7 lines
191 B
Text
7 lines
191 B
Text
add_filter( 'aioseo_redirects_log_skip', 'redirects_log_skip', 10, 2 );
|
|
function redirects_log_skip( $skip, $data ) {
|
|
if ( 404 === $data['http_code'] ) {
|
|
$skip = true;
|
|
}
|
|
return $skip;
|
|
}
|