اضافات بلوجر: إظهار المشاركات الحديثة لزيادة عدد المشاهدات

اضافات بلوجر: إظهار المشاركات الحديثة لزيادة عدد المشاهدات

اضافة بلوجر لإظهار المشاركات الحديثة أو الجديدة، هي من الاضافات التي يتم استعمالها لجعل الزوار يقضون أطول مدة ممكنة في تصفح المحتوى، وذلك باقتراح آخر المواضيع التي تم نشرها حديثا.

العناصر المكونة للاضافة

 المميز في الأداة هو أنها تحتوي على مجموعة من العناصر وهي:
  1.  عنوان المشاركة
  2.  مقتطف من الموضوع
  3. رابط لقراءة المزيد
 وهو ما يشجع الزائر على النقر لقراءة المزيد من حتوى المدونة،  وبالتالي الاستمرار في تصفح المدونة.
إضافات بلوجر: إضافة المشاركات الحديثة
المشاركات الحديثة لمدونات بلوجر

اضافة المشاركات الحديثة على مدونتكم

لاضافة هذه الأداة على مدونتكم اتبعوا الخطوات التالية:

1 - من مواجهة بلوجر اختاروا التخطيط ثم اضافة أداة

2- اختاروا HTML/Javascript

3 -  أضيفوا الكود التالي داخل الأداة ثم حفظ.
<div class="recentpoststyle">
<script type="text/javascript">
function showlatestposts(json) {

for (var i = 0; i < posts_no; 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; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
posturl = entry.link[k].href;
break;
}
}
posttitle = posttitle.link(posturl);
var readmorelink = "المزيد...";
readmorelink = readmorelink.link(posturl);
var postdate = entry.published.$t;
var showyear = postdate.substring(0,4);
var showmonth = postdate.substring(5,7);
var showday = postdate.substring(8,10);
var monthnames = new Array();
monthnames[1] = "يناير";
monthnames[2] = "فبراير";
monthnames[3] = "مارس";
monthnames[4] = "أبريل";
monthnames[5] = "ماي";
monthnames[6] = "يونيو";
monthnames[7] = "يوليوز";
monthnames[8] = "غشت";
monthnames[9] = "سبتمبر";
monthnames[10] = "أكتوبر";
monthnames[11] = "نوفمبر";
monthnames[12] = "ديسمبر";
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, "");
document.write('<li class="recent-post-title">');
document.write(posttitle);
document.write('</li><div class="recent-post-summ">');
if (post_summary == true) {
if (postcontent.length < summary_chars) {
document.write(postcontent);
}
else {
postcontent = postcontent.substring(0, summary_chars);
var quoteEnd = postcontent.lastIndexOf(" ");
postcontent = postcontent.substring(0,quoteEnd);
document.write(postcontent + ' ' + readmorelink);
}
}
document.write('</div>');
if (posts_date == true) document.write('<div class="post-date">' + monthnames[parseInt(showmonth,10)] + ' ' + showday + ' ' + showyear + '</div>');
}
}
</script>
<script>
var posts_no = 5;var posts_date = true;var post_summary = true;var summary_chars = 80;</script>
<script src="/feeds/posts/default?orderby=published&amp;alt=json-in-script&amp;callback=showlatestposts">
</script><a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://folfoly.com">إضافات بلوجر</a>
<style type="text/css">
.recentpoststyle {counter-reset: countposts;list-style-type: none;}
.recentpoststyle a {text-decoration: none; color: #49A8D1;}
.recentpoststyle a:hover {color: #000;}

li.recent-post-title { padding: 5px 0px;}
.recent-post-title { font-family: Droid Arabic Kufi;}
.recent-post-title a {color: #6D0F0F;font-size: 13px; text-decoration: none; padding: 2px; font-weight: bold;}
.post-date {display: none;}
.recent-post-summ { color: #777; padding: 0px 5px 0px 20px; margin-left: 11px; font-family: Tahoma; Garamond,Baskerville,"Baskerville Old Face","Hoefler Text","Times New Roman",serif; font-size: 13px;}
</style></div>


المكان المناسب لإظهار اضافة المشاركات الجديدة

ربما تتوفر مدونتكم مسبقا على الكثير من اضافات بلوجر،  لكن يبقى افضل مكان يمكن اختياره لاظهار هذه الأداة هو  الجانب SideBar. ويجب كذلك اخفاءها على الصفحة الرئيسية واظهارها في المشاركات فقط لان الصفحة الرئيسية  تحتوي أصلا على
المشاركات التي يتم نشرها حديثا.

اخفاء اداة على الصفحة الرئيسية واظهارها على باقي المشاركات

الزائر القادم من مواقع البحث مثلا لمشاهدة أي موضوع ستساعد هذه الإضافة على جعله يكتشف مواضيع أخرى خاصة الجديدة منها. ويستمر في تصفح المدونة لأطول مدة ممكنة. هذا كل ما يتعلق باضافة المشاركات الحديثة الخاصة بمدونات بلوجر.