Warning: This function has been deprecated. bbPress (r5561) instead.
bbp_tab_index( int $auto_increment = true )
Output the current tab index of a given form
Description Description
Use this function to handle the tab indexing of user facing forms within a template file. Calling this function will automatically increment the global tab index by default.
Parameters Parameters
- $auto_increment
-
(Optional) Set to false to prevent increment
Default value: true
Source Source
File: includes/common/template.php
function bbp_tab_index( $auto_increment = true ) { echo bbp_get_tab_index( $auto_increment ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | bbPress (r5561) |
2.0.0 | Introduced. |