is_nav_menu_item( int $menu_item_id ): bool

In this article

Determines whether the given ID is a nav menu item.

Parameters

$menu_item_idintrequired
The ID of the potential nav menu item.

Return

bool Whether the given ID is that of a nav menu item.

Source

function is_nav_menu_item( $menu_item_id = 0 ) {
	return ( ! is_wp_error( $menu_item_id ) && ( 'nav_menu_item' === get_post_type( $menu_item_id ) ) );
}

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.