Horje
Easily update WordPress transients in the background via AJAX to increase site speed and avoid long page load times. Hoeboe can be especially helpful … Wordpress Tutorial

Noted That:

  • To install correctly this hoeboe.zip .
  • Fisrt Download the hoeboe.zip to your computer
  • Extract/Open hoeboe.zip to Your Computer.
  • Then, Find readme.txt file inside hoeboe.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.

Start the Tips:

1. First Download " hoeboe.zip " Plugin to your Local Computer. (Click Download)

2. Then, Login to your " yourdomain.com/wp-admin " Dashboard.

/stack/wp/e1593231376d7d849d2-4597-4fa3-a6ff-1eca18f72aab.png

3. Then, Click on " Plugins " + " Add New " from left sidemenu of Dashboard.

/stack/wp/e1593231378Screenshot20.png

4. Now, Click on "Upload Plugin" button.

/stack/wp/e1593231380Screenshot-2019-4-2AddPluginsHorjeWordPress.png

 

5. Now, Browse " hoeboe.zip "  Downloaded plugin from your computer, Where you downloaded hoeboe.zip According to Step – 1 Above then, click on " Install Now"

/stack/wp/e15931461531577025694plugin.png

6. Now, Click on " Active Plugin"

/stack/wp/e15932313830ca45529-bf73-4101-8178-53ae60ce549f.png

7. Then, See left sidemenu. " Hoeboe " folder is added on left sidemenu. Now, Click on " Hoeboe " folder.

   Noted that: If you do not see " Hoeboe " folder on left sidemenu then, see at left sidemenu " Settings " or " Tools ".

8. Now you configure yourself oR Watch video tutorial below about  Hoeboe Configurtions and Settings or How to work " Hoeboe " in your WordPress site.

 

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Hoeboe " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Hoeboe
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

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



 $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



 $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


easily , long , helpful , especially , hoeboe , times , load , page , avoid , update ,

Name

Read Article
https://develop.horje.com/learn/1434/reference