Linux 软件免费装
Banner图

Pods AJAX Views

开发者 sc0ttkclark
更新时间 2020年3月27日 11:37
捐献地址: 去捐款
PHP版本: 5.4 及以上
WordPress版本: 5.4
版权: GPLv2 or later
版权网址: 版权信息

标签

ajax pods

下载

1.0 1.1 1.2

详情介绍:

Pods AJAX Views offers an easy way to generate cached views from AJAX when they haven't been cached yet. It will serve straight from cache and output on the page if the view has already been generated. This plugin requires the Pods Framework version 2.4.1 or later to run. Why AJAX Views? If you are using pods_view to cache template output, you're already on the right track to improving performance of your site through it's powerful Partial Page Caching. However, what if you have a complicated view that may take a few seconds to generate? What if you have a few of those views on the same page? On hosts like WPEngine, there's a strict 30 second limit and then a 502 server error is sent to the visitor. Waiting a long time for a page to load, or especially being sent a server error like that just isn't acceptable for visitors and they may choose to bail on your site. Pods AJAX Views takes those complicated views and lets you off-load them into a separate asynchronous AJAX call that allows the rest of the page to be built and sent to the browser. When the AJAX request runs, the view is cached like normal, so subsequent calls to the Pods AJAX View code will produce the exact same result as a default pods_view would. Usage Use the same way as pods_view, it accepts the same arguments, except one additional argument $forced_regenerate at the end which can be set to true (default: false) that will force the view to be deleted from cache and reloaded. pods_ajax_view( 'my-big-cached-template.php' ); AJAX requests are done through the same URL, so you still have access to the query and postdata like normal. We hook into template_redirect to stop Beware that AJAXed views are loaded from AJAX, not through the current page. They do not have access to the current WP_Query or Query variables, or the Post loop. If you want to pass anything into it, use the $data argument. For information about pods_view, see these resources: Available Constants

安装:

  1. Unpack the entire contents of this plugin zip file into your wp-content/plugins/ folder locally
  2. Upload to your site
  3. Navigate to wp-admin/plugins.php on your site (your WP Admin plugin page)
  4. Activate this plugin
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin's name

屏幕截图:

  • Manage page.
  • Regnerating views from manage page.

更新日志:

1.2 - March 26th, 2020 1.1 - March 2nd, 2020 1.0 - June 19th, 2014