Labels

HTML and CSS codes for your Blogger/site Part Five

Part Four HTML and CSS codes for your Blogger however most can be implemented on other sites.

First, back up your template. Make sure you have the following code just above your theme HTML </body> don't worry if you have to place another code just above </body> after.

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>

Click the dropdown menu to go to the part of the page you need. Can't find what you're looking for? Click here to see all of the coding you can try.

Skip to the part you need:

Add an External Link Icon to Article Links (CSS)

I found this information at Christianoliff

This CSS automatically adds a small external link icon after every external link inside your article. It works by targeting links that begin with http:// or https:// and appending an SVG icon using the ::after pseudo-element.

article a[href^="http"]::after,

article a[href^="https://"]::after

{ content: "";

width: 11px;

height: 11px;

margin-left: 4px;

background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");

background-position: center;

background-repeat: no-repeat;

background-size: contain;

display: inline-block;

}

Exclude Your Own Blogger Links

To stop the icon appearing on links that point to your own Blogger site, add the following CSS underneath the first snippet and replace example.com with your own domain.

article a[href^="https://example.com"]::after

{

display: none !important;

}

This ensures only genuine external links display the icon, while links to your own website remain unchanged.

You can view my live demo if you want to ๐Ÿ˜

Last updated for your Blog

For last updated time stamp for when you edit anything on your blog, simply add this wherever you like, either in your gadgets HTML or post/pages html.

<style>

#last-updated-box{

background:#fff;

border:2px solid #888;

border-radius:10px;

box-shadow:0 3px 10px rgba(0,0,0,.08);

padding:10px 14px;

width:140px;

text-align:center;

font-family:Georgia,serif;

transition:.3s;

}

#last-updated-box:hover{

transform:translateY(-3px);

box-shadow:0 6px 14px rgba(0,0,0,.12);

}

#last-updated{

font-weight:bold;

font-size:15px;

color:#000;

margin-bottom:6px;

}

#demo{

font-size:14px;

color:#333;

}

</style>

<div id="last-updated-box">

<p id="last-updated">Last Updated Blog</p>

<p id="demo"></p>

</div>

<script>

document.getElementById("demo").textContent = document.lastModified;

</script>

You can view my Live Demo if you like ๐Ÿ˜˜ 

    

 

How to Add CSS Inside HTML Using <style>

The <style> tag lets you write CSS directly inside an HTML document. Any CSS placed between <style> and </style> will automatically style the HTML elements on that page, making it a quick and easy way to customise your website without creating a separate CSS file.

<style> h1{ color:purple; } p{ font-size:18px; } </style>

Tip: Place the <style> section near the top of your HTML (inside the <head> if possible) so the styles load before the page is displayed.

Resume + save spot tutorial for Blogger

Add a convenient Save Spot and Resume tool to your Blogger website. Readers can save their place in an article and return to it later, even across multi-page posts. The panel automatically collapses into a small side arrow to keep the screen uncluttered.

Installation

Open Theme → Edit HTML, then paste the complete code just above the closing </body> tag and save your theme. The tool will then appear automatically on every page of your blog.

<script type='text/javascript'>//<![CDATA[
(function(){var d=document,w=window,LS=localStorage,SEEN='bm:ui:seen',RM=(w.matchMedia&&w.matchMedia('(prefers-reduced-motion: reduce)').matches),AUTO_MS=2600;var css='.bookmark-widget{position:fixed;right:0;top:50%;transform:translateY(-50%);z-index:9999;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}'+'.bm-drawer{position:relative}'+'.bm-panel{display:flex;flex-direction:column;gap:6px;align-items:center;padding:0 6px 0 10px;transform:translateX(0);transition:transform .28s cubic-bezier(.4,0,.2,1)}'+'.bm-btn{background:#fff;border:1px solid #ccc;border-radius:10px;padding:8px 10px;cursor:pointer;box-shadow:0 2px 6px rgba(0,0,0,.15);font-size:13px;min-width:88px;text-align:center;color:#222}'+'.bm-btn:hover{background:#f2f2f2}'+'.bm-tab{position:fixed;right:0;top:50%;transform:translateY(-50%);width:34px;height:44px;border:1px solid #ccc;border-right:0;border-radius:12px 0 0 12px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.15);display:none;align-items:center;justify-content:center;cursor:pointer;font-size:18px;color:#222;z-index:10000}'+'.bookmark-widget.is-collapsed .bm-panel{transform:translateX(calc(100% + 12px))}'+'.bookmark-widget.is-collapsed + .bm-tab{display:flex}'+'.bm-toast{position:fixed;left:50%;bottom:56px;transform:translateX(-50%);background:#111;color:#fff;padding:10px 14px;border-radius:10px;font-size:14px;opacity:0;transition:opacity .25s;z-index:10001;max-width:92%;text-align:center}'+'.bm-toast.show{opacity:1}';var st=d.createElement('style');st.appendChild(d.createTextNode(css));d.head.appendChild(st);var box=d.createElement('div');box.className='bookmark-widget';var panel=d.createElement('div');panel.className='bm-panel';var save=d.createElement('button');save.className='bm-btn';save.id='bm-save';save.type='button';save.textContent='⭐ Save Spot';var go=d.createElement('button');go.className='bm-btn';go.id='bm-go';go.type='button';go.textContent='⤴️ Resume';panel.appendChild(save);panel.appendChild(go);box.appendChild(panel);d.body.appendChild(box);var tab=d.createElement('button');tab.className='bm-tab';tab.type='button';tab.setAttribute('aria-label','Open Save/Resume');tab.textContent='‹';d.body.appendChild(tab);var toast=d.createElement('div');toast.className='bm-toast';d.body.appendChild(toast);function show(msg){toast.textContent=msg;toast.classList.add('show');setTimeout(function(){toast.classList.remove('show')},2200)}function isCollapsed(){return box.classList.contains('is-collapsed')}function collapse(){box.classList.add('is-collapsed');tab.textContent='‹'}function expand(){box.classList.remove('is-collapsed')}function markSeen(){try{LS.setItem(SEEN,'1')}catch(e){}}tab.onclick=function(e){e.preventDefault();markSeen();expand()};function normalizeSearch(s){if(!s)return'';var parts=s.replace(/^\?/,'').split('&'),kept=[],i;for(i=0;i<parts.length;i++){if(parts[i]&&parts[i].split('=')[0]!=='m'){kept.push(parts[i])}}return kept.length?('?'+kept.join('&')):''}function cleaned(u){try{var a=d.createElement('a');a.href=u;return a.protocol+'//'+a.host+a.pathname+normalizeSearch(a.search)}catch(e){return u.replace(/[?&]m=\d+/,'')}}function storyBase(u){try{var a=d.createElement('a');a.href=u;return a.protocol+'//'+a.host+a.pathname}catch(e){return u.split('?')[0]}}function pageFrom(u){var m=/(?:[?&])atpage=(\d+)/.exec(u);return m?m[1]:'1'}function storyKeyFor(u){return'bookmark:last:'+storyBase(u)}var THIS_URL=cleaned(location.href),THIS_STORY_KEY=storyKeyFor(THIS_URL);save.onclick=function(){markSeen();var pos=Math.round(w.pageYOffset||d.documentElement.scrollTop||0);var rec={url:THIS_URL,y:pos,ts:Date.now(),title:d.title};try{LS.setItem(THIS_STORY_KEY,JSON.stringify(rec));LS.setItem('bookmark:site:last',JSON.stringify(rec));show('Bookmark saved');collapse()}catch(e){show('Could not save')}};var armed=null,armTimer=null;function fetchRec(key){var raw=LS.getItem(key);if(!raw)return null;try{var o=JSON.parse(raw);if(!o||!o.url)return null;o.url=cleaned(o.url);return o}catch(e){return null}}function resumeHereOrJump(rec){if(!rec)return false;markSeen();collapse();if(cleaned(location.href)===rec.url){w.scrollTo(0,rec.y||0);show('Resumed your last position');return true}else{show('Jumping to your saved page...');setTimeout(function(){location.href=rec.url+'#bmresume'},300);return true}}go.onclick=function(){markSeen();var rec=fetchRec(THIS_STORY_KEY);if(rec){resumeHereOrJump(rec);return}var siteLast=fetchRec('bookmark:site:last');if(!siteLast){show('No bookmark yet');return}if(storyBase(siteLast.url)!==storyBase(THIS_URL)){var t='You last saved on a different story (Page '+pageFrom(siteLast.url)+'). Press Resume again to go there.';if(armed&&armed===siteLast.url){resumeHereOrJump(siteLast);return}armed=siteLast.url;show(t);if(armTimer)clearTimeout(armTimer);armTimer=setTimeout(function(){armed=null},5000);return}resumeHereOrJump(siteLast)};if(location.hash==='#bmresume'){var recA=fetchRec(THIS_STORY_KEY)||fetchRec('bookmark:site:last');if(recA){try{w.scrollTo(0,recA.y||0)}catch(e){}}try{history.replaceState(null,null,location.href.replace('#bmresume',''))}catch(e){}}(function(){var last=0;w.addEventListener('scroll',function(){var now=Date.now();if(now-last<2500)return;last=now;try{var y=Math.round(w.pageYOffset||d.documentElement.scrollTop||0);LS.setItem(THIS_STORY_KEY+':auto',JSON.stringify({url:THIS_URL,y:y,ts:now}))}catch(e){}},{passive:true})})();var seen=false;try{seen=!!LS.getItem(SEEN)}catch(e){}if(seen){collapse()}else{expand();if(!RM){setTimeout(function(){markSeen();collapse()},AUTO_MS)}else{setTimeout(function(){markSeen();collapse()},AUTO_MS)}}d.addEventListener('pointerdown',function(e){if(isCollapsed())return;if(box.contains(e.target))return;collapse()},{passive:true});})();
//]]></script>
You can view my demo right here, the arrow on the right ๐Ÿ‘Œ


Add a You might like section to the end of every Blogger post. The script automatically finds posts with the same label and displays up to four related articles with their thumbnail, title, and publication date.

Installation

Open Theme → Edit HTML, then paste the complete script just above the closing </body> tag and save your theme.

The related posts box will automatically appear near the end of each blog post and will not display on your homepage, label pages, search results, or static pages.
<script>(function(){function R(){var d=document,w=window,ID=&quot;vsRelatedPosts&quot;,p=location.pathname||&quot;/&quot;;if(d.getElementById(ID))return;if(p===&quot;/&quot;||/\/search\//.test(p)||/\/p\//.test(p)||!/\/\d{4}\//.test(p)||!/\.html$/.test(p))return;function Q(s){return d.querySelector(s)}function QA(s){return Array.prototype.slice.call(d.querySelectorAll(s))}function ENC(s){return encodeURIComponent(s)}function canon(){var c=Q(&#39;link[rel=&quot;canonical&quot;]&#39;);return (c&amp;&amp;c.href?c.href:location.href).split(&quot;#&quot;)[0]}function insertPoint(){return Q(&quot;#comments&quot;)||Q(&quot;.comments&quot;)||Q(&quot;.comments-area&quot;)||Q(&quot;div#comment-editor&quot;)||Q(&quot;div.comments-content&quot;)||Q(&quot;div#commentsHolder&quot;)||Q(&quot;.post-footer&quot;)||Q(&quot;.post-body&quot;)||Q(&quot;article&quot;)||Q(&quot;.post&quot;)||d.body}function addCSS(){var css=&quot;#&quot;+ID+&quot;{margin:18px 0;padding:14px;border:1px solid rgba(0,0,0,.10);border-radius:16px;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.06)}#&quot;+ID+&quot; .vsrel-title{font-weight:700;margin:0 0 10px}#&quot;+ID+&quot; .vsrel-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}#&quot;+ID+&quot; a.vsrel-card{display:block;text-decoration:none;color:inherit;border:1px solid rgba(0,0,0,.08);border-radius:14px;overflow:hidden;background:#fff}#&quot;+ID+&quot; .vsrel-thumb{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;background:#f3f3f3}#&quot;+ID+&quot; .vsrel-ph{width:100%;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;background:#f3f3f3;font-size:28px;line-height:1}#&quot;+ID+&quot; .vsrel-pad{padding:10px}#&quot;+ID+&quot; .vsrel-h{font-weight:700;line-height:1.25}#&quot;+ID+&quot; .vsrel-m{opacity:.75;font-size:13px;margin-top:4px}#&quot;+ID+&quot; .vsrel-empty{opacity:.8}&quot;;var st=d.createElement(&quot;style&quot;);st.textContent=css;d.head.appendChild(st)}function makeWrap(){var el=d.createElement(&quot;div&quot;);el.id=ID;el.innerHTML=&quot;\x3Cdiv class=&#39;vsrel-title&#39;\x3ELoading&#8230;\x3C/div\x3E\x3Cdiv class=&#39;vsrel-grid&#39;\x3E\x3C/div\x3E&quot;;return el}function upImg(u){try{return String(u).replace(/\/s\d+(-c)?\//,&quot;/s800/&quot;).replace(/=s\d+(-c)?/,&quot;=s800&quot;)}catch(_){return u}}function firstImg(html){try{var re=new RegExp(&quot;\x3Cimg[^\x3E]+src=[\\\&quot;&#39;]([^\\\&quot;&#39;]+)[\\\&quot;&#39;]&quot;,&quot;i&quot;);var m=String(html||&quot;&quot;).match(re);return m&amp;&amp;m[1]?m[1]:&quot;&quot;}catch(_){return &quot;&quot;}}function getImg(e){try{var m=e.media$thumbnail&amp;&amp;e.media$thumbnail.url;if(m)return upImg(m)}catch(_){ }try{var c=e.content&amp;&amp;e.content.$t||&quot;&quot;;var u=firstImg(c);if(u)return upImg(u)}catch(_2){}return &quot;&quot;}function getTitle(e){return (e.title&amp;&amp;e.title.$t)||&quot;Untitled&quot;}function getLink(e){var ls=e.link||[];for(var i=0;i!=ls.length;i++)if(ls[i].rel===&quot;alternate&quot;)return ls[i].href;return &quot;&quot;}function getDate(e){try{var pp=e.published&amp;&amp;e.published.$t;return pp?new Date(pp).toLocaleDateString(void 0,{year:&quot;numeric&quot;,month:&quot;short&quot;,day:&quot;numeric&quot;}):&quot;&quot;}catch(_){return &quot;&quot;}}function shuffle(a){for(var i=a.length-1;i&gt;0;i--){var j=(Math.random()*(i+1))|0,t=a[i];a[i]=a[j];a[j]=t}return a}function keyFor(lbl){return &quot;vsRelSeen_&quot;+String(lbl||&quot;&quot;).toLowerCase()}function readSeen(lbl){try{var v=localStorage.getItem(keyFor(lbl));return v?JSON.parse(v):[]}catch(_){return []}}function writeSeen(lbl,a){try{localStorage.setItem(keyFor(lbl),JSON.stringify(a.slice(0,40)))}catch(_){}}function pickGoodLabel(list){if(!list||!list.length)return &quot;&quot;;for(var i=0;i!=list.length;i++){var t=String(list[i]||&quot;&quot;).trim();if(!t)continue;if(/^uncategorized$/i.test(t))continue;return t}return String(list[0]||&quot;&quot;).trim()}function labelsFromEntry(e){var cats=e&amp;&amp;e.category?e.category:[],out=[];for(var i=0;i!=cats.length;i++){var t=cats[i]&amp;&amp;cats[i].term?String(cats[i].term).trim():&quot;&quot;;if(t)out.push(t)}return out}function jsonp(url,cb){var name=&quot;vsRelCb&quot;+Math.random().toString(36).slice(2),s=d.createElement(&quot;script&quot;);w[name]=function(data){try{cb(null,data)}finally{try{delete w[name]}catch(_){w[name]=void 0}if(s&amp;&amp;s.parentNode)s.parentNode.removeChild(s)}};s.src=url+(url.indexOf(&quot;?&quot;)&gt;-1?&quot;&amp;&quot;:&quot;?&quot;)+&quot;callback=&quot;+name;s.onerror=function(){try{delete w[name]}catch(_){w[name]=void 0}if(s&amp;&amp;s.parentNode)s.parentNode.removeChild(s);cb(new Error(&quot;jsonp&quot;))};d.head.appendChild(s)}function findPostId(){var ifs=QA(&quot;iframe[src*=&#39;postID=&#39;],iframe[src*=&#39;postId=&#39;]&quot;);for(var i=0;i!=ifs.length;i++){var src=ifs[i].getAttribute(&quot;src&quot;)||&quot;&quot;;var m=src.match(/(?:postID|postId)=(\d+)/);if(m&amp;&amp;m[1])return m[1]}var a=QA(&quot;a[href*=&#39;postID=&#39;],a[href*=&#39;postId=&#39;]&quot;);for(var j=0;j!=a.length;j++){var h=a[j].getAttribute(&quot;href&quot;)||&quot;&quot;;var m2=h.match(/(?:postID|postId)=(\d+)/);if(m2&amp;&amp;m2[1])return m2[1]}var html=d.documentElement.innerHTML||&quot;&quot;;var m3=html.match(/(?:postID|postId)[\&quot;&#39;\s:=]+(\d{6,})/);return m3&amp;&amp;m3[1]?m3[1]:&quot;&quot;}function labelFromHiddenLinks(){var scope=Q(&quot;article&quot;)||Q(&quot;.post&quot;)||d;var as=Array.prototype.slice.call(scope.querySelectorAll(&quot;a[href*=&#39;/search/label/&#39;]&quot;));for(var i=0;i!=as.length;i++){var h=(as[i].getAttribute(&quot;href&quot;)||&quot;&quot;),idx=h.indexOf(&quot;/search/label/&quot;);if(idx&lt;0)continue;var tail=h.slice(idx+13).split(&quot;?&quot;)[0].split(&quot;#&quot;)[0];if(!tail)continue;try{tail=decodeURIComponent(tail.replace(/\+/g,&quot; &quot;))}catch(_){ }tail=String(tail).trim();if(tail&amp;&amp;!/^uncategorized$/i.test(tail))return tail}return &quot;&quot;}function labelFromMeta(){var m=Q(&#39;meta[property=&quot;article:tag&quot;]&#39;);if(m&amp;&amp;m.content)return String(m.content).trim();var k=Q(&#39;meta[name=&quot;keywords&quot;]&#39;);if(k&amp;&amp;k.content){var p=String(k.content).split(&quot;,&quot;).map(function(s){return s.trim()}).filter(Boolean);if(p.length)return p[0]}return &quot;&quot;}function labelFromJSONLD(){var j=QA(&#39;script[type=&quot;application/ld+json&quot;]&#39;);for(var i=0;i!=j.length;i++){try{var o=JSON.parse(j[i].textContent||&quot;{}&quot;),cand=[o].concat(o&amp;&amp;o[&quot;@graph&quot;]?o[&quot;@graph&quot;]:[]);for(var k=0;k!=cand.length;k++){var x=cand[k]||{},t=x[&quot;@type&quot;];if(t&amp;&amp;String(t).toLowerCase().indexOf(&quot;blogposting&quot;)&gt;-1){var kw=x.keywords||x.articleSection||&quot;&quot;;if(kw){if(Array.isArray(kw))return String(kw[0]||&quot;&quot;).trim();var p=String(kw).split(&quot;,&quot;).map(function(s){return s.trim()}).filter(Boolean);return p[0]||&quot;&quot;}}}}catch(_){}}return &quot;&quot;}function loadByLabel(label,wrap){var grid=wrap.querySelector(&quot;.vsrel-grid&quot;),title=wrap.querySelector(&quot;.vsrel-title&quot;);title.textContent=&quot;You might like&quot;;w.fetch(location.origin+&quot;/feeds/posts/default/-/&quot;+ENC(label)+&quot;?alt=json&amp;max-results=60&quot;).then(function(r){return r.json()}).then(function(j){var entries=(j&amp;&amp;j.feed&amp;&amp;j.feed.entry)||[],here=canon(),items=[];for(var i=0;i!=entries.length;i++){var e=entries[i],u=getLink(e);if(!u)continue;u=u.split(&quot;#&quot;)[0];if(u===here)continue;items.push({url:u,title:getTitle(e),img:getImg(e),date:getDate(e)})}if(!items.length){grid.innerHTML=&quot;\x3Cdiv class=&#39;vsrel-empty&#39;\x3ENo posts found.\x3C/div\x3E&quot;;return}shuffle(items);var seen=readSeen(label),seenSet={};for(var s=0;s!=seen.length;s++)seenSet[seen[s]]=1;var pick=[],used=[],k=0;for(k=0;k!=items.length&amp;&amp;pick.length&lt;4;k++)if(!seenSet[items[k].url]){pick.push(items[k]);used.push(items[k].url)}for(k=0;k!=items.length&amp;&amp;pick.length&lt;4;k++)if(used.indexOf(items[k].url)===-1){pick.push(items[k]);used.push(items[k].url)}writeSeen(label,used.concat(seen));var html=&quot;&quot;;for(var p=0;p!=pick.length;p++){var it=pick[p];html+=&quot;\x3Ca class=&#39;vsrel-card&#39; href=&#39;&quot;+it.url+&quot;&#39;\x3E&quot;+(it.img?&quot;\x3Cimg class=&#39;vsrel-thumb&#39; loading=&#39;lazy&#39; src=&#39;&quot;+it.img+&quot;&#39; alt=&#39;&#39;\x3E&quot;:&quot;\x3Cdiv class=&#39;vsrel-ph&#39; aria-hidden=&#39;true&#39;\x3E&#10048;\x3C/div\x3E&quot;)+&quot;\x3Cdiv class=&#39;vsrel-pad&#39;\x3E\x3Cdiv class=&#39;vsrel-h&#39;\x3E&quot;+it.title+&quot;\x3C/div\x3E&quot;+(it.date?&quot;\x3Cdiv class=&#39;vsrel-m&#39;\x3E&quot;+it.date+&quot;\x3C/div\x3E&quot;:&quot;&quot;)+&quot;\x3C/div\x3E\x3C/a\x3E&quot;}grid.innerHTML=html}).catch(function(){wrap.querySelector(&quot;.vsrel-title&quot;).textContent=&quot;You might like&quot;;wrap.querySelector(&quot;.vsrel-grid&quot;).innerHTML=&quot;\x3Cdiv class=&#39;vsrel-empty&#39;\x3ECouldn&#8217;t load posts.\x3C/div\x3E&quot;})}function doneNoLabel(wrap){wrap.querySelector(&quot;.vsrel-title&quot;).textContent=&quot;You might like&quot;;wrap.querySelector(&quot;.vsrel-grid&quot;).innerHTML=&quot;\x3Cdiv class=&#39;vsrel-empty&#39;\x3ECouldn&#8217;t detect a label for this post.\x3C/div\x3E&quot;}addCSS();var ins=insertPoint(),wrap=makeWrap();if(ins&amp;&amp;ins.parentNode&amp;&amp;(ins.id===&quot;comments&quot;||String(ins.className||&quot;&quot;).toLowerCase().indexOf(&quot;comment&quot;)&gt;-1))ins.parentNode.insertBefore(wrap,ins);else if(ins&amp;&amp;ins.appendChild)ins.appendChild(wrap);else d.body.appendChild(wrap);var pid=findPostId();if(pid){jsonp(location.origin+&quot;/feeds/posts/default/&quot;+pid+&quot;?alt=json-in-script&quot;,function(err,data){if(err){doneNoLabel(wrap);return}var e=data&amp;&amp;data.entry?data.entry:(data&amp;&amp;data.feed&amp;&amp;data.feed.entry&amp;&amp;data.feed.entry[0]);var label=pickGoodLabel(labelsFromEntry(e));if(label)loadByLabel(label,wrap);else doneNoLabel(wrap)})}else{var label=labelFromHiddenLinks()||labelFromMeta()||labelFromJSONLD();if(label)loadByLabel(label,wrap);else doneNoLabel(wrap)}}if(document.readyState===&quot;loading&quot;)document.addEventListener(&quot;DOMContentLoaded&quot;,R);else R()})();</script>
You can view this set up at the end of this article ๐Ÿ–ค

You can view this page's comments below ๐Ÿฉท 

Don't forget to save your edits!

I do hope you've found something useful on this page. Leave me a comment below if something isn't working right! Thank you.

Comments

  1. I'd love feedback about this Blog's coding series. Feel free to leave me some!

    ReplyDelete

Post a Comment

Please be polite ~ Ventsharm blogs

Back to top

Back to top