wp-go/app/theme/wp/components/widget/args.go
2023-05-04 20:37:06 +08:00

11 lines
254 B
Go

package widget
func CommonArgs() map[string]string {
return map[string]string{
"{$before_widget}": `<aside id="%s" class="%s">`,
"{$after_widget}": "</aside>",
"{$before_title}": `<h2 class="widget-title">`,
"{$after_title}": "</h2>",
}
}