프로그래밍 방식으로 메뉴 항목에 대한 "설명"메타 박스를 활성화하는 방법은 무엇입니까?
-
-
"WordPress에는 각 메뉴 항목에 설명을 추가하는 옵션이 이미 제공되지만 기본적으로 숨겨져 있습니다."참조 : http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output"WordPress already comes with the option to add a description to each menu item, but it is hidden by default." See: http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output
- 0
- 2013-01-06
- adrian7
-
adrian7,기본적으로이 메타 박스를 어떻게 표시 할 수 있습니까?adrian7, how can I show this metabox by default?
- 0
- 2013-01-06
- Stanislau Ladutska
-
내가 알게되면 답변을 게시 할 것입니다.I will post an answer when I find out.
- 0
- 2013-01-06
- adrian7
-
2 대답
- 투표
-
- 2013-01-06
사용자 메타 값
description
에서managenav-menuscolumnshidden
을 제거합니다.add_filter( 'manage_nav-menus_columns', 'enable_nav_menu_description_by_default' ); function enable_nav_menu_description_by_default( $columns ) { $desc_key = 'managenav-menuscolumnshidden'; $hidden = get_user_option( $desc_key ); $user_id = wp_get_current_user()->ID; if ( ! $hidden ) { update_user_option( $user_id, $desc_key, array ( 0 => 'link-target', 1 => 'css-classes', 2 => 'xfn' ) ); } elseif ( FALSE !== ( $key = array_search( 'description', $hidden ) ) ) { unset( $hidden[ $key ] ); update_user_option( $user_id, $desc_key, $hidden ); } return $columns; }
Remove the
description
from the user meta valuemanagenav-menuscolumnshidden
:add_filter( 'manage_nav-menus_columns', 'enable_nav_menu_description_by_default' ); function enable_nav_menu_description_by_default( $columns ) { $desc_key = 'managenav-menuscolumnshidden'; $hidden = get_user_option( $desc_key ); $user_id = wp_get_current_user()->ID; if ( ! $hidden ) { update_user_option( $user_id, $desc_key, array ( 0 => 'link-target', 1 => 'css-classes', 2 => 'xfn' ) ); } elseif ( FALSE !== ( $key = array_search( 'description', $hidden ) ) ) { unset( $hidden[ $key ] ); update_user_option( $user_id, $desc_key, $hidden ); } return $columns; }
-
- 2013-01-06
메뉴 설명을 출력하려는 경우 여기에 WordPress Walker 메뉴 클래스를 사용하여 메뉴를 강화하는 유용한 자습서가 있습니다. Wordpress Walker 메뉴 자습서
If you're looking to output the menu description here is a useful tutorial using WordPress Walker Menu class to enchance the menu Wordpress Walker Menu Tutorial
-
답변 해 주셔서 감사합니다.하지만 조금 다른 것이 필요합니다.탐색 메뉴 화면의 관리자 패널에서 메타 박스를 활성화해야합니다.Thank you nackle for your answer. But I need a little different thing. I need to enable metabox in admin panel, on nav-menus screen.
- 0
- 2013-01-06
- Stanislau Ladutska
-
@nackle 귀하의 답변은 질문과 관련이 없습니다.@nackle your answer is not related to the question.
- 1
- 2013-01-06
- adrian7
-
원래 질문과 관련이 없을 수도 있지만 여기에서 "탐색 설명"을 검색하면이 게시물이 첫 번째 결과로 나타납니다.내비게이션 설명을 표시하는 방법에 대한 질문에 대답했습니다.그것을 위해 찬성하십시오.It may not be related the the original question, but a search on here for "nav description" brought this post as the first result. Which in turned answered the question that I came here with on how to display nav descriptions. Upvote for that.
- 0
- 2013-04-06
- AndyWarren
맞춤 워드 프레스 테마를 만들고 있습니다.기본적으로 프로그래밍 방식으로 메뉴 항목 (탐색 메뉴 페이지)에 "설명"메타 박스를 활성화하려면 어떻게해야합니까?