before_last_bar() WordPress Function
The before_last_bar() function is used to return the content of a post before the last bar. This is useful for displaying a post teaser on a blog homepage.
before_last_bar( string $string ) #
Remove last item on a pipe-delimited string.
Description
Meant for removing the last item in a string, such as ‘Role name|User role’. The original string will be returned if no pipe ‘|’ characters are found in the string.
Parameters
- $string
(string)(Required)A pipe-delimited string.
Return
(string) Either $string or everything before the last pipe.
Source
File: wp-includes/l10n.php
function before_last_bar( $string ) {
$last_bar = strrpos( $string, '|' );
if ( false === $last_bar ) {
return $string;
} else {
return substr( $string, 0, $last_bar );
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |