게시판 답변
-
글쓴이글
-
1. be born
2. foundation
1) education
2) get a degree
3) get a license
3. get married
4. have a child/ family
5. still feel hungry겟 프로필 메뉴는 이것으로 완성
/** * Generate BBpress Get Profile Link in a shortcode * * @param $atts2, text|class * @example * application: if text empty show display_name * @return string|void * li를 준 후 닫지 말 것(테마에 따라 다름)! * */ function bbp_get_profile_link( $atts2 ) { //If user isn't logged in, return nothing if(!is_user_logged_in()) { return; } else { extract( shortcode_atts( array( 'text' => "", // default value if none supplied 'class' => "" //Style class for link ), $atts2 ) ); if ( $text ) { $current_user = wp_get_current_user(); $user = $current_user->user_login; return '<a href="' . bbp_get_user_profile_url($current_user->ID). '">' . $text . '</a>'; } else { $current_user = wp_get_current_user(); //$user = $current_user->user_login; $display_name = $current_user->display_name; return '<a href="' . bbp_get_user_profile_url($current_user->ID). '">' .'⛯ '. $display_name. '</a>'; } } } add_shortcode( 'bbp_get_profile', 'bbp_get_profile_link' );
로그아웃 메뉴는 이것으로 완성
li 태그 주의/* Shortcode to fetch the logout wp_logout_url('/') */ //use function Logout_link( $logout_button ) { //If user isn't logged in, return nothing if(!is_user_logged_in()) { return; } else { extract( shortcode_atts( array( 'text' => "", // default value if none supplied 'class' => "" //Style class for link ), $logout_button ) ); if ( $text ) { return '<li class="menu-item"><a href="' . wp_logout_url('/'). '">' . $text . '</a>'; } } } add_shortcode( 'Logout_link_code', 'Logout_link' );
프로필 에딧 페이지로 진입하는 메뉴를 User Role로 보여주는 방법
아래 숏코드에서 text가 비어 있으면 User Role, 채워져 있으면 채운 그 텍스트가 메뉴
이때 li 태그는 테마에 따라 적용이 안될 수 있음. mimoon에서는 적용됨(닫는 /li는 넣지 않고 열어둔 상태로 마칠 것)./** * Generate BBpress Edit Profile Link in a shortcode * * @param $atts, text|class * @example * application: if text empty show user_role * @return string|void * */ function bbp_edit_profile_link( $atts ) { //If user isn't logged in, return nothing if(!is_user_logged_in()) { return; } else { extract( shortcode_atts( array( 'text' => "", // default value if none supplied 'class' => "" //Style class for link ), $atts ) ); if ( $text ) { $current_user = wp_get_current_user(); $user = $current_user->user_login; return '<a class="' . $class . '" href="/forums/users/' . $user . '/edit">' . $text . '</a>'; } else { $current_user = wp_get_current_user(); $user = $current_user->user_login; //$user_meta = get_userdata($user_id); //$user_roles = $user_meta->roles; /*$current_user = wp_get_current_user(); $allowed_roles = explode(',', $role); if( array_intersect($allowed_roles, $current_user->roles ) ) { return $content; } else { $user_role = array_shift($current_user->roles); return '<a class="' . $class . '" href="/forums/users/' . $user . '/edit">' . $user_role . '</a>'; } */ $user_meta = get_userdata(get_current_user_id()); //$current_user_role_slug = $user_meta->roles[0]; $user_roles = $user_meta->roles; $user_role = array_shift($user_roles); if ($user_role == 'administrator') { $current_user_role_slug = 'Administrator'; $emoti ='♞'; } elseif ($user_role == 'editor') { $current_user_role_slug = 'Editor'; $emoti ='♞'; } elseif ($user_role == 'author') { $current_user_role_slug = 'Author'; $emoti ='♞'; } elseif ($user_role == 'contributor') { $current_user_role_slug = 'Contributor'; $emoti ='♘'; } elseif ($user_role == 'subscriber') { $current_user_role_slug = 'Subscriber'; $emoti ='♘'; } else { $current_user_role_slug = $user_role; $emoti ='♟'; } $user = preg_replace("/[^a-zA-Z0-9]/", "-", $user); return '<li class="menu-item"><a class="' . $class . '" href="/forums/users/' . $user . '/edit">' . $emoti.' '.$current_user_role_slug . '</a>'; //return '<a class="' . $class . '" href="/forums/users/' . $user . '/edit">' . $user . '</a>'; } } } add_shortcode( 'bbp_edit_profile', 'bbp_edit_profile_link' );
35:15-17이 핵심 메시지. 있어도 그만 없어도 그만인 것 같은 단락이 갖는 해석학적 기도.
지붕 없는 벧엘에서 유숙하던 야곱이 꿈을 꾼 후 그곳에 기둥을 세우고 하나님의 집이라 칭하고는 자신에게 맡겨진 험지를 향한다. 여러 삶의 고생 끝에 벧엘로 다시 돌아온 야곱은 벧엘 곧 ‘하나님의 집’으로 돌아와 신앙을 회복한다. 그러나 그는 ‘하나님의 집’(벧엘)을 떠나 ‘떡집’(베들레헴)으로 다시 향한다. 그 길에서 자기 평생에 사랑했던 라헬을 잃는다. 라헬이 베냐민을 임신하여 길에서 출산하다 죽은 것이다. 훗날 베들레헴은 다윗과 그리스도가 태어나는 성지가 되었다.
아바타 표현에 대한 다음 두 개의 차이 유념
forum page에서는<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 48 ) ); ?></span>
topic page에서는
<span class="bbp-topic-freshness-author-av"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 48 , 'type' => 'avatar' ) ); ?></span>
아울러 topic page에서 name만 추출할 때 사이즈 매개 변수 활용 등 유념
<span class="bbp-topic-freshness-author"><?php printf( __('%1$s', 'bbpress' ), bbp_get_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 , 'type' => 'name' ) ) ); ?></span>
다음 사항을 유념할
1. 명사는 성을 타고난다. 가령 סוס/말은 남성, שפה입술은 여성
2. 각 명사는 성 변환 패턴을 갖는다
3. 대명사 접미사(소유격) 변화시에는 그 각각의 명사 변환 최종 형태의 성에 맞추어, 대명사 (성별) 변환에 적용 변화되는 것이다.성각문자(聖刻文子 Hieroglyph): 고대 이집트 문자의 하나. 그림문자 또는 비밀문자라는 의미이기도 하다. 성각이란 명칭은 그리스어 ‘히에로스’(hieros, 거룩한)와 ‘글뤼페인’(gluphein, 세긴다)이 합하여 된 말이다. 그리스인과 이집트인이 처음 만나면서 이 문자가 무덤이나 신전의 종교 텍스트로 쓰였기 때문이라 한다. 가장 오래된 성각문자에서는 그 문자가 나타내는 대상을 정확하게 그려내고 있는데, 모양 뿐만 아니라 빛깔도 그렇게 함으로써 장식의 효과가 있었던 것이다. 대부분 돌에 새겨졌지만 나무에 쓴 경우도 있다. 세월이 흐르면서 사물을 정확하게 그리고자 했던 회화적 성격은 점차 사라지고 기호로서의 성격이 강해지면서 신관문자(hieratic)라 불리는 초서체(草書體)가 등장했고, 그 후로 대중문자(demotic)가 생겨난다.
신성사자/신명사문자(神名四文字, 고대 그리스어: τετραγράμματον 테트라그라마톤*)는 하나님을 뜻하는, 여호와 또는 야훼의 이름을 나타내는 히브리어 네 글자(יהוה)이다. 로마자로는 ‘YHWH’로 적는다. *고대 히브리인은 신명사문자의 발음을 직접 하는 것을 꺼려했기 때문에 발음하는 대신 아도나이(אֲדֹנָי, 나의 주)라고 불렀다. 단, 아도나이 뒤에 나오는 신명사문자는 ‘아도나이’라 부르는 것이 아니라, ‘아도나이 엘로힘’(אֲדֹנָי אֱלֹהִים, 나의 주 하나님)이라 불렀다.
변화 패턴과 비교할 것
-
글쓴이글