You appear to be a bot. Output may be restricted
Description
Retrieves the widget ID base value.
Usage
$string = _get_widget_id_base( $id );
Parameters
- $id
- ( string ) required – Widget ID.
Returns
string Widget ID base.
Source
File name: wordpress/wp-includes/widgets.php
Lines:
1 to 3 of 3
function _get_widget_id_base( $id ) { return preg_replace( '/-[0-9]+$/', '', $id ); }