Beschreibung
Simple Page Sidebars ist konzipiert für Einfachheit und Flexibilität. Das Plugin gibt WordPress-Benutzern, -Designern und -Entwicklern die Möglichkeit, individuelle Seitenleisten individuellen Seiten hinzuzufügen, ohne dabei Änderungen am Template vornehmen zu müssen. Bereits existierende Seitenleisten können auch im QuickEdit- oder Massenbearbeitungs-Modus hinzugefügt werden, die ist besonders zeitsparend.
Im Gegensatz zu einigen eher komplizierten verfügbaren Plugins, die die gleiche Aufgabe übernehmen könnten, zielt Simple Page Sidebars auf einfache, Core-ähnliche Funktionen sowie auf einfache Integration ab, ohne dabei den Admin-Bereich zu überladen. Aufgrund der Art, wie die Seitenleisten gespeichert werden, verwendet das Plugin das eingebaute WordPress-Caching, daher wird deine Website nicht mit zusätzlichen Datenbankabfragen belastet.
Simple Page Sidebars enthält zusätzlich einen weiteren „Widget-Bereich“, mit dessen Hilfe sich alle Widgets einer existierenden Seitenleiste in eine andere einbinden lassen.
Vorteile
- Nie wieder globale generische Seitenleisten. Jede Seite (oder jeder Abschnitt) kann eigene Widgets verwenden.
- Komplette Kontrolle über die Namen der individuellen Seitenleisten.
- Zuordnung derselben Seitenleiste zu mehreren Seiten.
- Aktualisiere die Seitenleiste einer Seite, ohne eine unnütze Revision zu erstellen.
Advanced Usage
Wenn du Seitenleisten zu Archiv-Seiten hinzufügen oder mehrfache Seitenleisten pro Seite ersetzen willst, ist dieses Plugin unter Umständen nicht unbedingt die beste Lösung. Es ist jedoch auf jeden Fall flexibel genug für eine breite Palette seitenbasierter Fälle. Darüberhinaus kann es mit Hilfe einiger weniger Zeilen Code auch mit individuellen Inhaltstypen zusammenarbeiten:
function myprefix_init() {
add_post_type_support( '{{post_type}}', 'simple-page-sidebars' );
}
add_action( 'init', 'myprefix_init' );
Zusätzliche Ressourcen
Notizen
Custom Loops
If your page has any custom loops or queries, they need to be followed by wp_reset_query()
, otherwise the global $post
variable will no longer reference the correct post and by the time the sidebar is displayed, Simple Page Sidebars won’t know which page is being viewed, possibly leading to an unexpected sidebar being displayed.
Theme Sidebars
Some themes register different sidebars for their page templates, which means there isn’t a default sidebar that can be replaced. To use Simple Page Sidebars in this instance, you can create a child theme and force page templates with custom sidebars to use the default sidebar.
Screenshots
Installation
Simple Page Sidebars installiert man genauso einfach wie alle anderen Plugins. Wirf einen Blick in den Codex, sollten dazu irgendwelche Fragen auftauchen.
Konfiguration
After installation, go to the Reading options panel (the Reading link under Settings) and choose which of your registered sidebars is the default sidebar.
FAQ
-
If you haven’t added any widgets to your new custom sidebar, the default sidebar will continue to display. If you really want a blank sidebar, try adding an empty text widget.
-
We recommend that you set your blog to use the default sidebar and create custom sidebars for pages (including the front/homepage). That way your blog page and posts all have the same sidebar.
However, if you defined a page for your posts in the Reading settings panel and assigned a custom sidebar to that page, that will work, too.
-
Yes, just click the „Screen Options“ tab in the upper right corner of your screen and uncheck the „Sidebar“ option.
Rezensionen
Mitwirkende & Entwickler
„Simple Page Sidebars“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:
Mitwirkende„Simple Page Sidebars“ wurde in 5 Sprachen übersetzt. Danke an die Übersetzerinnen und Übersetzer für ihre Mitwirkung.
Übersetze „Simple Page Sidebars“ 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.2.1 – July 27, 2018
- Removed bundled language files in favor of WordPress.org language packs.
1.2.0
- Transferred to Cedaro.
- Updated the Widget Area class constructor to prevent deprecation notices in WP 4.3+.
1.1.8
- Added Spanish translation.
1.1.7
- Added Indonesian translation.
1.1.6
- Prevent quick edit nonces from being submitted when searching or filtering a post list table.
1.1.5
- Added Serbo-Croatian translation.
1.1.4
- Really fix the Quick Edit functionality.
- Update text domain loading order to get ready for language packs.
- Fix a strict PHP notice.
1.1.3
- Fixed Quick Edit functionality in WordPress 3.6.
1.1.2
- Changed the parent file of the „Edit Sidebar“ screen to remove the small gap between submenu items.
1.1.1
- Worked around the slashing weirdness in WordPress API.
- Implemented a method to allow developers to easily add support for additional post types. No plans to build this out further, it’s just here for additional flexibility if more complex solutions aren’t wanted.
- Added a filter to disable the edit link in the custom Sidebar column (
simple_page_sidebars_show_edit_link_in_column
).
1.1
- Added an Edit Sidebar screen for updating a sidebar name and associated pages.
- Added an update message when a sidebar is saved on the Add/Edit Page screen.
- Made the sidebar column sortable on the All Pages screen.
- Refactored the codebase (formatting, improved comments, static classes, organization, etc).
- Added better feedback throughout the dashboard when something goes wrong.
- Saved spinner image to plugin folder due to updates coming in 3.5.
- Removed deprecated filters.
1.0.1
- Fixed bug causing issues with other plugins that don’t submit the sidebar nonce on the All Pages screen.
1.0
- Modified check for blog page.
0.2.1
- Now works for the blog page when it’s set in the Reading Settings.
- Bug fixes.
0.2
- Added an option to define the default sidebar on the Reading options panel.
- Removed the template change requirement. It’s no longer recommended.
- Refactored code, including function/hook names.
- Deprecated
simple_sidebar
function. Replaced bysimple_page_sidebar
. - Deprecated
simpsid_widget_areas
filter. Replaced bysimple_page_sidebars_widget_areas
. - Deprecated
simpsid_widget_area_defaults
filter. Replaced bysimple_page_sidebars_widget_area_defaults
. - Deprecated
simpsid_sidebar_name
filter. Replaced withsimple_page_sidebars_last_call
.
0.1
- Erstveröffentlichung