Monday, December 30, 2019

Robot.txt kya hai aur Ise Blog me kaise Add kare

Robot.txt kya hai aur Ise Blog me kaise Add kare

There are many things inside our blog, but there are many things in the blog that we have to stop from indexing in Search Engine. So in this post, I will tell you how to use Robot.txt in Blog I will try to do
image
There are many blogs on the Internet that are private, that is, people keep their personal things in it. When I was new in the blog, I did not know much about it. But when I researched, I came to know that it was for someone Much better and someone's worthless.
What is robot.txt?
Robot.txt is a code file. If you share private things in a blog, then it may come less for you. If you want to hide something from Search Engines and show it, then with the help of it you can do it.
How does robot.txt work?
Actually Robot.txt file works like Bodyguard for your site. When a person searches in the search engine related to our site, our blog is also shown and when he clicks on our blog title, then Robot.txt tells what is allowed to show on the site.
How to create a robot.txt file for a blog.
By the way, there are many Sites on the Internet Robot.txt but there is no limit to them. That is why I am telling you how to create a Robot.txt file, so that you can make it easily and easily.
1.Allow
Allow is used to show us what to do on our site.
2.Disallow
This is no less in our site. This code is only for Private Users. Use Disallow to hide something in the site.
3.User Agent: Media Partners Google
This is for Adsense. If you want to hide Ads in your Site from Search Engine, then this code is used.
4.User-Agent:
Yapak is for the Visitor of the site, what they should see in your site and what not. Let it be disallow you.
5. Sitemap
This is important for a site like ours. With this, we try to index the posts we write in the Site in Search Engine soon. Sitemap allows us to show which posts are less visible in our blog, which posts have many Url keywords, which url is more popular. If you want to add Sitemap Robot.txt to your site before that You can create your Sitemap, read this post to make it. Blog of Liye Sitemap kaise banaye.
After that copy this code.
User-agent: Mediapartners-Google
Disallow:
User-agent:
Disallow: / search
Allow: /
Sitemap: https://www.blogginghindi.com/sitemap.xml
Note:Instead of Blogginghindi.com/sitemap.xml, enter the URL of your Sitemap.
Robot.txt file ko blog me kaise add kare.
Now after copying the code, you have to add it to your blog, for this follow the steps below.
Step 1: –First of all, login to Blogger.com and login.
Step 2: –Now go to the Dashboard of the blog.
image
Image Options: –
Go to 1.Sitting.
2. Click on Search Preferences.
3. Now click on Edit in front of Costom Robot.txt.
Step 3: –Now a page will open, you paste the code in the box and select Yes in front of Enable Costom Robot.txt and click on the Save Changes in the last.

AMP Posts / Pages Me Adsense Ads Insert Kaise Kare [Without Plugin]

AMP Posts / Pages Me Adsense Ads Insert Kaise Kare [Without Plugin]

Today we are going to tell you about inserting Adsense Ads in AMP posts / pages. If you also use AMP in your wordpress blog, then this post can be very helpful for you. We will tell you how to insert ads without using any plugin.
insert ads into amp post and pages without plugin
When we talk about blogging, ads are a very major thing for all bloggers. Everyone writes hard posts in their blog so that they get some benefit from it. Every blogger earns money by showing their blog advertising or through affiliate marketing.
Most people use Adsense to display advertising in their blogs. So today we will tell you about showing adsense ads in AMP pages.
Many people have asked me till now how have you inserted ads in AMP pages? Through the comment, I was able to tell them that “I have done manually coding” so today I am going to tell you with people how to show ads without plugins in AMP posts & pages?
I use AMP for a long time in my blog. This has given me a very positive result. Since amp is recognized in Google. That's why Google always pays attention to amp pages for mobile devices.
If you do not know about it, then I have already written a post about it, you can read it. Also, if you have to setup the amp in your blog, then you can read this post.
I use the “AMP for WP” plugin in my blog. By reading the above post, you can also setup it in your blog.
Currently, I am going to tell you how to show ads in AMP post & pages? if you “AMP for WPIf you use the plugin, it will work for you only. If you use another plugin for the amp, it may not work for you. (We have not tested)
So, we are going to tell you a very simple process for this. You do not have to use any kind of plugin for this. Just you have to add some codes to your theme.
There are many methods for this. You can also insert through the plugin. But I am telling you the best way. For this, you do not have to edit the coding of the plugin. Due to which you have the problem of losing the code after the plugin is updated.
To show adsense ads in AMP is much different than normal pages. So, let me first explain about it to you.
First of all, you have to log into Adsense and create different types of ads. You have to copy publisher id and ad slot from Ad code. For example, you can see below.

Above is adsense publisher id in green color and ad slot in red color. The publisher id of all ads will be the same, you just have to note the ad slot. Now, we are telling you about inserting ads.
Now you have to modify the code below and add it to the functions.php of your blog theme. Let us know how to modify it.
/ **
* Add Google Adsense code to AMP
* /
add_action ('pre_amp_render_post', 'isa_amp_add_content_filter_alt');
function isa_amp_add_content_filter_alt () {
add_filter ('the_content', 'isa_amp_adsense_within_multiple');
}
function isa_amp_adsense_within_multiple ($ content) {
$ ad_units = array (
1 => 'XXXXXXXXXX',
10 => 'XXXXXXXXXX',
20 => 'XXXXXXXXXX',
30 => 'XXXXXXXXXX',
);
$ insertions = array ();
foreach ($ ad_units as $ paragraph => $ ad_slot) {
$ insertions[ $paragraph ] = '';
}
// Insert Adsense ad after multiple paragraphs
$ new_content = isa_insert_after_paragraph_multiple ($ insertions, $ content);
return $ new_content;
}
function isa_insert_after_paragraph_multiple ($ insertions = array (), $ content) {
$ closing_p = '';
$ paragraphs = explode ($ closing_p, $ content);
foreach ($ paragraphs as $ index => $ paragraph) {
if (trim ($ paragraph)) {
$ paragraphs[$index] . = $ closing_p;
}
// insert ad at multiple places
foreach ($ insertions as $ paragraph_id => $ ad_code) {
if ($ paragraph_id === $ index + 1) {
$ paragraphs[$index] . = $ ad_code;
}
}
}
return implode ('', $ paragraphs);
}
The paragraph in which to insert ads blue color Can replace with number of We have inserted ads in 1, 10, 20, 30 paragraphs. You can adjust it according to your own. Red color (XXXXXXXXXX) Different ads in place of ad slot Have to replace. Other than that ca-pub-xxxxxxxxxxxxxxxxx Instead of adding your AdSense publisher id.
Now the ads have been inserted in your blog but the ads will not show yet. The code given to you under your theme functions.php Must be added to Only then will your blog ads show.
/ **
* Add the AMP Ad script to AMP pages.
* /
function isa_load_amp_adsense_script ($ data) {
$ data['amp_component_scripts']['amp-ad']    = 'https://cdn.ampproject.org/v0/amp-ad-0.1.js';
return $ data;
}
add_filter ('amp_post_template_data', 'isa_load_amp_adsense_script');
Now your blog will start showing ads. In this way you can show aids in your amp posts and pages very easily. Its best thing is that whenever you update the plugin, the ads code will not be removed. Because we have added the codes to our theme's functions.php.
Hope you have liked this post. If you have any questions related to this, then you can comment below. If you liked the post, then share it in social media. Join the blog's newsletter for the latest updates.

Google Me Blog Ki New Post Index Notification Email Me Kaise Paye

Google Me Blog Ki New Post Index Notification Email Me Kaise Paye

If you also have your own blog then you must have submitted your blog to Google. This will make your index in Google. At some point in your mind, a question must have come about how much time your blog's new post starts crawling in Google and getting indexed. So that's why we are going to tell you about an amazing feature of Google in this post. So when your blog's new post starts showing in google, then massage will be found in your email.
Get email notification when your new post indexed on google
As you all will know that to index a blog in Google, first you have to submit the site in the search console and create sitemap and submit it in Google webmaster tool. Even without sitemap, google starts indexing the content of our blog, but when the new post is updated when the sitemap happens, the google crawl bot gets informed and crawl indexes it.
If the new post of your blog starts getting indexed in Google within a few hours, then it means that the quality of your post will be good and its ranking in Google will be good. If google indexes the new post of your blog after a long time, then it means the ranking of your blog is very low. You will need to work harder.
When you find out how much time Google takes to index your blog's new post, then it will become clear that how much improvement you need to make in your blog. So I am going to tell you a very simple way, through which you can know how much time Google takes to index your blog's new post.
Many bloggers do not consider crawl rate as very important, but paying attention to crawl rate is very important. This clearly shows how much your blog ranking will be in google and how much Google likes your blog. I have seen the blog posts of many bloggers that their posts start getting indexed in Google within 1- 2 hours. This means that her blog's ranking is very good.
Now Google has made improvements in its crawl bot some time back. Now index any blog post within 12 hours. Now you must also be thinking how do I find out how much time the new post of my blog takes to get indexed in Google, so I am going to tell you about it.
Google has launched a very good tool some time back. From this we can easily find out how often our post is indexed in Google. The name of this awesome tool is Google Alerts. You just have to do some sitting by submitting your blog's url. After this, when the new post of our blog will be indexed in Google, then alert massage will come in our email. Let us explain the entire process.
To know how long your blog's new post takes to be indexed in Google, one of the best ways is Google Alerts.
This tools is used for competitor research and notification. However, we can also use this tool to know how much time it takes to get a new post index of our blog. You have to setup it once, after that whenever your blog's new post will be indexed in Google, then you will get its notification on your email.
Step 1: G firstoogle alerts From your Google account by visiting login Do it.
Step 2: Now on this page you have to setup something like this.
How to get notification when your blog post is indexed on google
  • Up in the search box site: www.yourblog.com Enter (keep in mind www.yourblog.com Enter the URL address of your blog instead of)
  • Now Show Options Click on
  • How often In As-it-happens select.
  • Sources In Automatic select.
  • Language In English select.
  • Region In Any region select.
  • How many In All results select.
  • Deliver to In select your email, in which you have to get new post index notification.
  • Now Create Alert Click on the button.
enough. Whenever your blog's new post is indexed in Google, you will get nofification on the email. Let me also tell you another tip that in this way you can get new post index notification of any site. If you have a favorite blog, then you can get new post notification by setting alert in the same way.
You can send Google alert to Job site alert, News alert, Calendar alert, etc. Can be easily used for Similarly, you can use it in many cases. A notification of Google alerts will be sent to you via Bottom Line.

I hope you liked this post and must have enjoyed reading this post a lot. Comment below for any question related to this post. If you liked this post, then share it in social media.

YouTube Ke Top 10 Ranking Factors 2019

YouTube Ke Top 10 Ranking Factors 2019

Hello friends, today we are going to talk about YouTube Ranking Factors. So if you are a youtuber, then you can bring your video to the best rank in search result. There are many ranking factors for this, but I will tell you about some main factors.
youtube ranking ffactors 2019 hindi me jane
Perhaps it is a little difficult to believe but you should know that youtube is the second largest search engine in the world. The first number is google and youtube is also connected to Google. You will also know very well about the popularity of youtube.
YouTube has grown more than 50% in the last 3-4 years in India. If we go back a little bit, in the earlier times we did not have high speed internet, which had a problem of youtube video buffering and also due to the data pack being too expensive, people did not use much internet.
But since Jio has knocked, the number of Internet users has increased by more than 50%. Jio has now become the cheapest internet data providing company in the whole world. It also gets good speed.
It has some good effects on the internet as well as some bad ones. Youtube has benefited the most from this. Earlier, internet data did not watch videos due to being too expensive, but in the current time, instead of studying, they prefer to watch videos.
Looking at today's situation, it can be guessed that youtube will grow even more in the coming time. You will also be surprised to know that 300 hours of video content are uploaded to youtube in a minute. Right now the competition in youtube is increasing too much.
If you are a youtuber, you will want your channel to come to the top in the search result. So for this you have to understand the ranking algorithm of youtube. Once you understand their ranking factors correctly, then you will start to rank your video in search result.
In this post you are going to talk about ranking factors of youtube. If you are a blogger, you can read about Google's top ranking factors. Youtube also decides the ranking position of a video after taking many factors into consideration, just like google. But I am going to tell you about some top ranking factors here.
Table of Contents

1. Channel Keywords

If you want that if someone searches about your channel, then your channel appears on the top, for this you have to setup the channel keywords properly. In this, you have to add keywords related to the topic of your channel. So that your channel can rank at the correct position.
You must have seen that we search by entering the full name of some channel, but still that channel does not appear on the top. There are two big reasons for this. One, his channel name is not different and he has not setup the channel properly. By setting this up, your channel will also be able to rank well in google.
When you setup your channel and add keywords to it, then your channel will start to rank at the top. To setup this, you need creator studio I have to go. Now Sittings >> Channel >> Basic I have to go. Now in the box with keywords you have to add keywords related to your channel.
YouTube Ke Top 10 Ranking Factors 2019 1

2. Video Title

On page SEO is also as important for youtube as it is for blog posts or other web content. If youtube is considered the top factor of ranking. You must know that metadata is considered to be a very big ranking factor and the title also comes in the same.
If your video title is good then google, youtube search and peoples will be good for everyone. With which it will attract more traffic and bring more views.
If seen, the short title performs much better. Because long title is cut from many browsers and devices. If you keep a short title, then keep in mind that the title should be such that it becomes known about the content.

3. Video Description

Like the title, the description in the video should also be good. Because you must know that this too comes under metadata. And it plays the important ranking factor for both google search and youtube search.
We all know that YouTube also reads videos. If your video contains nude content then youtube easily recognizes it. But youtube is not able to read the video content completely. By looking at the title, description and tags of our video, you can identify what kind of content is there in our video.
Now you must have understood. In the description, you have to tell about the video in details. Also you can add keywords to it. With this, if you want, you can also add social media links to the description.

4. Video Tags

This is one of the most important ranking factors of youtube. You can rank your videos on the top in search result by using the right tags. Tags have a very important role in YouTube search.
As I told you above that youtube can understand the video properly by looking at our video title, description, and tags. Only when you understand the video correctly, you will be able to show it on top in search result.
While using tags, it should be kept in mind that use only keywords related to video. If you use some keywords in the description and some tags, then youtube becomes confuse. And he is not able to show your video in the right position.

5. Video Quality

This is also a very special part of the ranking factor of youtube. High-definition (HD) videos on YouTube perform better than low-definition videos. In fact, HD videos are also highlighted in youtube search result.
The Youtube team knows that right now most users have smartphones, in which HD video can play easily and the speed of internet is also very good. That is why youtube HD videos are giving more value than low-definition video.

6. User Experience Metrics

Youtube takes great care on user experience while ranking our videos. This allows them to know the quality of your video. If the user experience is good, then that video easily ranks in youtube.
If the user engagement in the video will be fine then youtube understands that the video can be helpful to the people and makes that video viral. This is the biggest factor of any video going viral.
If your video has got good likes and comments, then youtube guesses that the quality of the video is good and gives it a good position in the search result.

7. Watch Time

Youtube has been using watch time as a ranking factor since late 2012. youtube can easily determine the quality of a video with “watch time”. If the watch time is good then the video does not take much time to go viral.
If people like your video then definitely like it youtube too. Some time ago youtube used to decide its ranking only by watching the watch time of the video, but now rank the video after taking many factors into consideration.
The option of analytics is already given in youtube. From here you can check the analytics report of your video and also know how your video is performing.

8. Thumbnails

Thumbnails have a very important role in the CTR (Click through rates) of our video. This means if you use attractive thumbnail, then the chance of getting good response is very high.
You must have seen that there are many videos in youtube, which have very poor quality but still have a lot of views. The reason for this is thumbnail. If you also want to get maximum views in your video, then attractive thumbnail is very important.
According to a research, it has been found that instead of reading the title, most people look at the thumbnail and click on it. If you are active in youtube, then you will get to see many such examples yourself.
It is better to design using auto generate thumbnail. Make his look attractive to catch people's attention. For this you will find many softwares and apps. If you are an Android user then you can use PixalLAb.

9. View Count

You know that watch time is a very big ranking factor of YouTube. The same “no of views” is also a very important factor of youtube ranking. If the views of a video are good, then it will be shown in a good position in the search result.
So you should share your videos in social plateforms like facebook, whatsapp, twitter and forums. This will give you views in your videos and then slowly they will start getting good positions in search results.

10. Closed Captions & Subtitles

You may have noticed that caption is used in many youtube videos. For people who use multi language in video, it is very important. Also, it is also very beneficial for getting ranking in the search engine.
  1. It has two big fides:
    If you are using a local language in your video, then there is no problem in understanding people by giving subtitle.
    The search engine crawls the second caption. Through which the search engine can understand your video properly and it gets a good rank.
  2. You can add caption to your video from youtube's editor.

After knowing all the ranking factors mentioned above, you must now know how video ranks on youtube. Apart from this, the authority is most important. I have seen some big youtubers that he does not pay attention to the title, description, tags of his video but still his video ranks well. In the same way when you become popular, your video will also rank very easily.
Hope you have liked this video. If you have any questions related to this, please comment below. If you like this post, then share it.

Site Me Adsense Ads Ko Fast Loading Kaise Kare [101% Working Trick]

Site Me Adsense Ads Ko Fast Loading Kaise Kare [101% Working Trick]

Adsense Ads Load Faster: If you use adsense ads in your site, then this post will be useful for you. You must know that when the ads show in our site, it loads very slowly. The ads loading speed in our site is very slow, due to which our site is slow loading. In this post, we are going to tell you such a trick, by which you can make fast loading of ads in your site.
Apne blog ya website me AdSense ads ko fast loading kaise kare
You know what the loading speed of our site affects our users. In the present time, everyone wants to do any work in the shortest possible time. Similarly, all visitors want that your site is fast loading. If the loading speed of your site will be fast, then its impact will not only be in visitors but also in SEO. That is why, by optimizing the loading speed of your site, make it fast.
There is no doubt that adsense is the best way to make income from the site and almost all professional bloggers income through adsense. It is a very popular advertising company which offers banner, text, link etc. Offers ads of types. Earlier there was a limit to showing ads in the site, but a few days ago the adsense team has removed this condition. Now you can show unlimited ads in your site or webpage.
Ever since the adsense team removed the ads limit policy, people have been showing unlimited ads in their site ever since. People who use more ads in their site, I want to say one thing from them that using more ads will only harm you. It takes time to load ads in a site. When we insert ads code in our site, first of all javascript is loaded in it and after javascript is loaded, banner, link or text ads show.
When we create ads in adsense, after that the ads code generated is a script of a javascript file. Ads are loaded through this javascript. The number of times we create ads, the script of that javascript file is given. In such a situation, if we insert ads code in our site 4 times, then that javascript file will be loaded 4 times. When javascript will load four times, due to which the ads load very slowly. If you load the javascript file once, the ads will show. This will load ads fast, because javascript will not load repeatedly. If you do not understand, then I will try to tell you carefully in reading below.
The way I have told you the biggest reason for ads slow loading. When we create ads in adsense, when its code is generated, it contains a link to load a javascript file, ads show only when that javascript file is loaded. You would know that javascript is the slowest load. When someone adds 4 ads code to their site, there is a request to load that javascript file 4 times, from which that script is loaded 4 time, which takes a lot of time to load 4 ads. If we want, we can show unlimited ads by loading loading request to that javascript file once. This will cause javascript to load once, causing ads fast loading. I am telling you about this below. Let's know step by step what you need to do for fast ads loading.

I am telling you the ads code example below, whose size is 300px × 250px. Watch it carefully.




The above ads code example has a link in blue color. The javascript file is loaded by this link. This link will be in every ads code, but we have to load it once. That's why by copying it, we need To be added to. After that whatever ads code is there, remove the javascript file link from it and add the ads code to the site.
Step 1: First of all, copy the javascript loading code given below.
Step 2: Now you need this code for your sitehead> Will have to be added below. For this, we are telling you below, add the code by following the blog which is in you.
For Blogger: Your Blogger Dashboard -> Themes -> Edit HTML Go into By searching for <headPaste the copied code under>, then save it.
For WordPress: Your Blog Dashboard -> Appearance -> Editor -> Header.php Go to and <headPaste the copied code under> and save changes.
Step 3: Now you have given loading request to the ads javascript file in your site and now all you have to do is add the code of the ads to the site. I mean to say that when you create new ads code, there will be a link in it, you will have to remove that link and add it to your site. This will be like this when you create a new code.




In this code, you have to remove the link which is in blue color and the remaining script will be left and add it to your site. After removing it, something like this will happen.



In this way you can make fast loading of ads in your site. This method is 100% correct and working, so that you can fast loading ads in your site. I also use this method and I hope that you can also fast load ads in your site using this method.
I hope that you liked this post and with the help of this post you must have made fast loading by optimizing the ads code in the site. Comment for questions related to blogging or internet. Share this post with your friends in social media