Posts

b:loop Tag - Blogger Tags References

Image
Loops allow access to the data contained in a table. In Blogger's XML editor , a loop is implemented using the tag <b:loop> . It provides access to the items of ARRAY . Loop Syntax: <b:loop values='ARRAY' var='VARIABLE_NAME'> <!-- Code to Be Executed Here --> </b:loop> Attributes used for b:loop tag Attributes Classification Prefix "expr:" Description Strictness values XML Blogger Expression authorized Table array to extract in the loop. The expected value can be an explicit value, a data item or a Blogger expression whose type is array To create an expression, use: Array operators Lambda operators (where/first) The Binary / Ternary Operator Mandatory var HTML classic authorized The expected value is any variable name that will contain the values of the items in the array. As an indication, in the gadget model supplied by default, Blogger engineering has chosen for most tables, the name of the table in th...

Google News Setup Complete Guide

Image
Google News is a free service that Google lists in its system by taking news stories from other sites. This service, which is a great opportunity especially for news sites, makes important contributions to your web page traffic. Of course, there are a few criteria you need to overcome in order to be accepted during the application process. In this article, we will tell you how to sign up for Google News. How to sign up for Google News? In the first step, Google will track the following data about your site: Does your site have original content? How often do you write? Are your site and articles professional? Is their information about your authors and content providers? Join Google News Step by Step Now let's talk step by step on what we should do if you're ready. After passing each of these short titles, we will be ready for the registration phase. The Right Headlines: After creating original content, what we need to pay attention to the first stage is the titles we enter...

How to add timeago format in blogger

Image
You might have seen time ago notification on different kinds of social media sites. If you want to implement this time ago format in blogger blogs then this article is for you. In this article, we will see how we can add time ago notification format in our blogger blog in just simple and easy steps. I have recently got a comment from one of the visitors that he wants to add time ago notification format into their blogger site. To add this time ago notification format in blogger blog you need to have some knowledge about blogger XML Tags and a little bit of information about web design, especially HTML and JavaScript languages. You need to have a little bit of information about web design because here we have to find some certain things that we have to find and replace with some new things. These are not the things these are lines of codes. Ok now let's figure out the steps to add this time ago format in our blogger blog. You can also add this post published time format in ...

Expending Flex Cards Blogger Widgets

Image
You may have seen many different blogger widgets on this website and I mostly create blogger widgets in beautiful styles because today in the modern world UI is one of the things that most of the people want to be beautiful. Before this article, I was sharing blogger widgets that have only one functionality. Some of them are only for recent posts some with popular posts some with related posts and some with a labelled posts functionality. Most of you people like the UI design of blogger widgets which I share on this website but mostly if you want different functionalities then the functionality they have. For example, you want it a recent posts widget with the same design or UI but in different functionality. From today onwards I will try to create blogger widgets having different functionalities in the same UI design. Ok, leave everything and let's talk about today's UI design of blogger widgets. Today's article contains the list of widgets that you can implement in...

b:comment Tag - Blogger Tags References

Image
The <b:comment> tag is an instruction tag that allows you to add a comment in the XML code of the Blogger theme. Make no mistake! This tag is a real Swiss Army Knife for experienced developers and hobbyists who want to learn the XML language of Blogger. Syntax: <b:comment> YOUR COMMENT HERE <b:comment> Characteristics: The <b:comment> tag works in all of the XML, except in the tag <b:skin> . Several <b:comment> tags can be combined. <b:comment> tag cannot nest. Attributes used: At first glance, this tag can make you smile, but it is very useful because, not only does it allow you to add comments, but in addition, it executes the Blogger expressions that are in the comment. And since that was not enough, we can also add attributes that are listed under. Attributes Classification Prefix "expr:" Meaning - render HTML classic authorized Display the comment in the HTML rendering. The expected value is true or false . Accompanied b...

b:tag Tag - Blogger Tags References

Image
<b:tag> Tag allows you to add a tag under certain conditions. The tag <b:tag> is an XML instruction tag which allows you to add any HTML tag. Syntax: <b:tag cond='CONDITION' name='TAG_NAME'> <!-- Content Goes Here --> <b:tag> Characteristics: The <b:tag> tag works in all of the XML, except in the tag <b:skin> . Several tags <b:tag> can be combined. Tags <b:tag> can nest. Attributes Used for this tag: Attributes Classification Prefix "expr:" Description Strictness name HTML classic authorized The expected value is the name of the tag. Accompanied by the prefix expr: , the value may be: type data string a Blogger expression whose result is of type string Mandatory cond XML Blogger Expression authorized Condition of execution of the tag. The expected value must be boolean ( true or false ). It can be an explicit value, a data item or a Blogger expression. Optional Some Example Usage: To add simple t...

b:attr Tag - Blogger Tags References

Image
Attribute tag ( <b:attr> ) allows you to generate attributes in the parent tag. The singleton tag <b:attr> is an instruction tag that allows any attribute and value to be added to the parent tag. Syntax: <b:attr cond='CONDITION' name='ATTRIBUTE_NAME' value='VALUE'/> Characteristics: The tag <b:attr> works in all of the XML, except in the tag <b:skin> . Several tags <b:attr> can be combined. Tag <b:attr> cannot nest. Attribute Classify Prefix 'expr:' Description Strictness name HTML classic authorized The expected value is the name of the attribute that will be added to the parent tag. Accompanied by the prefix expr: , the value may be: type data string a Blogger expression whose result is of type string Mandatory value HTML classic authorized The expected value is the value of the attribute that will be added to the parent tag. When the value does not exist, the attribute is not added. Accompanied by the p...