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