WP_Customize_Nav_Menus::intval_base10( mixed $value )

Get the base10 intval.


Description Description

This is used as a setting’s sanitize_callback; we can’t use just plain intval because the second argument is not what intval() expects.


Parameters Parameters

$value

(mixed) (Required) Number to convert.


Top ↑

Return Return

(int) Integer.


Top ↑

Source Source

File: wp-includes/class-wp-customize-nav-menus.php

	public function intval_base10( $value ) {
		return intval( $value, 10 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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