Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Last active May 7, 2021 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/0b7b73a01f5bf56cf50c771dbe7ffa17 to your computer and use it in GitHub Desktop.
Save KaineLabs/0b7b73a01f5bf56cf50c771dbe7ffa17 to your computer and use it in GitHub Desktop.
Hide Members Directory Default Meta.
<?php
/**
* Hide Members Directory Default Meta.
*/
function yzc_hide_members_directory_user_meta( $meta_html, $meta_icon, $meta_value ) {
if ( empty( $meta_value ) ) {
return;
}
return $meta_html;
}
add_filter( 'youzify_members_directory_user_meta', 'yzc_hide_members_directory_user_meta', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment