Как я могу получить доступ к «описанию» пункта меню?
-
-
Почему вы не используете отрывок страницы?Why don’t you use the page excerpt?
- 0
- 2013-01-06
- fuxia
-
потому что мне нужно использовать его и в меню,когда вызывается wp_nav_menu.У меня есть ходунки на заказ.because I need to use it in the menu as well, when wp_nav_menu is called. I have a custom walker.
- 0
- 2013-01-06
- Claire
-
@toscho Как оказалось,мне нужно использовать этот отрывок сейчас.Не могли бы вы взглянуть на [этот вопрос] (http://wordpress.stackexchange.com/questions/78723/how-to-get-the-excerpt-in-nav-menu-walker),пожалуйста?@toscho As it turns out I need to use the excerpt this now. Could you take a look at [this question](http://wordpress.stackexchange.com/questions/78723/how-to-get-the-excerpt-in-nav-menu-walker) please?
- 0
- 2013-01-08
- Claire
-
2 ответ
- голосов
-
- 2013-01-06
Мне не нравится идея снова анализировать пункты меню. В качестве альтернативного решения я предлагаю сохранить описание при первом запуске:
add_filter( 'walker_nav_menu_start_el', 'wpse_78483_get_current_items_description', 10, 2 ); /** * Get nav items description. * * @wp-hook walker_nav_menu_start_el * @param string $item_output * @param object $item * @return string */ function wpse_78483_get_current_items_description( $item_output = NULL, $item = NULL ) { static $desc = ''; // The function is NOT called during nav menu rendering, but later. if ( 'walker_nav_menu_start_el' !== current_filter() ) return $desc; // The function is called during wp_nav_menu(). // description is set if ( ! empty ( $item->description ) // and an URL is available and ! empty ( $item->url ) // and it is the current page and parse_url( $item->url, PHP_URL_PATH ) === $_SERVER['REQUEST_URI'] ) { // copy the description into our static internal variable $desc = $item->description; // remove this filter, it is not needed anymore remove_filter( 'walker_nav_menu_start_el', __FUNCTION__ ); } // return unchanged item markup return $item_output; }
Пояснение
Функция выполняет две функции:
- Он действует как фильтр,вызываемый внутри
wp_nav_menu()
. Здесь он вызывается до тех пор,пока не попадет на текущую страницу. Затем описание сохраняется внутри в$desc
. - Он действует как геттер для описания: если вы вызываете эту функцию без параметра после отображения меню навигации,вы получаете значение описания,если оно есть.
Обратной стороной является то,что это не сработает для вызова меню слишком поздно,например в нижнем колонтитуле.
Преимущество: вы экономите время.Вы можете получить описание позже в любое время,вызвав функцию без параметра:
print wpse_78483_get_current_items_description();
В качестве продолжения вот второй способ его использования:
$desc = wpse_78483_get_current_items_description(); if ( empty ( $desc ) ) { the_excerpt(); } else { print wpautop( $desc ); }
Дополнительный совет: вы можете включить окно редактора отрывка для страниц:
add_action( 'wp_loaded', 'wpse_78483_page_excerpt' ); function wpse_78483_page_excerpt() { add_post_type_support( 'page', 'excerpt' ); }
I don’t like the idea to parse the menu items again. As an alternative solution I suggest to store the description during the first run:
add_filter( 'walker_nav_menu_start_el', 'wpse_78483_get_current_items_description', 10, 2 ); /** * Get nav items description. * * @wp-hook walker_nav_menu_start_el * @param string $item_output * @param object $item * @return string */ function wpse_78483_get_current_items_description( $item_output = NULL, $item = NULL ) { static $desc = ''; // The function is NOT called during nav menu rendering, but later. if ( 'walker_nav_menu_start_el' !== current_filter() ) return $desc; // The function is called during wp_nav_menu(). // description is set if ( ! empty ( $item->description ) // and an URL is available and ! empty ( $item->url ) // and it is the current page and parse_url( $item->url, PHP_URL_PATH ) === $_SERVER['REQUEST_URI'] ) { // copy the description into our static internal variable $desc = $item->description; // remove this filter, it is not needed anymore remove_filter( 'walker_nav_menu_start_el', __FUNCTION__ ); } // return unchanged item markup return $item_output; }
Explanation
The function does two things:
- It acts as a filter called inside of
wp_nav_menu()
. Here, it is called until it hits the current page. Then the description is stored internally in$desc
. - It acts as a getter for the description: If you call this function without parameter after the navigation menu has been rendered you get the value of the description, if there is one.
The downside is: it would not work for a menu call too late, in a footer for example.
The advantage: you save time.You can get the description later any time by calling the function without a parameter:
print wpse_78483_get_current_items_description();
As a follow-up, here is a second way to use it:
$desc = wpse_78483_get_current_items_description(); if ( empty ( $desc ) ) { the_excerpt(); } else { print wpautop( $desc ); }
Extra tip: You can enable the excerpt editor box for pages:
add_action( 'wp_loaded', 'wpse_78483_page_excerpt' ); function wpse_78483_page_excerpt() { add_post_type_support( 'page', 'excerpt' ); }
-
благодарю вас.Я действительно не понимаю,как это работает,но это так,спасибо!thank you. I don't really understand how it works but it does so thanks!
- 0
- 2013-01-06
- Claire
-
@Nicola Извините,вы правы.Я сделал обновление с лучшим объяснением и встроенными документами.@Nicola Sorry, you are right. I have made an update with a better explanation and inline docs.
- 1
- 2013-01-06
- fuxia
-
спасибо,я обновил свой вопрос,чтобы показать,что я хочу,чтобы все страницы сохраняли замещающий текст в отрывкеthanks, I updated my question to show that I want all pages to store the alt text in excerpt
- 0
- 2013-01-08
- Claire
-
- 2013-01-06
Нашел ответ на кешированном веб-сайте Google.
Итак,чтобы получить доступ к описанию элемента навигации текущей страницы - просто вызовите функцию
echo wps_get_menu_description()
function wps_get_menu_description( ) { global $post; // Default $defaults = array( 'echo' => false, 'format' => '', 'description' => '', 'location' => 'primary', 'classes' => 'post-description' ); $args = wp_parse_args( $args, $defaults ); extract( $args , EXTR_SKIP ); // Get menu $menu_locations = get_nav_menu_locations(); $nav_items = wp_get_nav_menu_items( $menu_locations[ $location ] ); // Cycle through nav items foreach ( $nav_items as $nav_item ) { if ( ( is_page() || is_single() || is_archive() ) && ( $nav_item->object_id == $post->ID ) ) { $description = $nav_item->description; } } $output = $description; return $output; }
Found the answer on a google cached website.
So to access the current page's navigation item description - just call the function
echo wps_get_menu_description()
function wps_get_menu_description( ) { global $post; // Default $defaults = array( 'echo' => false, 'format' => '', 'description' => '', 'location' => 'primary', 'classes' => 'post-description' ); $args = wp_parse_args( $args, $defaults ); extract( $args , EXTR_SKIP ); // Get menu $menu_locations = get_nav_menu_locations(); $nav_items = wp_get_nav_menu_items( $menu_locations[ $location ] ); // Cycle through nav items foreach ( $nav_items as $nav_item ) { if ( ( is_page() || is_single() || is_archive() ) && ( $nav_item->object_id == $post->ID ) ) { $description = $nav_item->description; } } $output = $description; return $output; }
Там,где вы можете добавить свое меню в меню под внешним видом>,у меня есть описания. На моей странице я хочу иметь возможность повторять это описание. Не в меню,а на моей странице. Как я могу получить доступ к этой информации?
РЕДАКТИРОВАТЬ:
@toscho
Как мне изменить свой ходунок? Имеет ли объект $item доступ к выдержке страницы?