InstantClick – fast response! Make your website different

InstantClick – fast response! Make your website different

InstantClick is a small JavaScript library that uses pushState and Ajax technology. This combination is called Pjax。 Before a visitor clicks a link, the mouse will hover over the link. There is usually an interval of 200ms~300ms between the two events. InstantClick Use this time interval to preload the page, so that when you click the page, the page has already been loaded locally, and of course the presentation will be fast, greatly accelerating the response speed of your website. Example of use: ... <script src="instantclic...
common problem four hundred and fifty-six
 How zblog calls the tutorial code of related articles according to the tag

How zblog calls the tutorial code of related articles according to the tag

Calling related articles in an article can increase the relevance of page content and improve the PV of the website. How can zblog blog call related articles below the content of the article page? You can use the GetList() function provided by zblog to call related articles according to the article tag tag. In the post single. php file of the topic (or the single. php file if not), find the code {$article. Content}, and add the following code below the code: PHP {$array = GetList(10,null,null,nu...
Exhibition of works three hundred and sixty
 How to obtain the number of articles published by zblog website in the past 24 hours

How to obtain the number of articles published by zblog website in the past 24 hours

On the zblog forum, I saw a user asking how to count zblog The number of updates in 24 hours. If there is no misunderstanding, the user should want to get the number of articles published by the zblog website in 24 hours. In fact, it can be achieved through a few basic SQL queries, but zblog PHP is evil. The database is queried through linked SQL. I'm not used to it all the time, so I directly use the Z-wiki example to change it to count the number of 24-hour updates to zblog. Note: The following code is only applicable to zblog php version 1.5. x. 1. Add the following code to the theme's include.php file:
media coverage four hundred and one
 Baidu algorithm update, Baidu official announcement on 6.28 K station event

Baidu algorithm update, Baidu official announcement on 6.28 K station event

The most unforgettable event for webmasters in June was the update of Baidu algorithm. The massive K station event brought about by the system upgrade, commonly known as the "6.28 event", in which seven or eight websites I operated were also the "victims" of Baidu algorithm update. Therefore, I have been looking forward to Baidu's official clarification, Yesterday, Lee of Baidu published a post in Baidu webmaster community, "Measures for low-quality sites have taken effect", announcing the update of K station event. At present, some webmasters are still in the camp of optimists. They think that the K station event is just Baidu's routine system upgrade and algorithm update. But from the official announcement of Baidu, it is true to provide high-quality results for Internet users, so it is suggested that the K station event is still in place
Industry trends three hundred and eighty
 Baidu updated the website title and description in just two days

Baidu updated the website title and description in just two days

On the 17th of this month, I modified the title, description and separator of the home page to save the blog. As we all know, modifying the title of the website title is not a big deal, but it is not a small thing for SEO optimization, because it will more or less cause this negative impact on the website, such as being demoted by Baidu search engine, and being punished by K station, etc. But what excites me is that Baidu will update the snapshot two days after the blog bar modifies the title and description. Here's a summary of the experience. Select when to modify the title and description Previous title tag and description of the website I chose to modify the tag at the time after Baidu's weekly update, which is not to affect Baidu's
Industry trends three hundred and sixty-six
 Baidu webmaster club lee replied to confirm that the plain text url will be captured by spiders

Baidu webmaster club lee replied to confirm that the plain text url will be captured by spiders

Personally, I think that the plain text url external chain should be useful, and I have been sending plain text urls, but I dare not be very sure, because I can't find the official affirmation of Baidu about this, and I have doubts over time. Today, I searched the "plain text url link" again and found Lee's reply post in Baidu webmaster club, Confirm that the spider will crawl the plain text url. Baidu Club Lee's reply is as follows: 1. Text link URL address, Baidu will find that it is a URL address and use this address to grab the corresponding URL address 2. We check the chain
Industry trends four hundred and five
 Inadvertently added sitemap to Baidu's dead link tool

Inadvertently added sitemap to Baidu's dead link tool

Just went to Baidu webmaster platform for research, The example of finding the dead link tool of webmaster tool to fill in data is "Sitemap.txt and sitemap.xml. It is estimated that many people's first reaction when they see these two terms is to refer to the sitemap website map, and to see that the sitemap.xml of the blog bar has also been submitted to. Then I immediately submitted the sitemap.xml of the new site to the dead link tool, and I also updated the data in the dead link tool of the blog bar by the way. Suddenly, I had a question. What should sitemap.xml submit is a valid link? I saw the prompt of Baidu platform again If you submit the dead link data, you need to do something like
Industry trends three hundred and eighteen
 Reasons and solutions for Sina blog not being included by Baidu

Reasons and solutions for Sina blog not being included by Baidu

The external chain is an important means to improve the website ranking. There are various ways to increase the external chain, among which the blog external chain is the favorite of many webmasters. For example, Sina Blog has become the first choice for webmasters to optimize the external chain because of its fast collection, high weight, simple application and easy use. But many webmasters reflected that their Sina blog was not favored by Baidu, and the articles published on the blog were not included by Baidu. At the beginning, I also encountered the same situation. Later, I gradually mastered the methods and skills, and re registered the blog. After the operation again, the blog was finally included by Baidu, and the collection was in good condition. Now let's share my operation method. Do not use the personalized domain name provided by Sina. The address of a newly registered blog is an automatically assigned number suffix, and Sina also provides a personalized domain name
Industry trends two hundred and sixty-four
 The website successfully checked in to Alibaba Cloud server through registration and changed the theme

The website successfully checked in to Alibaba Cloud server through registration and changed the theme

In the past 10 years, the blog bar has used free space to go online, and then switched to a paid host. In the past four years, it has tried American Space, Domestic Space, Hong Kong Space, and Japanese Space, most of which were American Space. Maybe because it bought a host provided by a small service provider, the host experience is very ordinary, and there are often problems of one kind or another, and it is difficult to follow up after sales, Therefore, I have always wanted to change the domestic space, but I have been suffering from the record keeping problem. The recently changed Hong Kong space repeatedly prompted that it exceeded the 8% CPU limit, which is really unbearable. So I applied for an Alibaba Cloud server 0 yuan 6-month experience activity and purchased public network IP. The filing speed of Alibaba Cloud is much faster than that of the previous two times when using the HiChina virtual host. It is only 10 days from the application for filing to the approval of the administrative bureau
Industry trends two hundred and seventy
 Method code for realizing delayed loading of website images to improve website opening speed

Method code for realizing delayed loading of website images to improve website opening speed

Generally speaking, the delayed loading of web page images means that when the web page is loaded, the images that should be loaded together are temporarily replaced with small images to reduce the loading volume. When the user browses to the image area, the original image is loaded back (roughly this meaning)! The delayed loading of images is very helpful to improve the loading speed of web pages. At the same time, it is not tedious to implement the delayed loading of website images. Therefore, predecessors have prepared all the work for us. Common web page: Download the required jquery.lazyload.js file (there is a download address at the end of the article), and then add the following code before the</head>page: <script type=...
media coverage three hundred and four
 A complete list of commonly used ping centers and reference notification sender addresses on websites

A complete list of commonly used ping centers and reference notification sender addresses on websites

After the installation is completed, a ping plug-in named Ping Center and Notice of Reference Sender comes with it by default. The function of this plug-in is to send a ping notification to the network update service provider in XML-RPC protocol after Z-Blog updates the article through the ping search engine address entered in advance, so that the content can be included more quickly. The following blog collects the main available ping addresses as follows: Baidu auto ping service address: http://ping.baidu.com/ping/RPC2 Update notification service for Google blog search: http://...
media coverage two hundred and sixty-seven
 Essential for keyword optimization: Baidu and Google online index query tool website

Essential for keyword optimization: Baidu and Google online index query tool website

Choosing the right keywords will help improve the search engine traffic of the blog, and you can also do half the work when optimizing keywords. When doing blog SEO, it is very difficult to select keywords for blog. I don't know how to select keywords, whether the keywords are popular or not, and I don't know whether good keywords are good or not. At this time, I can use Baidu and Google index query tools to analyze the selected keywords. Baidu Index Query Introduction: Baidu Index is a free massive data analysis service based on Baidu web search and Baidu news search, which reflects the "user attention" and "media attention" of different keywords in the past. You can find, share and mine the most valuable letters on the Internet
Company Information two hundred and sixty-eight