Translations::get_header() public WP 1.0
{} It's a method of the class: Translations{}
No Hooks.
Return
null
. Null. Nothing.
Usage
$Translations = new Translations(); $Translations->get_header( $header );
- $header(string) (required)
- -
Code of Translations::get_header() Translations::get header WP 5.7
function get_header( $header ) {
return isset( $this->headers[ $header ] ) ? $this->headers[ $header ] : false;
}