LLMS_Post_Model::_e( string $key )
Wrapper for the $this->translate() that echos the result rather than returning it
Parameters Parameters
- $key
-
(string) (Required) Key to translate.
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.post.model.php
public function _e( $key ) { // phpcs:ignore -- This is to mimic localization functions.
echo $this->translate( $key );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |