Skip to content

Instantly share code, notes, and snippets.

@jsoningram
Created August 24, 2016 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jsoningram/7de72b0beee8fce978794680381b11ec to your computer and use it in GitHub Desktop.
Save jsoningram/7de72b0beee8fce978794680381b11ec to your computer and use it in GitHub Desktop.
Export Yoast redirects to CSV file
<?php
$array = get_option('wpseo-premium-redirects');
foreach ( $array as $key => $row ) {
file_put_contents( ABSPATH . 'redirects.csv', $key . ',' . $row[ 'url' ] . "\n", FILE_APPEND );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment