[php]
<?php
//トップページ以外の場合にnot_homeクラスを追加
$body_class = "";
if ( !is_front_page() ) {
$body_class .= ' not_home';
}
?>
<body id="top" <?php body_class( $body_c…
現在のuser_idを取得
$user_id = get_current_user_id();
現在のdisplay_nameを取得
$user = wp_get_current_user(); $display_name = $user->display_name;
graffiti on the web
この投稿へのコメント
コメントはまだありません。