Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
Васко, а защо не постнеш публично как става?
//тук добавяме полето в контактите
add_filter('user_contactmethods', 'gplusurl');
function gplusurl($user_contactmethods){
$user_contactmethods['gplus'] = 'Google+ URL';
return $user_contactmethods;
}
//тук добавяме в html кода
add_action('wp_head', 'show_authorurl');
function show_authorurl(){
if(is_single())
{
global $post;
$author_id=$post->post_author;
$gplusurl = get_user_meta($author_id, 'gplus', true);
if($gplusurl!="") { echo '<link rel="author" href="'.$gplusurl.'"/>'; }
}
}