wp-go/readme_en.md

87 lines
4.5 KiB
Markdown
Raw Normal View History

2023-05-11 05:40:28 +00: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
2024-03-21 09:09:11 +00:00
#### start up
```
go run app/cmd/main.go [-c configpath] [-p port]
```
2023-05-11 05:40:28 +00:00
#### 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
2023-05-12 06:27:31 +00:00
- dashboard
- Appearance
- Widgets
2023-05-11 05:40:28 +00:00
- search
2023-05-12 06:27:31 +00:00
- categories
- recent posts
2023-05-11 05:40:28 +00:00
- recent comments
2023-05-12 06:27:31 +00:00
- archives
- meta
- settings
- General Settings
2023-05-11 05:40:28 +00:00
- site title
- subtitle
2023-05-12 06:27:31 +00:00
- reading
- Blog pages show at most
- Syndication feeds show the most recent
- discussion
- Other comment settings
- `enable|disable` threaded (nested) comments levels deep
- Break comments into pages with top level comments per page number and the `last|first` page displayed by default
2023-05-12 06:27:31 +00:00
- Comments should be displayed with the `newer|older`comments
2023-05-11 05:40:28 +00:00
#### Theme support
2023-06-12 15:08:46 +00:00
| twentyfifteen | twentyseventeen |
|------------------|-----------------|
| site identity | site identity |
| colors | color |
| header image | Header Media |
| Background image | additional css |
| additional css | |
2023-05-11 05:40:28 +00:00
#### 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 |
#### Others
2023-05-11 05:40:28 +00:00
The gin framework and sqlx used encapsulate the layer query method outside.
#### Thanks
2024-03-22 04:21:59 +00:00
<a href="https://jb.gg/OpenSourceSupport"><img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" alt="JetBrains Logo (Main) logo." width="30%"></a>