Created
August 11, 2023 09:38
-
-
Save wbcomdev/fa6ca1aecc0b2c49c4145cafeca159ef to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?php | |
| /** | |
| * Wbcom Designs - Hide resume tab | |
| * | |
| * @return void | |
| */ | |
| function wbcom_hide_resume_tab() { | |
| $user_resume_data = get_user_meta( get_current_user_id(), 'bprm_resume_fields', true ); | |
| if ( empty( $user_resume_data ) ) { | |
| ?> | |
| <style> | |
| #resume-personal-li{ | |
| display : none; | |
| } | |
| </style> | |
| <?php | |
| } | |
| } | |
| add_action( 'init', 'wbcom_hide_resume_tab' ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment