Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4057c5e368 | |||
| 3a5ea685aa | |||
| b500821672 |
@@ -2,12 +2,13 @@
|
|||||||
/**
|
/**
|
||||||
* Plugin Name: KGV FAQ
|
* Plugin Name: KGV FAQ
|
||||||
* Description: FAQ-Verwaltung mit Fragen, Antworten, Kategorien, sauberem Backend und Shortcode-Ausgabe.
|
* Description: FAQ-Verwaltung mit Fragen, Antworten, Kategorien, sauberem Backend und Shortcode-Ausgabe.
|
||||||
* Version: 1.0.2
|
* Version: 1.0.4
|
||||||
* Author: Ronny Grobel
|
* Author: Ronny Grobel
|
||||||
* Author URI: https://apex-project.de/
|
* Author URI: https://apex-project.de/
|
||||||
* Plugin URI: https://apex-project.de/
|
* Plugin URI: https://apex-project.de/
|
||||||
* Update URI: https://git.apex-project.de/Wordpress_Plugins/KGV-FAQ
|
* Update URI: https://git.apex-project.de/Wordpress_Plugins/KGV-FAQ
|
||||||
* Gitea Plugin URI: https://git.apex-project.de/Wordpress_Plugins/KGV-FAQ
|
* Gitea Plugin URI: https://git.apex-project.de/Wordpress_Plugins/KGV-FAQ
|
||||||
|
* Requires Plugins: KGV-Updater
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('ABSPATH')) {
|
if (!defined('ABSPATH')) {
|
||||||
@@ -16,7 +17,7 @@ if (!defined('ABSPATH')) {
|
|||||||
|
|
||||||
final class KGV_FAQ_Plugin {
|
final class KGV_FAQ_Plugin {
|
||||||
|
|
||||||
const VERSION = '1.0.0';
|
const VERSION = '1.0.4';
|
||||||
const POST_TYPE = 'kgv_faq';
|
const POST_TYPE = 'kgv_faq';
|
||||||
const TAXONOMY = 'kgv_faq_cat';
|
const TAXONOMY = 'kgv_faq_cat';
|
||||||
|
|
||||||
|
|||||||
67
readme.txt
67
readme.txt
@@ -1,28 +1,49 @@
|
|||||||
KGV FAQ – WordPress Plugin
|
=== KGV FAQ ===
|
||||||
|
Contributors: ronnygrobel
|
||||||
|
Tags: faq, accordion, fragen, antworten, vereinswebseite
|
||||||
|
Requires at least: 6.0
|
||||||
|
Tested up to: 6.8
|
||||||
|
Stable tag: 1.0.4
|
||||||
|
Requires PHP: 7.2
|
||||||
|
License: GPLv2 or later
|
||||||
|
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
Beschreibung:
|
FAQ-Verwaltung mit Kategorien und Frontend-Ausgabe per Shortcode.
|
||||||
KGV FAQ ist ein WordPress-Plugin für einen strukturierten FAQ-Bereich im Backend und die Ausgabe im Frontend per Shortcode.
|
|
||||||
|
|
||||||
Installation:
|
== Description ==
|
||||||
1. ZIP in WordPress unter `Plugins > Installieren > Plugin hochladen` hochladen
|
|
||||||
2. Plugin aktivieren
|
|
||||||
3. Danach einmal `Einstellungen > Permalinks > Speichern` ausführen
|
|
||||||
|
|
||||||
Funktionen:
|
KGV FAQ bietet einen strukturierten FAQ-Bereich im Backend sowie eine flexible Ausgabe im Frontend.
|
||||||
- eigener FAQ-Bereich im WordPress-Backend
|
|
||||||
- Fragen als Titel
|
|
||||||
- Antworten über den Editor
|
|
||||||
- FAQ-Kategorien
|
|
||||||
- Reihenfolge über Seitenattribute / Reihenfolge
|
|
||||||
- Ausgabe im Frontend per Shortcode
|
|
||||||
|
|
||||||
Shortcodes:
|
= Features =
|
||||||
- `[kgv_faq]`
|
|
||||||
- `[kgv_faq category="allgemein"]`
|
|
||||||
- `[kgv_faq show_filter="0"]`
|
|
||||||
- `[kgv_faq open_first="1"]`
|
|
||||||
- `[kgv_faq search="1"]`
|
|
||||||
|
|
||||||
Empfohlene Nutzung:
|
* FAQ-Eintraege mit Frage und Antwort
|
||||||
- eine normale WordPress-Seite `FAQ` anlegen
|
* Kategorisierung
|
||||||
- dort den Shortcode `[kgv_faq]` einfügen
|
* Shortcode-Ausgabe
|
||||||
|
* Optionale Suche und Filter in der Ausgabe
|
||||||
|
|
||||||
|
== Installation ==
|
||||||
|
|
||||||
|
1. Plugin in `wp-content/plugins/KGV-FAQ/` hochladen.
|
||||||
|
2. Plugin aktivieren.
|
||||||
|
3. FAQ-Eintraege und Kategorien anlegen.
|
||||||
|
4. Shortcode auf einer Seite einbinden.
|
||||||
|
|
||||||
|
== Frequently Asked Questions ==
|
||||||
|
|
||||||
|
= Wie lautet der Standard-Shortcode? =
|
||||||
|
|
||||||
|
`[kgv_faq]`
|
||||||
|
|
||||||
|
= Welche Varianten sind moeglich? =
|
||||||
|
|
||||||
|
Beispiele: `[kgv_faq category="allgemein"]`, `[kgv_faq show_filter="0"]`, `[kgv_faq open_first="1"]`, `[kgv_faq search="1"]`.
|
||||||
|
|
||||||
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.0.4 =
|
||||||
|
* Versionsabgleich zwischen Plugin-Header, Konstante und Readme.
|
||||||
|
* WordPress-Readme-Format weiter vereinheitlicht.
|
||||||
|
|
||||||
|
= 1.0.3 =
|
||||||
|
* Aktuelle Version laut Plugin-Header.
|
||||||
|
* Wartung und Verbesserungen.
|
||||||
|
|||||||
Reference in New Issue
Block a user