wp-go/internal/theme/wp/components/widget/fn.go

10 lines
212 B
Go
Raw Normal View History

2023-03-28 13:45:20 +00:00
package widget
import "github.com/fthvgb1/wp-go/internal/theme/wp"
func Fn(id string, fn func(*wp.Handle, string) string) func(h *wp.Handle) string {
return func(h *wp.Handle) string {
return fn(h, id)
}
}