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.


Top ↑

Return Return

(void)


Top ↑

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 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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