load_child_theme_textdomain( string $domain, string $path = false )

Load the child themes translated strings.


Description

If the current locale exists as a .mo file in the child themes root directory, it will be included in the translated strings by the $domain.

The .mo files must be named based on the locale exactly.


Parameters

$domain

(string) (Required) Text domain. Unique identifier for retrieving translated strings.

$path

(string) (Optional) Path to the directory containing the .mo file.

Default value: false


Return

(bool) True when the theme textdomain is successfully loaded, false otherwise.


Source

File: wp-includes/l10n.php

function load_child_theme_textdomain( $domain, $path = false ) {
	if ( ! $path )
		$path = get_stylesheet_directory();
	return load_theme_textdomain( $domain, $path );
}


Changelog

Changelog
Version Description
WP-2.9.0 Introduced.