admin管理员组

文章数量:1122846

This is the example on the WordPress codex:

/*
* Theme Name: My Theme
* Author: Theme Author
* Text Domain: my-theme
* Domain Path: /languages
*/

Is it possible the for the directory be called "mytheme" or does it have to be "my-theme"?

This is the example on the WordPress codex:

/*
* Theme Name: My Theme
* Author: Theme Author
* Text Domain: my-theme
* Domain Path: /languages
*/

Is it possible the for the directory be called "mytheme" or does it have to be "my-theme"?

Share Improve this question asked Jan 18, 2019 at 12:18 BootUpBootUp 251 silver badge5 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

From https://developer.wordpress.org/themes/functionality/internationalization/

Themes that are hosted on WordPress.org the text domain must match the slug of your theme URL (wordpress.org/themes/). This is needed so that the translations from translate.wordpress.org work correctly.

The text domain name must use dashes and not underscores and be lowercase. For example, if the theme’s name My Theme is defined in the style.css or it is contained in a folder called my-theme the text domain should be my-theme.

本文标签: textdomainWhat is the correct naming procedure of text domaindirectory and theme name