Finally, use widgets to maintain & customize your Archive Page Template in Genesis Framework and Child Themes to create archive/sitemap listings.
New Flexibility plus Enhanced User Experience
Take control over Your Archive Pages in Genesis again! Use the ever popular way of Widgets to build your own archive listing or sitemap-like content. Use up to three columns that are responsive and enable automatically. Don’t lose your archive/sitemap creations if you ever switch the Genesis child theme.
A great helper tool for Genesis Child Themes!
Please note: The plugin requires the Genesis Theme Framework (GPL-2.0+), a paid premium product released by StudioPress/ Copyblogger Media LLC (via studiopress.com).
Plus: A premium PRO Version of this plugin will be released in the future…! π
Please note: The plugin requires the Genesis Theme Framework.
genesis-widgetized-archive.pot
) for translators is also always included πA plugin from deckerweb.de and GenesisThemes
Enjoy using Genesis Widgetized Archive? Please consider making a small donation to support the project’s continued development.
/wp-content/languages/genesis-widgetized-archive/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like genesis-widgetized-archive-en_US.mo/.po
to achieve that.Easy plugin translation platform with GlotPress tool:Translate “Genesis Widgetized Archive”…
Note: All my plugins are internationalized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating I recommend the awesome “Codestyling Localization” plugin and for validating the “Poedit Editor”, which works fine on Windows, Mac and Linux.
I never really enjoyed the bundled “Archive” page template in Genesis. So I always wanted this template/ area a bit more easily customizeable since I first worked with Genesis! Widgets in WordPress are powerful and allow for adding really diverse and custom stuff – all in a very simple and user-friendly way. The approach of this plugin is to bring more power to the webmasters and users and help avoid other “archive” or “sitemaps” plugins and instead use the powerful tools from WordPress and Genesis that are already there. This plugin here works primarily as a ‘helper’ or ‘bridge’ plugin to just do that :).
NOTE: Only works with Genesis Framework (GPL-2.0+) as the parent theme. This is a paid premium product by StudioPress/ Copyblogger Media LLC, available via studiopress.com.
genesis-widgetized-archive
folder to the /wp-content/plugins/
directory — or just upload the ZIP package via ‘Plugins > Add New > Upload’ in your WP AdminNote: The “Genesis Framework” is required for this plugin in order to work. If you don’t own a copy it yet, this premium parent theme has to be bought. More info about that you’ll find here: http://ddwb.me/getgenesis
Usage: The plugin adds 3 new widget areas on your Widget Admin. Just place any widget in the #1 area and if you want to have columns use the optional 2nd and/ or 3rd area. That’s all. Enjoy!
Also note: This plugin needs NO settings page. You only need your default page edit screen and your widgets admin. Simplifying and no overbloat – you get the idea :).
Own translation/wording: For custom and update-secure language files please upload them to /wp-content/languages/genesis-widgetized-archive/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like genesis-widgetized-archive-en_US.mo/.po
to achieve that (for creating one see the tools on “Other Notes”).
Genesis Widgetized Archive: up to 3 additional widget areas/sidebars - here with some example widgets placed in... (Click here for larger version of screenshot)
Genesis Widgetized Archive: the plugin in action on a live site - displaying here the widgets in area #1 and #2, therefore it switches to a 2-column layout. (Click here for larger version of screenshot)
Genesis Widgetized Archive: don't forget to set the 'Archive' template for a page via page edit screen. (Click here for larger version of screenshot)
Genesis Widgetized Archive: help tab for the plugin. (Click here for larger version of screenshot)
One should be enough for a lot of use cases. However, having 3 widget areas enables you to use up to 3 columns (see below), which makes sense to make it all more viewable. For example: you’ve given your archive page the ‘Full Width Content” layout option and use widgets in all 3 areas. Result: perfectly layered 3-column layout consisting of widgets. How cool’s that? π
Column layouts are enabled automatically the same time you place any widget in the second or third widget area (implied the 1st is also active). The needed very few CSS styles are provided by the plugin (unfortunately not all child themes have these column classes included by default) and ONLY enqueued for that archive page (so very lightweight still!).
Yes, of course they are! If your child theme is already responsive and you use columnized areas they just adapt to your viewport nicely. Additionally, the break point for the 2-column and 3-column layout is set to 640px: so on smaller devices/viewports the columns automatically switch to an 100% width. — You can change all CSS media queries with !important
or own styles (see below!).
Note, if your child theme isn’t responsive yet these CSS media queries won’t have any effect and also do no harm :-).
That’s possible of course! Just add one or both of the following constants to your child theme’s functions.php
file – or to a functionality plugin instead (recommended!):
/** Genesis Widgetized Archive: Remove Second Widget Area */ define( 'GWAT_NO_SECOND_WIDGET_AREA', true ); /** Genesis Widgetized Archive: Remove Third Widget Area */ define( 'GWAT_NO_THIRD_WIDGET_AREA', true );
It’s all done via your child theme. Maybe you need to add an !important
to some CSS rules here and there… For more even better styling I included some IDs and classes:
Each widget in all areas gets an additional class: .gwat-archive
— which allows to set some common styles for all widgets on the appropriate page!
“Archive Page Template #1” section:
#gwat-archive-area-one
plus class .gwat-archive-area
.gwat-archive-one
— which allows to set some common styles for all widgets in this 1st area“Archive Page Template #2” section (optional):
#gwat-archive-area-two
plus class .gwat-archive-area
.gwat-archive-two
— which allows to set some common styles for all widgets in this 2nd area“Archive Page Template #3” section (optional):
#gwat-archive-area-three
plus class .gwat-archive-area
.gwat-archive-three
— which allows to set some common styles for all widgets in this 3rd areaIf that’s still not enough, you can even enqueue your own style, an action hook is included for that: gwat_load_styles
— This hook fires within the WordPress action hook wp_enqueue_scripts
just after properly enqueueing the plugin’s styles and only if at least one of both widgets is active, so it’s fully conditional!
You guess it, it’s just possible :). I have included 2 action hooks to achieve that. For example this could be useful for some admins who use more than one archive page or in general for Multisite installs.
gwat_before_widgetized_area
Example code to add stuff before the plugin’s widgetized section:
add_action( 'gwat_before_widgetized_area', 'custom_content_before_widgetized_area' ); /** Genesis Widgetized Archive: Add custom stuff before widgetized area */ function custom_content_before_widgetized_area() { // Your specific before code here... }
gwat_after_widgetized_area
Example code to add stuff after the plugin’s widgetized section:
add_action( 'gwat_after_widgetized_area', 'custom_content_after_widgetized_area' ); /** Genesis Widgetized Archive: Add custom stuff after widgetized area */ function custom_content_after_widgetized_area() { // Your specific after code here... }
If needed, add such code snippets to your child theme’s functions.php
file or via the preferred way, a functionality plugin or a code snippets plugin.
Note: Only if these hooks are in use a div container with the class gwat-before-widgetized
(for ‘before’) respectively gwat-before-widgetized
(for ‘after’) is wrapped around the hook’s content then.
Of course, it’s possible! Just add the following constant to your child theme’s functions.php
file or to a functionality plugin:
/** Genesis Widgetized Archive: Remove Widgets Shortcode Support */ define( 'GWAT_NO_WIDGETS_SHORTCODE', true );
Some webmasters could need this for security reasons regarding their stuff members or for whatever other reasons… :).
I’ve just included some filters for that – if ever needed (i.e. for clients, branding purposes etc.), you can use these filters:
gwat_filter_archive_one_widget_title – default value: “Archive Page Template #1”
gwat_filter_archive_one_widget_description – default value: “This is the first widget area for the Archive Page Template (bundled with the Genesis Framework).”
The same principles apply for ‘#2’ and ‘#3’.
Here’s an example code for changing one of these filters:
add_filter( 'gwat_filter_archive_one_widget_title', 'custom_archive_one_widget_title' ); /** * Genesis Widgetized Archive: Custom Archive Page Template Widget Title */ function custom_archive_one_widget_title() { return __( 'Custom Archive Page', 'your-child-theme-textdomain' ); }
Final note: I DON’T recommend to add customization code snippets to your child theme’s functions.php
file! Please use a functionality plugin or an MU-plugin instead! This way you are then more independent from child theme changes etc. If you don’t know how to create such a plugin yourself just use one of my recommended ‘Code Snippets’ plugins. Read & bookmark these Sites:
functions.php
file: Resource One – Resource Two(both by Thomas Griffin Media)All the custom & branding stuff code above can also be found as a Gist on GitHub: https://gist.github.com/4106349 (you can also add your questions/ feedback there π
(1) In general: You may use it for “global” widgets.
(2) Usage with the “WPML” plugin:
Widgets can be translated with their “String Translation” component – this is much easier than adding complex information/instructions to the 404 error or search not found pages for a lot of languages…
You can use the awesome “Widget Logic” plugin (or similar ones) and add additional paramaters, mostly conditional stuff like is_home()
in conjunction with is_language( 'de' )
etc. This way widget usage on a per-language basis is possible. Or you place in the WPML language codes like ICL_LANGUAGE_CODE == 'de'
for German language. Fore more info on that see their blog post: http://wpml.org/2011/03/howto-display-different-widgets-per-language/
With the following language detection code you are now able to make conditional statements, in the same way other WordPress conditional functions work, like is_single()
, is_home()
etc.:
/** * WPML: Conditional Switching Languages * * @author David Decker - DECKERWEB * @link http://twitter.com/deckerweb * * @global mixed $sitepress */ function is_language( $current_lang ) { global $sitepress; if ( $current_lang == $sitepress->get_current_language() ) { return true; } }
Note: Be careful with the function name ‘is_language’ – this only works if there’s no other function in your install with that name! If it’s already taken (very rare case though), then just add a prefix like my_custom_is_language()
.
–> You now can use conditionals like that:
if ( is_language( 'de' ) ) { // do something for German language... } elseif ( is_language( 'es' ) ) { // do something for Spanish language... }
gwat-styles.min.css
(gwat-html5-styles.min.css
) is the minified default version, plus, gwat-styles.css
(gwat-html5-styles.css
) is now the development version. If WP_DEBUG
or SCRIPT_DEBUG
constants are true
, the dev styles will be loaded. This makes development/ customizing & debugging a lot easier! π