Go to file
2023-08-26 22:01:20 +08:00
app func rename and little optimize 2023-08-26 22:01:20 +08:00
cache 优化 components 添加顺序 2023-02-28 15:17:16 +08:00
helper func rename and little optimize 2023-08-26 22:01:20 +08:00
model func rename and little optimize 2023-08-26 22:01:20 +08:00
multipTemplate 添加几个函数、方法 2023-01-23 23:42:37 +08:00
plugin 摘要调整 2023-04-18 21:05:37 +08:00
rss2 helper函数 分层 2023-01-21 19:31:23 +08:00
safety func rename and little optimize 2023-08-26 22:01:20 +08:00
stream 优化完善代码 2023-03-02 20:36:58 +08:00
taskPools 完善 2022-12-07 13:26:52 +08:00
.gitignore config json转yaml 2023-06-01 15:06:57 +08:00
config.example.json delete static file 2023-06-16 19:26:56 +08:00
config.example.yaml delete static file 2023-06-16 19:26:56 +08:00
Dockerfile 文件目录调整 2023-01-13 16:07:28 +08:00
go.mod func rename and little optimize 2023-08-26 22:01:20 +08:00
go.sum func rename and little optimize 2023-08-26 22:01:20 +08:00
LICENSE 增加tag的验证 2023-01-21 22:56:41 +08:00
readme_en.md tweentysevent 页眉媒体支持视频 2023-06-12 23:08:46 +08:00
README.md tweentysevent 页眉媒体支持视频 2023-06-12 23:08:46 +08:00

wp-go

A WordPress front-end written in Go, with relatively simple functions, only the list page and detail page, rss2, the theme only has two sets of twentyfifteen and twentyseventeen themes, and the plug-in only has a simple summary generation of the list page and highlighter code highlighting. It is only used to display articles and comments. The go version is required to be above 1.20, the newer the better. . .

Special feature

  • Basically realize the whole site cache and prevent cache breakdown
  • The list page can also highlight the syntax and format the code
  • Simple plug-in extension development mechanism , support hot loading update after configuration
  • can build .so extend theme , plug-in ,route and so on
  • Rich and complicated configurations, uh, there are a lot of configurations, although most of them are optional. . .
  • Send an email notification when adding a comment or panic, including stack calls and request information
  • Simple traffic limit middleware, which can limit the maximum number of requests in an instant
  • Package all static resources into the execution file except the configuration file
  • Support password viewing, and the cookie information can be verified by the php version
  • Support rss2 subscription
  • Hot update configuration, switch theme, clear cache
    • kill -SIGUSR1 PID update configuration and clear cache
    • kill -SIGUSR2 PID clear cache

The data show the degree of support

page table Support
List Home/Search/Archive/Categories/Tags/Author Paginated List
Details page Display content, comments and add comments (for forwarding php processing, you need to configure the url for adding comments in the php version)
Sidebar Support the old version of recent articles, recent comments, regulations, categories, and other operation display and settings, and support the new version of classification

background settings support

  • dashboard
    • Appearance
      • Widgets
        • search
        • categories
        • recent posts
        • recent comments
        • archives
        • meta
  • settings
    • General Settings
      • site title
      • subtitle
    • reading
      • Blog pages show at most
      • Syndication feeds show the most recent
    • discussion
      • Other comment settings
        • Enable threaded (nested) comments levels deep
        • Comments should be displayed with the newer|oldercomments

Theme support

twentyfifteen twentyseventeen
site identity site identity
colors color
header image Header Media
Background image additional css
additional css

Plug-in mechanism

It is divided into plug-ins that modify the data of list pages and plug-ins that affect the performance of the entire program

List page article data plugin Plugins for whole program performance
digest Automatically generate a digest of the specified length Enlighter code highlighting (enlighterjs plug-in needs to be installed in the background)
hiddenLogin hidden login entry

other

The gin framework and sqlx used encapsulate the layer query method outside.