5 Commits
1.0.0 ... main

Author SHA1 Message Date
4057c5e368 Release 1.0.4 2026-04-15 21:44:16 +02:00
3a5ea685aa Standardize WordPress readme format 2026-04-15 21:36:07 +02:00
b500821672 Release 1.0.3 2026-04-14 16:28:59 +02:00
892f148711 Release 1.0.2 2026-04-13 22:40:29 +02:00
aa5f08ec73 Update to version 1.0.1 2026-04-13 22:20:29 +02:00
2 changed files with 51 additions and 27 deletions

View File

@@ -2,10 +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.0 * Version: 1.0.4
* Author: Ronny Grobel * Author: Ronny Grobel
* Update URI: https://git.apex-project.de/RonnyG/KGV-FAQ * Author URI: https://apex-project.de/
* GitHub Plugin URI: https://git.apex-project.de/RonnyG/KGV-FAQ * Plugin URI: https://apex-project.de/
* Update 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')) {
@@ -14,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';

View File

@@ -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.