Under The Hood: Programming tricks used on this site

Under The Hood: Programming tricks used on this site

This is (or, will be) a meta-post listing all posts I’ve written about the techniques used to create this site.

    • Used on this site: Wordpress Custom "Hero Header" Modifications (5192 words) This site uses the "Sinatra" free Wordpress theme as its base. Sinatra includes a single "Hero Header" the row of 3 animated featured posts on the home page which changes background images as you mouse over post titles within it.

      I wanted this to be multi-row, a grid instead of just one row. The code natively contained an option to include up to 12 featured posts, which could easily be made to wrap around to new rows, but the problem was, the background of the entire section containing all rows changed when you moused over a post, not just the single row, and I wanted not just a row-by-row background, but I wanted potentially unlimited rows.

      I moved the code that generates the rows into a function, and then called it repeatedly, once for each row I want. At some point I may make it automatically add as many rows as are required to display all posts, but as of this writing, every time I add one more post than there is room for, I edit the bottom of this file to add another row.

      Furthermore, originally, the theme CSS was really sloppy:

      1.) There's a lot of identifying things by element, such as anchor or div tags, which the CSS then had to look up the ancestry of to see which formatting applied (as in rules similar to, "#page .hero-row .hero-slider

      a {blah-blah:blah}", which is horribly inefficient compared to just giving things a class.

      2.) All the changing images were done using CSS background images on <div> elements, making them hard to lazy-load and killing page performance.

      3.) Plus there were a lot of animations on non-compositor-only attributes, making Google PageSpeed complain.So a lot of CSS got rewritten. I don't mind telling you: it took a while. There are still a lot of inefficiencies, like divs directly nested as the only child of other divs, that can be cleaned up. Unfortunately that's going to take a while as a lot of things are done with flexboxes, which makes refactoring all the formatting a lot tougher. So for right now I'm leaving that alone, but it's on my "future plans" list.

      I'm proud to say that as of this writing (July 2, 2024) my great, big, overcomplicated (over 5000 elements) animated home page gets a 99 out of 1000 performance score on Google PageSpeed. See for yourself: Pagespeed Report

      Here, then, is my current updated version of Sinatra theme's /template-parts/hero/hero-hover-slider.php. This is dynamically read from the actual site files, this is what's currently in live use on the front page:

      <?php
      /**
       * The template for displaying Hero Hover Slider.
       *
       * @package     Sinatra
       * @author      Sinatra Team <hello@sinatrawp.com>
       * @since       1.0.0
       */


          

      $postsperrow 3;

      $sinatra_hero_categories = !empty($sinatra_hero_categories)
          ? 
      implode(", "$sinatra_hero_categories)
          : 
      "";

      // Setup Hero posts.

      //function herorow($postsperpage,$offset,$order,$sinatra_hero_categories) {return '<h2>hi '.$offset.'</h2>';}


      function count_total_post_media$id ) {
          

      $data getFunctionTransient(__FUNCTION__,    $id); if ( $data != null) {return $data;}
          
              
      // from https://wordpress.stackexchange.com/questions/246055/count-total-number-of-images-in-post-and-echo-results-as-number
              
      $array get_post_galleries$idfalse );
              
      $key 0;
          
      $theOut=array();
            
      //  $src = 0;
              
      while ( $key count$array ) ){
                
      //  $src += count( $array[$key]['src'] );
                  
      $theOutarray_merge($theOut,explode(',',$array[$key]['ids']));
                  
      $key++;
              }
      $newarray=array_column(get_children($id),'ID'); //get_children returns an array of obects, which has to be handled differently than ordinary arrays, because otherwise it wouldn't be PHP

      /*DEBUGGING if(is_user_logged_in()) {echo "<!-- ".print_r($newarray)." -->";echo "<!-- ".get_post_thumbnail_id($id, "full")." -->"; }  */
             
      $keynew 0;
            
      //  $srcnew = 0;
             
      $theOutnew=array();
              while ( 
      $keynew count$newarray ) ){
                
      //  $src += count( $array[$keynew]['src'] );
                  
      $theOutnew[]= $newarray[$keynew];
                  
      $keynew++;
              }


      $theFinalArray=array_unique(array_merge($theOut,$theOutnew));
      if(
      has_post_thumbnail$id )) {

      if ((
      $key array_search(get_post_thumbnail_id($id) , $theFinalArray)) !== false) { unset($theFinalArray[$key]); } /* else { echo "<!-- ".array_search(get_the_post_thumbnail_url($id, "full") , $theFinalArray)." -->";} */

      }
          
      /* NOTE: Tested, this already doesn't detect LJ-divider because it's added by a shortcode */
      $theFinalCount=count($theFinalArray); // was "$theFinalCount=count($theFinalArray)-$hasThumb;" at the end, but this appears to be leftover from something removed, $hasthumb isn't defined anywhere
      //    if(is_user_logged_in()) {echo "<!-- ".print_r($theOut)." -->"; }
            //  return intval( $src );
            //  
           
      setFunctionTransient(__FUNCTION__$theFinalCount ,$id);
          return 
      intval$theFinalCount );
          }



      function 
      herorow($postsperpage$offset$order$sinatra_hero_categories)
      {
          
      $sinatra_args = [
              
      "post_type" => "post",
              
      "post_status" => "publish",
              
      "order" => $order//'ASC',
              
      "posts_per_page" => $postsperpage//3 //sinatra_option( 'hero_hover_slider_post_number' ), // phpcs:ignore WordPress.WP.PostsPerPage.posts_per_page_posts_per_page
              
      "offset" => $offset,
              
      "ignore_sticky_posts" => true,
              
      "tax_query" => [
                  
      // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
                  
      [
                      
      "taxonomy" => "post_format",
                      
      "field" => "slug",
                      
      "terms" => ["post-format-quote"],
                      
      "operator" => "NOT IN",
                  ],
              ],
          ];

          
      $sinatra_hero_categories sinatra_option("hero_hover_slider_category");

      $atts=array($postsperpage$offset$order$sinatra_hero_categories);
      $data getFunctionTransient(__FUNCTION__,    $atts); if ( $data != null) {return /*"<!-- transient ".__FUNCTION__." code for atts ". json_encode( $atts ) ." -->".*/ $data;}

          if (!empty(
      $sinatra_hero_categories)) {
              
      $sinatra_args["category_name"] = implode(
                  
      ", ",
                  
      $sinatra_hero_categories
              
      );
          }

          
      $sinatra_args apply_filters(
              
      "sinatra_hero_hover_slider_query_args",
              
      $sinatra_args
          
      );

          
      $sinatra_posts = new WP_Query($sinatra_args);

          
      // No posts found.
          
      if (!$sinatra_posts->have_posts()) {
              return 
      false;
          }

          
      $sinatra_hero_bgs_html "";
          
      $sinatra_hero_items_html "";

          
      $sinatra_hero_elements = (array) sinatra_option(
              
      "hero_hover_slider_elements"
          
      );
          
      $sinatra_hero_readmore =
              isset(
      $sinatra_hero_elements["read_more"]) &&
              
      $sinatra_hero_elements["read_more"]
                  ? 
      " si-hero-readmore"
                  
      "";

          while (
      $sinatra_posts->have_posts()):
              
      $sinatra_posts->the_post();

              
      // Background images HTML markup.
              
      $sinatra_hero_bgs_html =
                  
                  
                
      // 1px included below to prompt the lazy loader to fetch the images. Silly, I know. For a while I used full size images with just 0.001 opacity but sometimes it ignored the opacity. 
                 
                  
      '<div class="hover-slide-bg xlazyload">'  '<img class="mk-hero-row-bg" src="'
                   
      get_the_post_thumbnail_url(get_the_ID(), "full") .'" />' '</div>' .
                  
      $sinatra_hero_bgs_html//reversing the order. Must be reversed below too.

              // Post items HTML markup.
              //    ob_start();

              
      ob_start();
              echo 
      '<div class="col-xs-' .
                  
      intdiv(12$postsperpage) .
                  
      " xmkwrapper hover-slider-item-wrapper";
              echo 
      esc_attr($sinatra_hero_readmore);
              echo 
      '"><img class="mk-hero-row-bg-mobile" src="'
                   
      get_the_post_thumbnail_url(get_the_ID(), "medium") .'" />

              <div class="hover-slide-item xmkparent-div">
                  <div class="slide-inner xmkpost-div">'
      ;

              if ( 
                  isset(
      $sinatra_hero_elements["category"]) &&
                  
      $sinatra_hero_elements["category"]
              ) {
                  echo 
      '<div class="post-category">';
                  
      sinatra_entry_meta_category(" "false);
                  echo 
      " ";
                  
      sinatra_entry_meta_genre(" "false,false,0,"span");
                  echo 
      "</div>";
              }
              if (
      get_the_title()) {
                  echo 
      '<h2 class="hero_h3">';

                  
      $thepre get_post_meta(get_the_ID(), "hero_pre"true);
                  if (
      $thepre) {
                      echo 
      '<p class="hero_pre_p"><i class="hero_h3_i">' .
                          
      $thepre .
                          
      "</i></p>";
                  }
                  echo 
      '<a class="hero_h3_a" href="';
                  echo 
      esc_url(sinatra_entry_get_permalink());
                  echo 
      '">';

                  
      /* was        
      the_title();
      ...which includes echo() in executing. */

                  
      $thistitle get_the_title();
                  
      $thiscategory get_the_category(get_the_ID());

                  
      $thiscategoryterm = ($thiscategory[0]->name)=='feature'?($thiscategory[1]->term_id):($thiscategory[0]->term_id);
              
      /*    BugFu::log("title ",false);
                  BugFu::log($thistitle,false);
                  BugFu::log("thiscat ",false);
                  BugFu::log($thiscategory,false);
                  BugFu::log("thiscategoryterm ",false);
                  BugFu::log($thiscategoryterm,false); */
                  
                  
      $colonpos strpos($thistitle":");
                  if (
      $colonpos !== false) {
                    
       
      $thistitle =  '<span class="titleprefix'.($thepre?' displaynone':'').'">' .
                              
                           
      substr_replace($thistitle":</span>"."<div class=\"" getClassOfCatOrParentCat($thiscategoryterm)."\"></div>"$colonposstrlen(":"));
                          
                     
      /*     str_replace(":", ":</span>"."<div class=\"" . getClassOfCatOrParentCat(get_the_category(get_the_ID())[0]->term_id)."\"></div>", $thistitle);
      */
          
                  
      } else {$thistitle"<div class=\"" getClassOfCatOrParentCat($thiscategoryterm)."\"></div>".$thistitle;} 
              
      //    echo "<!-- id ".get_the_ID()."  cat ".print_r(get_the_category(get_the_ID()))." -->";
                   
      echo ($thistitle);
       
      $thepost get_post_meta(get_the_ID(), "hero_post"true);
                  if (
      $thepost) {
                      echo 
      '<p class="hero_pre_p"><i class="hero_h3_i">' .
                          
      $thepost .
                          
      "</i></p>";
                  }
                  
      /* end replacement */

                  
      echo "</a>";
                
                 
      /* WAS HERE   $thepost = get_post_meta(get_the_ID(), "hero_post", true);
                   if ($thepost) {
                      echo '<p class="heropre" style="font-size:.6em;padding:.25em 0;margin:0;"><i class="hero_h3_i">' .
                          $thepost .
                          "</i></p>"; 
                  } */
                  
      echo "</h2>";
              }

              if (
                  isset(
      $sinatra_hero_elements["meta"]) &&
                  
      $sinatra_hero_elements["meta"]
              ) {
                  echo 
      '    <div class="slider-entry-meta entry-meta">
                              <div class="slider-entry-meta-elements entry-meta-elements">'
      ;
      echo 
      '<div class="herosummary">'.get_the_excerpt().'</div>';
                  
      //sinatra_entry_meta_author();

                /*  sinatra_entry_meta_date([
                      "show_modified" => false,
                      "published_label" => "",
                  ]); */

                  
      if (function_exists("bac_post_word_count")) {
                      echo 
      '<span class="wordcount">';
                      
      bac_post_word_count();
                      echo 
      " words</span>";
                  }
                  
      $theMediaCount =/* count(get_attached_media(get_the_ID())) + count(get_children(get_the_ID())) + */   count_total_post_media(get_the_ID()); // - count(get_post_galleries(get_the_ID(),false)) ; //length(get_attached_media()) + 
                  
                  
      if ($theMediaCount) {
      //if(is_user_logged_in()) {echo "<!-- ".var_dump(get_children(get_the_ID())).". -->"; }
                      
                      
      echo '<span class="mediacount">';
                      echo 
      $theMediaCount;
                      echo 
      " media item";
                      echo 
      $theMediaCount == "" "s";
                      echo 
      "</span>";
                  }

                  echo 
      '</div>
                          </div><!-- END .entry-meta -->'
      ;
              }

              if (
      $sinatra_hero_readmore) {

                  echo 
      '<a href="';
                  echo 
      esc_url(sinatra_entry_get_permalink());
                  echo 
      '" class="slider-read-more read-more si-btn btn-small btn-outline btn-uppercase" role="button"><span>';
                  echo 
      esc_html_e("Continue Reading""sinatra");
                  echo 
      "</span></a>";
              }

              echo 
      '</div><!-- END .slide-inner -->
              </div><!-- END .hover-slide-item -->
          </div><!-- END .hover-slider-item-wrapper -->'
      ;

              
      $sinatra_hero_items_html ob_get_clean() . $sinatra_hero_items_html//reverse the order because I feel like having it that way. Remember to fix the order of the background images too, above, if yu change it back.
          
      endwhile;

          
      // Restore original Post Data.
          
      wp_reset_postdata();

          
      // Hero container.
          
      $sinatra_hero_container sinatra_option("hero_hover_slider_container");
          
      $sinatra_hero_container =
              
      "full-width" === $sinatra_hero_container
                  
      "si-container si-container__wide"
                  
      "si-container";

          
      // Hero overlay.
          
      $sinatra_hero_overlay absint(sinatra_option("hero_hover_slider_overlay"));

          
      $htmloutfinal =
              
      '<div class="si-hover-slider slider-overlay-' .
              
      esc_attr($sinatra_hero_overlay) .
              
      '" style="z-index:-' .
              
      $offset .
              
      '">
          <div class="hover-slider-backgrounds">' 
      .
              
      wp_kses_post($sinatra_hero_bgs_html) .
              
      '</div><!-- END .hover-slider-items -->

          <div class="si-hero-container ' 
      .
              
      esc_attr($sinatra_hero_container) .
              
      '">
              <div class="si-flex-row hover-slider-items">' 
      .
              
      //wp_kses_post
              
      ($sinatra_hero_items_html) .
              
      '</div><!-- END .hover-slider-items -->
          </div>

          <div class="si-spinner visible">
              <div></div>
              <div></div>
          </div>
      </div><!-- END .si-hover-slider -->'
      ;



      setFunctionTransient(__FUNCTION__$htmloutfinal ,$atts)    ;

      return 
      /*"<!-- orignal code for atts ". json_encode( $atts ) ." -->".*/$htmloutfinal;


      }

      echo 
      herorow($postsperrow0"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 1"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 2"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 3"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 4"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 5"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 6"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 7"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 8"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 9"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 10"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 11"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 12"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 13"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 14"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 15"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 16"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 17"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 18"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 19"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 20"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 21"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 22"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 23"ASC"$sinatra_hero_categories);
      echo 
      herorow($postsperrow$postsperrow 24"ASC"$sinatra_hero_categories);




      ?>

    • Adding A Default Featured Image Or Thumbnail In Wordpress (176 words) On this site, any post without a featured image specifically set (such as this one) displays the default floral 'K' insignia anywhere on the site where a thumbnail is displayed. I looked around the web and none of the solutions I found worked. I eventually figured out that adding the following to my theme's functions.php file did the trick:

      /**

      * Default post thumbnail image.

      *

      */

      function mk_filter_thumbnail_id( $thumbnail_id, $post = null ) {

      if ( ! $thumbnail_id ) {

      $thumbnail_id = 289; //id of default featured image

      }

          return $thumbnail_id;

      }

      if (! is_admin() ) { //don't do this on admin pages, it sometimes overwrites thumbnails in the back-end view of the media library

      add_filter( 'post_thumbnail_id', 'mk_filter_thumbnail_id', 20, 5 );

      }

      By the way, I still haven't grasped what the third and fourth parameters of add_filter() do... I copied them out of a Stack Overflow answer and they worked. Wordpress's whole "filter" functionality is an odd way of calling functions, although I suppose it's a practical if roundabout way of hooking into existing functions to add your own code modifications.

    • Optimization-A-Go-Go: Wordpress Shortcode & Function Performance Optimization with Transients (1236 words) I suffer from that form of laziness peculiar to computer geeks where I will spend 4 hours on something to save me 15 minutes of work. As such, the menus on this site are dynamically generated by traversing the category tree in PHP and laying out menus and submenus from categories and subcategories, sparing me the trouble of updating them manually as I add new content. This took some effort.

      I created a shortcode that does this (well, modified a shortcode, originally from the Hierarchical HTML Sitemap plugin, by Alexandra Vovk & WP Puzzle) and soon my site was happily generating dynamic menus on the fly and keeping up with my work as I added pages, edited titles, and rearranged categories.

      And, along the way, getting slower.

      And slower. And slower.

      Finally the other night, due to a confluence of circumstance, it took me over a minute to load the front page. "This," I said, "has got to go."

      Fortunately Wordpress includes something called "transients", which allow you to quickly store and retrieve temporary values. I figured, the shortcode that generates the menus—as well as a number of others, such as the Recent Kwits section that appears in the sidebar of internal site pages—really don't change that often. The menus in particular are very calculation intensive... in addition to traversing the category tree and listing the pages, they calculate the number of words on each page (you did notice that mousing over a menu item shows you how many words the page is, didn't you?) which means not just loading and counting the page, but expanding every shortcode in the page body, to count the words they generate too. It's a lot. It certainly doesn't all need to be recalculated on the fly every single time any page loads. So, I thought, if I could keep track of when the last content update was that actually required them to be updated (such as changes to a page, post, category, or tag), I could otherwise store the value in a transient. Transients are not reliable, they can get wiped out occasionally, but considering that the worst that that can cause is having to recalculate them one time, it's not a huge worry. (As a bonus, for you serious wordpress geeks, if you have an object cache installed, transients are stored in memory, rather than in the database, for even better performance.)

      Long story short, that's what I did. I used the Query Monitor plugin to time my page loads, and with various optimizations to the server I run this site on, I had gotten the time "time to first byte"—the delay for the server to calculate everything before it could start serving the front page to the browser—down to about 4-5 seconds.

      After the below optimizations, time to first byte immediately dropped to a little over a second.

      And there was much rejoicing.

      It works like this. I've got a plugin I wrote, imaginatively called "MK Custom Plugins", which contains all my custom plugins. At the top of that file is this:

      /*
      

      * Plugin Name: MK Custom Shortcodes

      * Plugin URI: https://michaelkupietz.com/plugins/the-basics/

      * Description: My custom shortcodes.

      * Version: 1

      * Requires at least: 5.2

      * Requires PHP: 7.2

      * Author: Michael Kupietz

      * Author URI: https://michaelkupietz.com/

      * License: GPL v2 or later

      * License URI: https://www.gnu.org/licenses/gpl-2.0.html

      * Update URI: https://michaelkupietz.com/my-plugin/

      * Text Domain: mk-plugin

      * Domain Path: /languages

      */

      // first, some useful functions

      add_action( 'save_post', 'setLastUpdateTimestamp' );

      add_action( 'create_category', 'setLastUpdateTimestamp' );

      add_action( 'edited_category', 'setLastUpdateTimestamp' );

      add_action( 'delete_category', 'setLastUpdateTimestamp' );

      add_action( 'create_post_tag', 'setLastUpdateTimestamp', 10, 2 );

      add_action( 'edited_terms', 'setLastUpdateTimestamp', 10, 2 );

      add_action( 'delete_term', 'setLastUpdateTimestamp', 10, 3 );

      add_action( 'trash_post', 'setLastUpdateTimestamp' );

      function setLastUpdateTimestamp() {

      if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {

      return;

      }

      // If this is a revision, don't do anything.

      if ( wp_is_post_revision( $post_id ) ) {

      return;

      }

      set_transient( 'mkFuncTransient_LastUpdateCheck',microtime(true),2592000);

      }

      function latestPostUpdate() {

      $theDate = get_transient( 'mkFuncTransient_LastUpdate_all');

      if ( ! (isset($theDate) && $theDate > 0)) {

      $theDate=microtime(true);

      set_transient( 'mkFuncTransient_LastUpdate_all',$theDate,2592000); //dont expire for 1 month }

      }

      return $theDate;

      }

      function getFunctionTransient ($functionName,$arguments=[]) {

      //call with: $transientData = getFunctionTransient(__FUNCTION__,$arguments); if ( $transientData != null) {return $transientData;}

      //the $arguments term in the call is optional. It's only for functions that return different values based on their arguments, so you can cache and retrieve the values of different calls with different arguments.

      $data = get_transient( 'mkFuncTransient'.$functionName . hash( 'sha512',json_encode( $arguments ) ) ); //per https://daext.com/blog/improve-the-shortcode-performance-with-the-wordpress-transients-api/

      $lastUpdate = get_transient( 'mkFuncTransient_LastUpdate' . $functionName . hash( 'sha512', json_encode( $arguments ) ) );

      $lastPostUpdate = latestPostUpdate();

      if ( $data !== false and $lastUpdate < $lastPostUpdate ) {

      return $data;

      } else {

      return null;

      }

      }

      function setFunctionTransient ($functionName, $value = null, $arguments=[]) {

      //call this right before returning value of function with as: setFunctionTransient(__FUNCTION__,$returnValue,$arguments);

      //you can leave out returnvalue, or set it to null, to delete the transient.

      //the $arguments term in the call is optional. It's only for functions that return different values based on their arguments, so you can cache and retrieve the values of different calls with different arguments.

      if ( $value === null) {

      delete_transient( 'mkFuncTransient'.$functionName . hash( 'sha512',json_encode( $arguments ) ) );

      delete_transient( 'mkFuncTransient_LastUpdate' . $functionName . hash( 'sha512', json_encode( $arguments ) ));

      return $value;

      } else {

      set_transient( 'mkFuncTransient'.$functionName . hash( 'sha512',json_encode( $arguments ) ) , $value , 2592000); //dont expire for 1 month

      set_transient( 'mkFuncTransient_LastUpdate' . $functionName . hash( 'sha512', json_encode( $arguments ) ), latestPostUpdate(), 2592000 );

      return $value;

      }

      }

      [ ... the rest of my shortcode routines follow here ... ]

      OK! Clear as mud, right? Here's all you need to know. I have a menu generation shortcode that originally looked something like this:

      function hierarchicalsitemap_shortcode_htmlmap($atts, $content = null) {
      

      .... a bunch of fancy PHP to generate the menu HTML from the categories goes here ....

      $out = [result of above code];

      return $out;

      }

      add_shortcode("htmlmap", "hierarchicalsitemap_shortcode_htmlmap" );

      So, once I had written the functions to handle transients, the only changes I had to make were to add three lines to the existing function, two right at the beginning and one before the "return" statement:

      function hierarchicalsitemap_shortcode_htmlmap($atts, $content = null) {
      

      $origAtts=array($atts,$content);

      $data = getFunctionTransient(__FUNCTION__, $origAtts); if ( $data != null) {return $data;}

      .... a bunch of fancy PHP to generate the menu HTML from the categories goes here ....

      setFunctionTransient(__FUNCTION__, $out, $origAtts);

      return $out;

      }

      And that's it. 75% faster load time, just like that.

      If you inspect this page code, before the first menu up top is an invisible <LI> for reasons I can't recall off the top of my head right this moment, but if you look at it, you will see output from the shortcode transient caching function.

      If this is the very first page load since I made a site update, that LI will look something like this:

      But if the menus have loaded at least once since my last update, you'll see this:

      and the page will have loaded in about a quarter of the time.

      If you're the sort of geek who likes this kind of stuff, come on over, we'll have a beer and I'll update the site in front of you and let you see this live. Wait, no, we should meet out in a coffee shop or something, my place is a mess.

      Obviously I could get much fancier with this. No doubt recreational programmers will immediately see further optimizations.

      I'm going to get this cleaned up, better documented, and posted to my github so it's easier to understand. For, you know, some people.

    • Video Killed The Pagespeed Score: Non-render-blocking YouTube embeds in Wordpress (488 words) On this site's Music Reviews page (itself built on-the-fly by a shortcode that sorts and displays posts from a "Music Review" custom post type), most of the reviews are accompanied by YouTube video embeds from the album in question.

      What I didn't realize in setting that up is that YouTube embeds use <iframe> tags to embed videos, and <iframe> tags block page rendering—the page's onload property, which signals that the page is fully ready to display to the viewer and to remove the spinning "page loader" image I use on this site as pages load—does not fire until every iframe on the page has fully loaded its contents. This caused that page, which currently only has a handful of videos on it, to load very slowly. What's worse, this site's custom menus parse all page contents every time the site is updated to display for word counts, meaning including that page in the menus drastically slowed down the first load of any page of the site after I update anything as the menus are rebuilt.

      So I hit upon an elegant solution. I created a shortcode as follows: [ytembed url="http://youtube.com/embedurlhere?blahblahblah"] with optional additional parameters "width" and "float" to set the css width and float properties.

      This shortcode creates a <div class="mk_YTembedDiv" data-url="http://youtube.com/embedurlhere?blahblahblah"> with the specified CSS properties. Then a script queued up in wordpress's page footers runs after the javascript event window.onload has fired to indicate the page has fully loaded.  That script checks if the page has any <div class="mk_YTembedDiv"> tag on it. If so, it scans the page to build a list of all of them, and grabbing the data-url attribute from each one, inserts an <iframe> tag into it with the proper attributes to display the video with that embed url.

      Therefore, the embedded <iframe> tags to show the videos are only added to the page, and begin loading, after the page has been built and displayed to the user. It does mean there can be a delay after the user starts interacting with the page before the videos appear, but I assume people will read a reviews before wanting to watch the video at the bottom of it, so I don't think this is a problem. And it's still much less inconvenient than the page not displaying at all until every video has loaded.

      The code that makes the magic happen resides in a custom plugin I wrote to hold all my shortcodes, and here's the README, code, and license, from my github repo at https://github.com/kupietools/wordpress-non-render-blocking-youtube-embed/:

      README.md

      ytembed_shortcode.php

      License