Dieses Plugin ist nicht mit den jüngsten 3 Hauptversionen von WordPress getestet worden. Es wird möglicherweise nicht mehr gewartet oder unterstützt und kann Kompatibilitätsprobleme haben, wenn es mit neueren Versionen von WordPress verwendet wird.

TabbedCode

Beschreibung

Adds Shortcodes for adding code examples in tabs to your blog.

The Plugin adds two shortcodes.
The first is [tab_group] and it needs an id. This id must be unique!
The second is [tab_code] and it takes the language from your code snippet as parameter.
You can use all languages from highlight.js.
When no language is provided the text will be interpreted as a simple text.

Example:

[tab_group id="hello-world"]
    [tab_code lang="javascript"]
        console.log("Hello World");
    [/tab_code]
    [tab_code lang="sql"]
        SELECT * FROM hello_world;
    [/tab_code]
    [tab_code]
        Hello World
    [/tab_code]
[/tab_group]

Screenshots

  • Example tab group for code

Installation

  1. Install the plugin through the WordPress plugins screen directly or upload the plugin to /wp-content/plugins/TabbedCode directory
  2. Activate the plugin through the ‚Plugins‘ screen in WordPress

FAQ

Installation Instructions
  1. Install the plugin through the WordPress plugins screen directly or upload the plugin to /wp-content/plugins/TabbedCode directory
  2. Activate the plugin through the ‚Plugins‘ screen in WordPress

Rezensionen

Für dieses Plugin gibt es keine Rezensionen.

Mitwirkende & Entwickler

„TabbedCode“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:

Mitwirkende

Übersetze „TabbedCode“ in deine Sprache.

Interessiert an der Entwicklung?

Durchstöbere den Code, sieh dir das SVN Repository an oder abonniere das Entwicklungsprotokoll per RSS.

Änderungsprotokoll

1.0

  • Release