开发者 |
daveshine
deckerweb |
---|---|
更新时间 | 2019年2月21日 23:51 |
捐献地址: | 去捐款 |
PHP版本: | 3.2 及以上 |
WordPress版本: | 5.1 |
版权: | GPL-2.0+ |
版权网址: | 版权信息 |
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...! :-) Advantages & Benefits
genesis-widgetized-archive.pot
) for translators is also always included :)genesis-widgetized-archive
folder to the /wp-content/plugins/
directory -- or just upload the ZIP package via 'Plugins > Add New > Upload' in your WP Admin/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").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:
.gwat-archive
-- which allows to set some common styles for all widgets on the appropriate page!#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#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#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 areagwat_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' ); /**
**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)(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.:
`
/**
*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! :)