arrayアレイ 中身 確認 アドバンスカスタムフィールドでユーザーを選んだ時の中身

<?php
$user = get_field('staff_user_id'); 
print_r($user);//中身を確認
?>

そうすると
これが入ってました。

Array ( [ID] =>  
[user_firstname] =>
 [user_lastname] => 
[nickname] =>  
[user_nicename] =>  
[display_name] =>  
[user_email] =>  
[user_url] => 
[user_registered] => 
 [user_description] =>  
[user_avatar] => )

echo $user['ID'];
で出力出来るかと思います。

KEN設計 予約フォーム

まず今あるフォームを使う

ポイントは
シングルに書いてあるスクリプト

<script type="text/javascript">
$(document).ready(function() {
$(".monthly-calendar a").each(function() { //.eachは合致
var dreplace = null;//初期化
var dreplace = $(this).attr('href').replace(/s%e6%a7%98%e9%82%b8%e7%8f%be%e5%a0%b4%e8%a6%8b%e5%ad%a6%e4%bc%9a/g,'予約カレンダー');
var dreplace = $(this).attr('href').replace(/%e5%90%8d%e5%8f%a4%e5%b1%8b%e5%b8%82%e5%8d%83%e7%a8%ae%e5%8c%bay%e6%a7%98%e9%82%b8-%e5%ae%8c%e6%88%90%e8%a6%8b%e5%ad%a6%e4%bc%9a/g,'予約カレンダー');
$(this).attr('href',dreplace);
});
});

</script>

/~/のパーマーリングをコピって
gを+している それを /予約カレンダー/変え へ飛ばしている

var dreplace = $(this).attr('href').replace(/リンク/g,'予約カレンダー');

これでそのページで切り替わらないのでページ最下段に設置しても大丈夫

固定ページにそのぺーじがある
サンクスページ?も

日曜の午後を✗にするには
予約カレンダーから日にちを選び
時間帯を1と入力する

ファルコンでユーザープロフィール 入れた時の手順

春日井ナビみてコード
カスタム

  
<!--   投稿者プロフィール  -->
    <div class="blog_prof">
  <div class="blog_prof_sam">
  <?php echo get_avatar(get_the_author_id(), 100); ?>
  </div>
  <div class="blog_prof_disp">
  <div class="blog_nickname">
  
  <!----ブログネーム------>
    <div style="font-size: 90%;">
		編集者</div>
 <a href="<?php echo get_author_posts_url( get_the_author_id() ); ?>">
    <?php 
	echo get_the_author_meta('nickname');
	?>  </a>
    <br />

     <div class="mob_both">
<!--   disp  -->
    <?php the_author_meta('description'); ?>
    <br>
    <!--    sns   -->
    <? if(get_the_author_meta('twitter')):?>
	  <a href="<?php the_author_meta('twitter'); ?>" target="_blank">twitter</a> 
    <? endif;?>
<? if(get_the_author_meta('facebook')):?>
    <a href="<?php the_author_meta('facebook'); ?>" target="_blank">facebook</a>
    <? endif;?>
    
    <? if(get_the_author_meta('instagram')):?>
    <a href="<?php the_author_meta('instagram'); ?>" target="_blank">instagram</a>
    <? endif;?>
    
    
    <? if(get_the_author_meta('tumblr')):?>
    <a href="<?php the_author_meta('tumblr'); ?>" target="_blank">tumblr</a>
    <? endif;?>
	  </div>
	  
    
	  </div>
	  </div>
	  </div>
	 <!--   //投稿者プロフィール  -->  

プラグインは
Simple Local Avatars
DLして入れた古いけど
https://ja.wordpress.org/plugins/simple-local-avatars/

sns出すために
アドバンスカスタムフィールドで
ユーザーに新規カスタムフィールドをつけて あればで分岐
ここにhttp://techmemo.biz/wordpress/author-meta-display/
the_author_metaで取得とあったが
出力してしまうので
get_the_author_metaというのを発見しつかった。

上記こーどのまま
オーサーアカイブでも使ったが

<?php the_author_meta('display_name',$author); ?>

こうした方が本当かも?$authorなくてもでたからいいか?

アーカイブのURLがユーザーIDになるので
Edit Author Slug
を入れて変更した。プロフページにて
http://hublog.biz/bwpb/user-settings/

css

//ユーザー
.blog_prof{ margin-top: 50px; overflow: hidden ; a{color: #1b95e0} a:hover{color: #1b95e0;} line-height: 2}
.blog_prof_sam{float: left; margin-right: 30px; img{.border-radius(50%)}}
.mob_both{font-size: 80%; clear: both;}
.blog_prof_disp{overflow: hidden; }

@media screen and (max-width: 736px) {.blog_prof_disp{overflow: initial; margin-top: 16px;}

.mob_both{padding-top: 6px;}

}