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