2023-02-16 15:12:16 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/fthvgb1/wp-go/helper/html"
|
|
|
|
"github.com/fthvgb1/wp-go/internal/pkg/cache"
|
|
|
|
)
|
|
|
|
|
2023-02-23 15:42:51 +00:00
|
|
|
func CalCustomCss(h *Handle) (r string) {
|
2023-02-18 15:35:39 +00:00
|
|
|
if h.ThemeMods.CustomCssPostId < 1 {
|
2023-02-16 15:12:16 +00:00
|
|
|
return
|
|
|
|
}
|
2023-02-18 15:35:39 +00:00
|
|
|
post, err := cache.GetPostById(h.C, uint64(h.ThemeMods.CustomCssPostId))
|
2023-02-16 15:12:16 +00:00
|
|
|
if err != nil || post.Id < 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r = fmt.Sprintf(`<style id="wp-custom-css">%s</style>`, html.StripTags(post.PostContent, ""))
|
|
|
|
return
|
|
|
|
}
|