Created
January 6, 2020 10:22
-
-
Save techies23/91c3144e5273ac00e51df292c4b434ac to your computer and use it in GitHub Desktop.
Inactive Logout External Redirection custom post type page support code.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add this to your functions.php file | |
add_filter('ina_free_get_custom_post_types', function ( $post_type ) { | |
$post_type[] = 'your_custom_post_type_slug'; | |
return $post_type; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment