WP_Textdomain_Registry::set_custom_path( string $domain, string $path )

Sets the custom path to the plugin’s/theme’s languages directory.


Description

Used by load_plugin_textdomain() and load_theme_textdomain().


Parameters

$domain

(Required) Text domain.

$path

(Required) Language directory path.


Source

File: wp-includes/class-wp-textdomain-registry.php

	public function set_custom_path( $domain, $path ) {
		$this->custom_paths[ $domain ] = rtrim( $path, '/' );
	}

Changelog

Changelog
Version Description
6.1.0 Introduced.