WordPress как на ладони

Как получить ссылку на страницу через php код ?

В файле walker.php есть строка:

$attributes .= ! empty($item->url) ? ' href="' . get_page_link() . '"' : '';

которая далее используется в строке:

$item_output .= '<a' . $attributes . '>';

Однако, на странице выползают следующие предупреждения

Warning: Attempt to read property "ID" on null in C:\OpenServer\domains\acme\wp-includes\link-template.php on line 440

Warning: Attempt to read property "ID" on null in C:\OpenServer\domains\acme\wp-includes\link-template.php on line 451

Warning: Attempt to read property "ID" on null in C:\OpenServer\domains\acme\wp-includes\link-template.php on line 404

Warning: Attempt to read property "ID" on null in C:\OpenServer\domains\acme\wp-includes\link-template.php on line 440

и т. д. Насколько я понимаю дело в том, что требуется, чтобы в href отображалось ID страницы. Как это сделать ? Вот код файла walker.php, если что

<?php
	class Walker_Nav_Primary extends Walker_Nav_Menu {
		function start_lvl(&$output,  $depth = 0, $args = null) {
			$indent = str_repeat("\t", $depth);
			$submenu = ($depth > 0) ? 'sub-menu' : '';
			$output .= "\n$indent<ul class=\"dropdown-menu$submenu depth_$depth\">\n";
		}

		function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) {

			$indent = ($depth) ? str_repeat("\t", $depth) : '';

			$li_attributes = '';
			$class_names = $value = '';

			$classes = empty($item->classes) ? array() : (array) $item->classes;

			$classes[] = ($args->walker->has_children) ? 'dropdown' : '';
			$classes[] = ($item->current || $item->current_item_anchestor) ? 'active' : '';
			$classes[] = 'menu-item-' . $item->ID;
			if($depth && $args->walker->has_children) {
				$classes[] = 'dropdown-submenu';
			}

			$class_names = join('', apply_filters('nav_menu_css_classes', array_filter($classes), $item, $args));
			$class_names = 'class="' . esc_attr($class_names) . '"';

			$id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args);
			$id = strlen($id) ? 'id="' . esc_attr($id) . '"' : '';

			$output .= $indent . '<li ' . $id . $value . $class_names . $li_attributes . '>';

			$slug = get_post_field( 'post_name', get_post() );

			$attributes = ! empty($item->attr_title) ? ' title="' . esc_attr($item->attr_title) . '"' : '';
			$attributes .= ! empty($item->target) ? ' target="' . esc_attr($item->target) . '"' : '';
			$attributes .= ! empty($item->xfn) ? ' rel="' . esc_attr($item->xfn) . '"' : '';
			$attributes .= ! empty($item->url) ? ' href="' . get_page_link() . '"' : '';

			$attributes .= ($args->walker->has_children) ? 'class="dropdown-toggle" data-toggle="dropdown" data-close-others="false" data-delay="0" data-hover="dropdown"' : '';

			$item_output = $args->before;
			$item_output .= '<a' . $attributes . '>';
			$item_output .= $args->link_before . apply_filters('the_title', $item->title, $item->ID) . $args->link_after;
			$item_output .= ($depth == 0 && $args->walker->has_children) ? '<i class="fa fa-angle-down"></i></a>' : '</a>';
			$item_output .= $args->after;

			$output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args);

		}
	}
?>
0
Sergei
2.3 года назад -9
На вопросы могут отвечать только зарегистрированные пользователи. Вход . Регистрация