20 lines
440 B
Go
20 lines
440 B
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/fthvgb1/wp-go/helper/html"
|
|
"github.com/fthvgb1/wp-go/internal/pkg/cache"
|
|
)
|
|
|
|
func (h *Handle) CalCustomCss() (r string) {
|
|
if h.ThemeMods.CustomCssPostId < 1 {
|
|
return
|
|
}
|
|
post, err := cache.GetPostById(h.C, uint64(h.ThemeMods.CustomCssPostId))
|
|
if err != nil || post.Id < 1 {
|
|
return
|
|
}
|
|
r = fmt.Sprintf(`<style id="wp-custom-css">%s</style>`, html.StripTags(post.PostContent, ""))
|
|
return
|
|
}
|