Created
July 15, 2021 04:36
-
-
Save thecodepoetry/b00f67739ece2e4f7ecf321c53c92b75 to your computer and use it in GitHub Desktop.
Disable team arhive page
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_filter( 'presscore_post_type_dt_team_args', 'my_team_args' ); | |
function my_team_args( $args ) { | |
$args['has_archive'] = false ; | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please try this code in your child theme functions.php, then go to Dashboard -> Settings -> Permalinks and re save settings