Linux 软件免费装
Banner图

Widget Logic

开发者 wpchefgadget
widgetlogics
更新时间 2024年10月14日 18:43
PHP版本: 5.4 及以上
WordPress版本: 6.6
版权: GPLv2 or later
版权网址: 版权信息

标签

widget sidebar blocks conditional tags gutenberg widgets

下载

0.3 0.31 6.0.4 0.44 0.57 0.2 0.4 0.42 0.43 0.46 0.47 0.48 0.50 0.51 0.52 0.54 0.55 0.56 5.10.2 5.10.3 5.10.4 5.7.0 5.7.1 5.7.2 5.7.3 5.7.4 5.8.0 5.8.1 5.9.0 6.0.0 0.45 5.8.2 6.0.1 6.02 6.0.3

详情介绍:

This plugin gives every widget an extra control field called "Widget logic" that lets you control the pages that the widget will appear on. The text field lets you use WP's Conditional Tags, or any general PHP code. PLEASE NOTE The widget logic you introduce is EVAL'd directly. Anyone who has access to edit widget appearance will have the right to add any code, including malicious and possibly destructive functions. There is an optional filter 'widget_logic_eval_override' which you can use to bypass the EVAL with your own code if needed. (See Other Notes). The configuring and options are in the usual widget admin interface. BIG UPDATE: Configuration Aside from logic against your widgets, there are three options added to the foot of the widget admin page (see screenshots). You may need to delay the load if your logic depends on functions defined, eg in the theme functions.php file. Conversely you may want the load early so that the widget count is calculated correctly, eg to show an alternative layour or content when a sidebar has no widgets. * Don't cache widget logic results -- From v .58 the widget logic code should only execute once, but that might cause unexpected results with some themes, so this option is here to turn that behaviour off. (The truth/false of the code will be evaluated every time the sidebars_widgets filter is called. Interaction with External Services Widget Logic uses the external service to obtain up-to-date information about the results of football matches. widgetlogic.org is a source of sports information, that provides a wide range of information about football, including various leagues, tournaments, and championships from around the world. The functioning of the widgetlogic.org service is based on delivering real-time data about selected matches without the need to refresh the page. This means that data is automatically updated without requiring page reload. This approach ensures users quick and uninterrupted access to the latest sports data without the effort of manually updating information, allowing them to stay informed about ongoing events in real-time.

屏幕截图:

  • The 'Widget logic' field at work in Classic widgets.
  • The plugin options are at the foot of the usual widget admin page… `wp_reset_query` option, 'load logic point' and 'evaluate more than once'. You can also export and import your site's WL options as a plain text file for a quick backup/restore and to help troubleshoot issues.
  • Pre-installed 'Live Match' widget in widgets section
  • Pre-installed 'Live Match' widget on website

升级注意事项:

0.58 Important change to the default of when your Widget Logic is evaluated. It is now on the "parse_query" action, and just once. Those defaults can be overridden. 0.46 Required with WP2.8 cos of changes in Widget admin AJAX 0.44 Updated for WP2.7 with extra bug fixes

常见问题:

Can I use Widget Logic in Gutenberg widgets view?

Yes, you can! Starting from 6.0.0 you can use Widget Logic in Gutenberg widgets and in Classic Widgets. So if you have earlier version, please update plugin.

What can I try if it's not working?

  • Switch to the default theme. If the problem goes away, your theme may be interfering with the WP conditional tags or how widgets work
  • Try the wp_reset_query option. If your theme performs custom queries before calling the dynamic sidebar this might help.
  • Try a different 'Load logic' point. Most wordpress conditional tags only work 'after query variables set', but some plugins may require evaluation earlier or later.
  • The 'Evaluate widget logic more than once' option may be needed if you have to use an early 'Load logic' point.

I'm getting errors that read like "PHP Parse error… … eval()'d code on line 1"

You have a PHP syntax error in one of your widget's Widget Logic fields. Review them for errors. You might find it easiest to check by using 'Export options' and reading the code there (Though be aware that single and double quotes are escaped with multiple backslash characters.) If you are having trouble finding the syntax error, a simple troubleshooting method is to use 'Export options' to keep a copy and then blank each Widget Logic field in turn until the problem goes. Once you've identified the problematic code, you can restore the rest with 'Import options'.

It's causing problems with Woo Commerce / other popular plugin

This is often, not always, fixed by trying the different 'Load Logic' options. The 'after query variables set' option looks like it might be a better default, try it.

What's this stuff in my sidebar when there are no widgets?

Since v .50 the widget logic code runs such that when dynamic_sidebar is called in a theme's code it will 'return false' if no widgets are present. In such cases many themes are coded to put in some default sidebar text in place of widgets, which is what you are seeing. Your options, if you want this default sidebar content gone, are to either edit the theme, or as a work around, add an empty text widget (no title, no content) to the end of the sidebar's widget list.

How do I get widget X on just my 'home' page? (Or on every page except that.)

There is some confusion between the Main Page and the front page. If you want a widget on your 'front page' whether that is a static page or a set of posts, use is_front_page(). If it is a page using is_page(x) does not work. If your 'front page' is a page and not a series of posts, you can still use is_home() to get widgets on that main posts page (as defined in Admin > Settings > Reading).

Logic using is_page() doesn't work

I believe this is fixed in 5.7.0. Let me know if that is not the case. If your theme calls the sidebar after the loop you should find that the wp_reset_query option fixes things. This problem is explained on the is_page codex page.

How do I get a widget to appear both on a category page and on single posts within that category?

Take care with your conditional tags. There is both an in_category and is_category tag. One is used to tell if the 'current' post is IN a category, and the other is used to tell if the page showing IS for that category (same goes for tags etc). What you want is the case when: (this page IS category X) OR (this is a single post AND this post is IN category X) which in proper PHP is: is_category(X) || (is_single() && in_category(X))

How do I get a widget to appear when X, Y and Z?

Have a go at it yourself first. Check out the 'Writing Logic Code' section under Other Notes.

Why is Widget Logic so unfriendly, you have to be a code demon to use it?

This is sort of deliberate. I originally wrote it to be as flexible as possible with the thought of writing a drag'n'drop UI at some point. I never got round to it, because (I'm lazy and) I couldn't make it both look nice and let you fall back to 'pure code' (for the possibilities harder to cater for in a UI). The plugin Widget Context presents a nice UI and has a neat 'URL matching' function too.

Widgets appear when they shouldn't

It might be that your theme performs custom queries before calling the sidebar. Try the wp_reset_query option. Alternatively you may have not defined your logic tightly enough. For example when the sidebar is being processed, in_category('cheese') will be true if the last post on an archive page is in the 'cheese' category. Tighten up your definitions with PHPs 'logical AND' &&, for example: is_single() && in_category('cheese')

更新日志:

6.02 6.0.1 6.0.0 5.10.4 5.10.3 5.10.2 5.9.0 wp_reset_query works better under certain conditions. 5.8.2 The code has been adapted to work on the servers with restricted <?= Fixed support for the wp_register_sidebar_widget widgets. Some content was prepared for translation. 5.8.1 Fixed the issue of displaying errors under certain conditions. 5.8.0 Added full support for WP customizer. In case of a fatal error in logic, the widget will not be displayed. 5.7.4 Fixed the "Warning: Attempt to assign property of non-object" bug. https://wordpress.org/support/topic/latest-update-seems-break-my-installation/ 5.7.3 Fixed the issue when in some cases the plugin displayed user logic errors in the Widgets section and this didn't allow to save the widgets. https://wordpress.org/support/topic/an-error-has-occurred-please-reload-the-page-and-try-again-3/ Fixed ini_set() related warnings for some rare hosting configurations. https://wordpress.org/support/topic/ini_set-diabled-warning/ 5.7.2 Removed conflicts with outdated WP versions. 5.7.1 Fixed the settings form not being saved settings under some circumstances. Added a setting to show logic code errors for admins (turned off by default). Fixed the issue with quotes in error messages on some WP installations. 5.7.0 Fixed PHP 7 compatibility issue. Fixed a conflict with the latest WPML plugin. A new default load logic point attached to the action 'parse_query'. By default the widget logic is only evaluated once. Translation added: Ukrainian by Roman Sulym 0.57 Small fixes to satisfy some define('WP_DEBUG', true) errors 0.56 Small fix to the original WP3.5 fix in 0.54 that had the side effect of failing to save logic text on newly added widgets. 0.55 Restored a striplashes that vanished in 0.54 causing much grief. Translation: Spanish by Eduardo Larequi http://wordpress.org/support/profile/elarequi 0.54 Removed a WP 3.1+ function call, hopefully making it 2.8 compatible again. A little 'trim' of WL code to stop "syntax error, unexpected ')'" errors, which could occur if your WL was just a single space. Thanks to https://twitter.com/chrisjean for pointing this out. Translation support! Thanks to Foe Services Labs http://wordpress.org/support/profile/cfoellmann for the work on this and the German Social Translation Added a 'widget_logic_eval_override' filter. This allows advanced users to bypass EVAL with a function of their own. 0.53 Accidentally released code with a terrible bug in it :-( 0.52 Two new features: optional delayed loading of logic (see Configuration under Installation), and the ability to save out and reload all your site's widget logic into a config file 0.51 One important bug fix (fairly major and fairly stupid of me too) 0.50 For the first time since this started on WP 2.3, I've rewritten how the core widget logic function works, so there may be 'bumps ahead'. It now uses the 'sidebars_widgets' filter (as it should have done when that was introduced in WP2.8 by the look of it). The upshot is that is_active_sidebar should behave properly. Widget callbacks only get intercepted if the 'widget_content' filter is activated, and much more briefly. (A widget's 'callback' is rewired within the 'dynamic_sidebar' function just before the widget is called, by the 'dynamic_sidebar_param' filter, and is restored when the callback function is invoked.) 0.48 Kill some poor coding practices that throws debug notices - thanks to John James Jacoby. 0.47 FINALLY tracked down the elusive 'wp_reset_query' option resetting bug. 0.46 Fix to work with new WP2.8 admin ajax. With bonus fixes. 0.44 Officially works with 2.7 now. Documentation changes and minor bug fixes. 0.43 simple bug fix (form data was being lost when 'Cancel'ing widgets) 0.42 WP 2.5+ only now. WP's widget admin has changed so much and I was getting tied up in knots trying to make it work with them both. 0.4 Brings WP 2.5 compatibility. I am trying to make it back compatible. If you have trouble using WL with WP 2.1--2.3 let me know the issue. Thanks to Kjetil Flekkoy for reporting and helping to diagnose errors in this version 0.31 Last WP 2.3 only version