Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created August 11, 2023 09:38
Show Gist options
  • Select an option

  • Save wbcomdev/fa6ca1aecc0b2c49c4145cafeca159ef to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/fa6ca1aecc0b2c49c4145cafeca159ef to your computer and use it in GitHub Desktop.
<?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