wp-go/internal/theme/theme.go
2023-01-27 01:03:41 +08:00

23 lines
493 B
Go

package theme
import (
"github.com/fthvgb1/wp-go/internal/pkg/config"
"github.com/fthvgb1/wp-go/internal/theme/twentyseventeen"
"github.com/fthvgb1/wp-go/internal/wpconfig"
)
func InitThemeAndTemplateFuncMap() {
addThemeHookFunc(twentyseventeen.ThemeName, twentyseventeen.Hook)
}
func GetTemplateName() string {
tmlp := config.Conf.Load().Theme
if tmlp == "" {
tmlp = wpconfig.Options.Value("template")
}
if !IsTemplateDirExists(tmlp) {
tmlp = "twentyfifteen"
}
return tmlp
}