Title: Hoeboe
Author: Twice Two Media
Published: <strong>4. decembra 2018</strong>
Last modified: 1. apryla 2020

---

Tykače pytać

![](https://ps.w.org/hoeboe/assets/banner-772x250.png?rev=1985172)

Tutón tykač **njeje so z najnowšimi 3 hłownymi wersijemi WordPress testował**. Snano
so hižo njewothladuje abo njepodpěruje a ma problemy z kompatibelnosću, hdyž so 
z nowšimi wersijemi WordPress wužiwa.

![](https://ps.w.org/hoeboe/assets/icon-256x256.png?rev=1985172)

# Hoeboe

 Wot [Twice Two Media](https://profiles.wordpress.org/twicetwomedia/)

[Sćahnyć](https://downloads.wordpress.org/plugin/hoeboe.0.1.4.zip)

 * [Podrobnosće](https://hsb.wordpress.org/plugins/hoeboe/#description)
 * [Pohódnoćenja](https://hsb.wordpress.org/plugins/hoeboe/#reviews)
 *  [Instalacija](https://hsb.wordpress.org/plugins/hoeboe/#installation)
 * [Wuwiće](https://hsb.wordpress.org/plugins/hoeboe/#developers)

 [Podpěra](https://wordpress.org/support/plugin/hoeboe/)

## Wopisanje

Easily update WordPress transients in the background via AJAX to increase site speed
and avoid long page load times. Hoeboe can be especially helpful with caching of
large external API calls or heavy internal database queries.

If you’ve used the WordPress Transients API, you already know how useful it can 
be with caching, page load, and site speed. If you’ve used transients to store data
from external API calls or from heavy internal database queries, then you also know
a few of its limitations. Namely, page load can be negatively impacted on the user
session where a large transient gets updated.

Hoeboe helps to solve this problem of the one-off user who has to deal with potentially
long page load while your site refreshes a transient in the background. With Hoeboe,
you can choose to update those large transients in the background via AJAX. Your
users won’t notice anything different – other than possibly faster overall site 
speed.

## Instalacija

Upload the Hoeboe plugin and activate Hoeboe within wp-admin settings. You’ll then
be ready to upgrade your WordPress transients.

See the example below detailing how to use Hoeboe in your theme:

**Basic Implementation of a Transient**

    ```
    <?php
    //WP_Query function to be used to get data
    function my_function_to_get_featured_posts($category, $posts_per_page) {
        $posts = new WP_Query(
          array(
                "category" => $category,
                "posts_per_page" => $posts_per_page
          )
        );
        return $posts;
    }

    //Attempt to get transient
    $transient_name = "foo_featured_posts";
    $featured = get_transient( $transient_name );

    //Check for transient. If none, then execute WP_Query function
    if ( false === ( $featured ) ) {

        $category = "featured";
        $posts_per_page = "5";
        $featured = my_function_to_get_featured_posts($category, $posts_per_page);

        //Put the results of the query in a transient. Expire after 12 hours.
        $expiration_time = 12 * HOUR_IN_SECONDS;
        set_transient( "foo_featured_posts", $featured, $expiration_time );
    } 
    ?>
    ```

**Using Hoeboe with that same Transient outlined above**

    ```
    <?php
    //WP_Query function to be used to get data
    function my_function_to_get_featured_posts($category, $posts_per_page) {
        $posts = new WP_Query(
          array(
                "category" => $category,
                "posts_per_page" => $posts_per_page
          )
        );
        return $posts;
    }

    $transient_name = "foo_featured_posts";
    $my_function_name = 'my_function_to_get_featured_posts';
    $category = "featured";
    $posts_per_page = "5";
    $my_function_parameters = array($category, $posts_per_page);
    $transient_expire = 60;
    $expiration_time = 12 * HOUR_IN_SECONDS;

    if (class_exists('Hoeboe')) {
        $hoeboe = new Hoeboe();
        $transient_value = $hoeboe->hoeboe__updatetransient($transient_name, $my_function_name, $my_function_parameters, $expiration_time);
    }
    ?>
    ```

#### Links

 * [Detailed installation and implementation guide](https://twicetwomedia.com/wordpress-plugins/).

## HSP

  Does Hoeboe replace WordPress transients?

**No.** Hoeboe works alongside the Transients API to help you cache data better 
and, ultimately, provide a better user experience for your site visitors.

  If I activate Hoeboe, will it automatically affect all current WordPress transients
that I use?

**No.** You must implement Hoeboe individually within your theme even after the 
Hoeboe plugin is activated. Hoeboe is set up this way so that you can pick and choose
which transients to use Hoeboe on.

  How do I implement Hoeboe on a transient?

**Only a couple of simple steps.** Visit the link below for more information.

[Detailed installation and implementation guide](https://twicetwomedia.com/wordpress-plugins/).

## Pohódnoćenja

Za tutón tykač pohódnoćenja njejsu.

## Sobuskutkowarjo a wuwiwarjo

„Hoeboe“ je softwara wotewrjeneho žórła. Slědowacy ludźo su k tutomu tykačej přinošowali.

Sobuskutkowarjo

 *   [ Twice Two Media ](https://profiles.wordpress.org/twicetwomedia/)

[Přełožće „Hoeboe“ do swojeje rěče.](https://translate.wordpress.org/projects/wp-plugins/hoeboe)

### Na wuwiću zajimowany?

[Přehladajće kod](https://plugins.trac.wordpress.org/browser/hoeboe/), hladajće 
do [SVN-repozitorija](https://plugins.svn.wordpress.org/hoeboe/) abo abonujće [wuwiwanski protokol](https://plugins.trac.wordpress.org/log/hoeboe/)
přez [RSS](https://plugins.trac.wordpress.org/log/hoeboe/?limit=100&mode=stop_on_copy&format=rss).

## Protokol změnow

#### 0.1.4

_Release Date – Mar 31, 2020_
 * Include new file

#### 0.1.3

_Release Date – Mar 31, 2020_
 * Only include jQuery if it is not already registered*
Improve admin settings

#### 0.1.2

_Release Date – Jul 23, 2019_
 * Fix PHP warnings on activation / deactivation

#### 0.1.1

_Release Date – Dec 9, 2018_
 * Tested up to WordPress 5.0 * Enqueue jQuery if not
already present * Better handle multiple Hoeboe/Transient calls on one page * Better
handle multiple Hoeboe/Transient requests in a short time frame

#### 0.1.0

_Release Date – Dec 1, 2018_
 * Initial release

## Meta

 *  Version **0.1.4**
 *  Last updated **6 lět**
 *  Active installations **Mjenje hač 10**
 *  WordPress version ** 3.5 abo nowši **
 *  Tested up to **5.4.19**
 *  PHP version ** 5.3 abo nowši **
 *  Language
 * [English (US)](https://wordpress.org/plugins/hoeboe/)
 * Tags
 * [ajax](https://hsb.wordpress.org/plugins/tags/ajax/)[api](https://hsb.wordpress.org/plugins/tags/api/)
   [cache](https://hsb.wordpress.org/plugins/tags/cache/)[caching](https://hsb.wordpress.org/plugins/tags/caching/)
   [transients](https://hsb.wordpress.org/plugins/tags/transients/)
 *  [Rozšěrjeny napohlad](https://hsb.wordpress.org/plugins/hoeboe/advanced/)

## Pohódnoćenja

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/hoeboe/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/hoeboe/reviews/)

## Sobuskutkowarjo

 *   [ Twice Two Media ](https://profiles.wordpress.org/twicetwomedia/)

## Podpěra

Chceće něšto prajić? Trjebaće pomoc?

 [Forum pomocy pokazać](https://wordpress.org/support/plugin/hoeboe/)

## Darić

Chceće dalewuwiwanje tutoho tykača podpěrać?

 [ Za tutón tykač darić ](https://twicetwomedia.com/wordpress-plugins/)