Skip to content

Instantly share code, notes, and snippets.

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 wp-seopress/ad3b66f91de26a8cf6ab3513a6e21cfe to your computer and use it in GitHub Desktop.
Save wp-seopress/ad3b66f91de26a8cf6ab3513a6e21cfe to your computer and use it in GitHub Desktop.
Filter %%_ucf_your_user_meta%% dynamic variable
add_filter('seopress_titles_user_meta', 'sp_titles_user_meta', 10, 2);
function sp_titles_user_meta($user_meta_value, $user_meta_key) {
//do your stuff
//$user_meta_value = esc_attr(get_user_meta(get_current_user_id(), $user_meta_key, true));
return $user_meta_value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment