Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Created February 17, 2018 19:17
Show Gist options
  • Save albionselimaj/6c4adee70b7574be7024cfe9962272a7 to your computer and use it in GitHub Desktop.
Save albionselimaj/6c4adee70b7574be7024cfe9962272a7 to your computer and use it in GitHub Desktop.
Keep expired listings visible for SEO purposes
<?php
add_action( 'init', function() {
global $wp_post_statuses;
if ( is_array( $wp_post_statuses ) && ! empty( $wp_post_statuses['expired'] ) ) {
$wp_post_statuses['expired']->public = true;
}
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment