Últimas entradas por categorías con imagen en miniatura – Accident – coche

Algunas veces queremos tener todo muy organizado para que nuestros lectores puedan encontrar con mayor facilidad los temas de su interés, y es ahí cuando en lugar de poner un gadget con las últimas entradas queremos poner sí las últimas entradas pero por categorías, de manera que puedas mostrar las últimas entradas por cada etiqueta que quieras y además mostrar la miniatura de dicho elemento.




Para poner en tu blog estegadget de últimas entradas por categorías realizaremos estos sencillos pasos:
1.- Entra en Diseño | Edición de HTML y antes de /b:skin pega lo siguiente:
/* Últimas entradas por categorías
--------------------------------- */
img.label_thumb{
float:left;
border:1px solid #8f8f8f;/* Borde de las miniaturas */
margin-right:10px !important;
height:55px;/* Alto de las miniaturas */
width:55px;/* Ancho de las miniaturas */
}
.label_with_thumbs {
float: left;
width: 100%;
min-height: 70px;
margin: 0px 10px 2px 0px;
padding: 0;
}
ul.label_with_thumbs li {
padding:8px 0;
min-height:65px;
margin-bottom:10px;
}
.label_with_thumbs a {}
.label_with_thumbs strong {padding-left:0px;}
2.- Luego antes de /head pega este script:
script type='text/javascript'
//![CDATA[
function labelthumbs(json){document.write('ul class="label_with_thumbs"');for(var i=0;inumposts;i++){var entry=json.feed.entry[i];var posttitle=entry.title.$t;var posturl;if(i==json.feed.entry.length)break;for(var k=0;kentry.link.length;k++){if(entry.link[k].rel=='replies'&&entry.link[k].type=='text/html'){var commenttext=entry.link[k].title;var commenturl=entry.link[k].href;}
if(entry.link[k].rel=='alternate'){posturl=entry.link[k].href;break;}}var thumburl;try{thumburl=entry.media$thumbnail.url;}catch(error)
{s=entry.content.$t;a=s.indexOf("img");b=s.indexOf("src=\"",a);c=s.indexOf("\"",b+5);d=s.substr(b+5,c-b-5);if((a!=-1)&&(b!=-1)&&(c!=-1)&&(d!="")){thumburl=d;}else thumburl='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDxg-zcNwTajG2FGU0jQaqAYgQ8aFbl5QZrmiFTFfhAKwtHoZ1LekqWiQfTK7qZIOWC_IH3y1P9Ix39GifXRdLPPMtCcpf2ehFVNqqNJERbB77jkJ3iRv0PDBi8eVxBxlPRTJVuDl3GlQ/';}
var postdate=entry.published.$t;var cdyear=postdate.substring(0,4);var cdmonth=postdate.substring(5,7);var cdday=postdate.substring(8,10);var monthnames=new Array();monthnames[1]="Ene";monthnames[2]="Feb";monthnames[3]="Mar";monthnames[4]="Abr";monthnames[5]="May";monthnames[6]="Jun";monthnames[7]="Jul";monthnames[8]="Ago";monthnames[9]="Sep";monthnames[10]="Oct";monthnames[11]="Nov";monthnames[12]="Dic";document.write('li class="clearfix"');if(showpostthumbnails==true)
document.write('a href="'+posturl+'" target ="_top"img class="label_thumb" src="'+thumburl+'"//a');document.write('stronga href="'+posturl+'" target ="_top"'+posttitle+'/a/strongbr');if("content"in entry){var postcontent=entry.content.$t;}
else
if("summary"in entry){var postcontent=entry.summary.$t;}
else var postcontent="";var re=/\S[^]*/g;postcontent=postcontent.replace(re,"");if(showpostsummary==true){if(postcontent.lengthnumchars){document.write('');document.write(postcontent);document.write('');}
else{document.write('');postcontent=postcontent.substring(0,numchars);var quoteEnd=postcontent.lastIndexOf(" ");postcontent=postcontent.substring(0,quoteEnd);document.write(postcontent+'...');document.write('');}}
var towrite='';var flag=0;document.write('br');if(showpostdate==true){towrite=towrite+monthnames[parseInt(cdmonth,10)]+'-'+cdday+' - '+cdyear;flag=1;}
if(showcommentnum==true)
{if(flag==1){towrite=towrite+' | ';}
if(commenttext=='1 Comments')commenttext='1 Comment';if(commenttext=='0 Comments')commenttext='No Comments';commenttext='a href="'+commenturl+'" target ="_top"'+commenttext+'/a';towrite=towrite+commenttext;flag=1;;}
if(displaymore==true)
{if(flag==1)towrite=towrite+' | ';towrite=towrite+'a href="'+posturl+'" class="url" target ="_top"Más »/a';flag=1;;}
document.write(towrite);document.write('/li');if(displayseparator==true)
if(i!=(numposts-1))
document.write('');}document.write('/ul');}
//
/script

3.- Por último entra en Diseño | Elementos de la página | Añadir un gadget | HTML/Javascript y ahí pega esto:
script type='text/javascript'var numposts = 3;var showpostthumbnails = true;var displaymore = false;var displayseparator = true;var showcommentnum = false;var showpostdate = false;var showpostsummary = true;var numchars = 100;/script
script type="text/javascript" src="/feeds/posts/default/-/Nombre-de-la-etiqueta?published&alt=json-in-script&callback=labelthumbs"/script
En donde diceNombre-de-la-etiqueta va el nombre de la etiqueta que quieres mostrar, tal como es, respetando mayúsculas y minúsculas. En el caso que la etiqueta contenga espacios o acentos lo mejor es que ingreses a la etiqueta y te fijes en la URL que aparece en la barra de direcciones del navegador, al final de la URL vendrá el nombre de la etiqueta tal como debe ponerse, por ejemplo, si tuviera espacios se vería así:
http://Nombre-de-mi-blog.blogspot.com/search/label/Nombre%20etiqueta

También dentro de éste último código hay unas áreas que podemos personalizar,true significa que lo mostrará yfalse que no lo mostrará.
var numposts ←Número de entradas a mostrar
var showpostthumbnailsMostrar o no las miniaturas
var displaymoreMostrar o no el enlace para leer más
var displayseparatorMostrar o no un separador
var showcommentnumMostrar o no el número de comentarios
var showpostdateMostrar o no la fecha de las entradas
var showpostsummaryMostrar o no el resumen de las entradas
var numcharsNúmero de caracteres en los resúmenes

Y en el segundo código hay una URL en color naranja, esa es la imagen que se mostrará cuando la entrada no contenga ninguna imagen, puedes cambiarla por otra imagen si lo deseas.

Recuerda que el gadget muestra las ultimas entradas de una etiqueta en particular, por lo tanto, si quieres mostrar las últimas entradas de otras etiquetas entonces sólo tienes que repetir el paso #3 por cada categoría adicional que quieras agregar.

MESOTHELIOMA LAW FIRMDONATE CAR TO CHARITY CALIFORNIAHARDDRIVE DATA RECOVERY SERVICESDONATE A CAR IN MARYLAND DONATING A CAR IN MARYLAND,DONATE CARS ILLINOIS,CRIMINAL DEFENSE ATTORNEYS FLORIDA ,BEST CRIMINAL LAWYER IN ARIZONASTRUCTURED ANNUITY SETTLEMENT,ASBESTOS LAWYERS,NUNAVUT CULTURE,DAYTON FREIGHT LINES ,Bextra Bankruptcy Dental Plan Private JetAsi que mejor me fue a un hotel y motel FIFA World Cup Mundial Football New Orleans mesothelioma lawyer y mas que todo que la pase bien en ese hostal y me me fui de viaje a tennessee mesothelioma attorney donde EEUU me pidio la visa pero mejor aun many people in mesothelioma trial lawyers pero me fui a travel Alaska nebraska mesothelioma attorney pero mas aun con mesothelioma attorney nebraska mas siempre fue asi des hace mucho time merlin olsen lawsuit,Selling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

buy structured settlements bus accident attorneys structured settlement cash out DAYTON FREIGHT LINES Italian cooking school PhD in counseling education Car Accident Lawyers motorcycle lawyer los angeles DONATE A CAR IN MARYLAND Computer science classes online New social media platforms Service business software Royalty Free Images Stock mesothelioma information Business finance group life insurance quotes Php programmers for hire personal injury attorney ocala fl car accident lawyer san bernardino Social media platforms for business auto insurance cost by state annuity payment Seo companies Life insurance co Lincoln motorcycle accident lawyer california WordPress hosting Seo company domain name yahoo VIRTUAL DATA ROOMS houston tx auto insurance DUI lawyer CHEAP DOMAIN REGISTRATION HOSTING Online casino Business VOIP Solutions mesotheliama Social media examiner Best social media platforms for business Dwi lawyer Car insurance quotes pa Online Colleges Online Christmas cards structured annuity settlement injury lawyers buy gift card Hard drive data recovery services Cheap Domain Registration Hosting Proud Italian cook Cheap auto insurance in VA Donate old cars to charity ROYALTY FREE IMAGES STOCK illinois law lemon Best criminal lawyer in Arizona Donate Your Car for Kids Live casino ashely madis Casino Donate cars Illinois Make money online Australia Criminal Defense Attorneys Florida mesothelioma claims Donate your Car for Money Casino reviews Mobile casino Automobile Accident Attorney sell structured settlement calculator DONATE CARS IN MA mesothelioma ct Photo Christmas cards best accident attorneys attorney lawyer mesothelioma car insurance quotes Social media strategies Home phone internet bundle Asbestos Lung Cancer st louis mesothelioma attorney HOLLAND MICHIGAN COLLEGE Custom Christmas cards motor replacements mesothelioma settlements amounts MASSAGE SCHOOL DALLAS TEXAS BETTER CONFERENCING CALLS new york mesothelioma law firm peritoneal mesothelioma cheap auto insurance in va Hire php programmers Webex Costs WordPress theme designers Social media management Annuity Settlements car insurance quotes mn workers compensation lawyer los angeles Custom WordPress theme designer Social media tools Hire php developer injury lawyers west palm beach Dallas Mesothelioma Attorneys Auto Mobile Shipping Quote WordPress themes for designers Hire php developers illinois mesothelioma lawyer sell my structured settlement NEUSON mesothelioma attorney florida donating used cars to charity Criminal lawyer webex costs Criminal defense lawyer personal injury lawyer PHD on Counseling Education Bankruptcy lawyer CHEAP CAR INSURANCE IN VIRGINIA Php programmers PSYCHIC FOR FREE Low credit line credit cards donate car for tax credit

Share: