23 lines
493 B
Go
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.GetConfig().Theme
|
|
if tmlp == "" {
|
|
tmlp = wpconfig.Options.Value("template")
|
|
}
|
|
if !IsTemplateDirExists(tmlp) {
|
|
tmlp = "twentyfifteen"
|
|
}
|
|
return tmlp
|
|
}
|